diff --git a/application/config/routes.php b/application/config/routes.php
index f282a99a..3b844865 100755
--- a/application/config/routes.php
+++ b/application/config/routes.php
@@ -261,7 +261,7 @@ $route['Cashstatement']= "cashbook/cashreceipt";
$route['BankingFile']= "cashbook/bankfileupload";
//$route['Filelist']="cashbook/filelist";
//$route['Bankingrecord']= "cashbook/bankdata";
-$route['Bankamountpaid']= "cashbook/amountpaid";
+$route['Bankamountpaid']= "cashbook/amountpaid"; // conform this function
$route['Bankamountreceived']= "cashbook/amountreceived";
$route['Receipt']= "cashbook/cashreceipt";
$route['Payment']= "cashbook/cashpayment";
@@ -270,6 +270,18 @@ $route['Bankcash']= "cashbook/cashbanking";
$route['DeleteInvoice']="cashbook/deletemappingiv";
$route['DeletePo']="cashbook/Deletemappingporeport";
$route['MappingInvoice']="cashbook/mappinginvoice";
+// new added on cashbook controller
+$route['MappingPo']="cashbook/mappingpo";
+$route['Bankledgersupplier']="cashbook/supplierledger";
+$route['Bankledgercustomer']="cashbook/customerledger";
+//$route['Bankamountpaid']= "cashbook/amountpaidsupplier";
+$route['Bankamountunpaid']= "cashbook/amountunpaid";
+
+$route['Bankamountreceived']= "cashbook/bankreceivedsupp";
+$route['Bankamountunreceived']= "cashbook/bankunreceivedsupp";
+$route['Receiptamount']="cashbook/receipt";
+$route['Amountreceived']="cashbook/amountreceived";
+
/**------------Application Stock Details---------------**/
diff --git a/application/controllers/cashbook.php b/application/controllers/cashbook.php
index ebd7041c..b5b2595c 100644
--- a/application/controllers/cashbook.php
+++ b/application/controllers/cashbook.php
@@ -3,44 +3,42 @@
require APPPATH . '/libraries/BaseController.php';
require APPPATH . '/third_party/mpdf/mpdf.php';
/**
- * Class : cashbook (Cash Book Controller)
- * cashbook Class to control all Cash Book related operations.
- * @author : Venba Info Tech - Gandhimathi
+ * Class : cash Book Controller (cash Book)
+ * User Class to control all user related operations.
+ * @author : Gandhimathi
* @version : 1.1
- * @since : 27 November 2017
+ * @since : 13 Nov 2017
*/
class cashbook extends BaseController
-{
+{
/**
- * default constructor of the class
+ * This is default constructor of the class new
*/
- public function __construct()
+ public function __construct()
{
parent::__construct();
- $this->load->model('cashbook_model');
+ $this->load->model('cashbook_model');
+ $this->load->model('employeedetails_model');
$this->isLoggedIn();
$this->load->helper(array('form','url'));
$this->load->library('upload');
- $this->CompanyName = $this->global['CompanyName'];
}
- /**
- * To list income expense details
- */
function incomeExpenseList()
{
$aid = $this->uri->segment(3);
$str = $this->uri->segment(4);
- if(!empty($aid)){
+ if(!empty($aid)){
- if(!empty($str))
- {
-
+ if(!empty($str))
+ {
+ //echo "PDF";
$data['company'] = $this->cashbook_model->getCompany();
+
$data['data'] = $this->cashbook_model->getIncomeExpenseList($aid);
- $data['PaymentDetails'] = $this->cashbook_model->viewpaymentdetails($aid);
+ $data['PaymentDetails'] = $this->cashbook_model->viewpaymentdetails($aid);
$totalamt = $data['data'][0]->total;
$data['amtinwords'] = $this->convertNumber($totalamt);
$mpdf=new mPDF('utf-8','A4-P',7, 10,10, 10, 3, 0, 0, 0);
@@ -54,146 +52,145 @@ class cashbook extends BaseController
$mpdf->WriteHTML($html);
$filename = "cashbook.pdf";
$mpdf->Output($filename,I);
- }
- else
- {
-
- $data['data'] = $this->cashbook_model->getIncomeExpenseList($aid);
- $data['PaymentDetails'] = $this->cashbook_model->viewpaymentdetails($aid);
- //$this->global['pageTitle'] = 'Resico : Cash Book: View Income Expense ';
- $this->global['pageTitle'] = $this->CompanyName.' : Cash Book - View Income Expense ';
- $this->loadViews("viewIndIncomeExpense", $this->global, $data , NULL);
-
- }
- }else{
- // $data['list'] = $this->cashbook_model->getIncomeExpenseList();
- // $this->global['pageTitle'] = 'Siddharth : Cash Book: Listing';
-
- // $this->loadViews("income_expense_list", $this->global, $data , NULL);
- $this->global['pageTitle'] = $this->CompanyName.' : Cash Master Listing';
-
- if ($this->input->post('btn_submit')) {
-
- $fromdt = $this->input->post('from_date');
- $todt = $this->input->post('to_date');
- $ab=$this->input->post('financialyear');
-
- $fromyear=substr($ab,0,-5);
- $toyear=substr($ab,5,5);
-
-
- $data['finyear']=$this->cashbook_model->finyear();
- $data['list'] = $this->cashbook_model->getIncomeExpense($fromyear,$toyear,$fromdt,$todt);
-
- }
- else{
- //$data['list'] = $this->cashbook_model->getIncomeExpenseList();
- //$data['list'] = $this->cashbook_model->getreceiptpaymentlist();
- //$this->global['pageTitle'] = 'Resico : Cash Book: Listing';
- $this->global['pageTitle'] = $this->CompanyName.': Receipt and Payment Details';
- if (date('m') <= 3) {
- $preyear = (date('Y')-1);
- $currentyear = date('Y');
- } else {
- $preyear = date('Y') ;
- $currentyear = (date('Y') + 1);
- }
-
- $data['list'] = $this->cashbook_model->getIncomeExpense($preyear,$currentyear);
- $data['finyear']=$this->cashbook_model->finyear();
- }
- $this->loadViews("income_expense_list", $this->global, $data , NULL);
- }
-
-
- }
-
- function bankreceipt()
+ }
+ else
{
+
+ $data['data'] = $this->cashbook_model->getIncomeExpenseList($aid);
+ //print_r($data['dropdownvalues']);die();
+ $this->global['pageTitle'] = $this->CompanyName.' : Cash Book: View Income Expense ';
+ $this->loadViews("viewIndIncomeExpense", $this->global, $data , NULL);
- $aid = $this->uri->segment(3);
- $str = $this->uri->segment(4);
- if(!empty($aid)){
-
- if(!empty($str))
- {
-
- $data['company'] = $this->cashbook_model->getCompany();
- $data['data'] = $this->cashbook_model->getIncomeExpenseList($aid);
- $totalamt = $data['data'][0]->total;
- $data['amtinwords'] = $this->convertNumber($totalamt);
- $mpdf=new mPDF('utf-8','A4-P',7, 10,10, 10, 3, 0, 0, 0);
- $mpdf->SetHTMLHeader($HtmlHeading);
- $html = $this->load->view('cashbookpdf',$data,true);
- $mpdf->SetDisplayMode('fullpage');
- $mpdf->setFooter($HTMLFooter . "Page {PAGENO} of {nb}");
- $mpdf->list_indent_first_level = 1;
- $mpdf->setAutoTopMargin = 'stretch';
- $mpdf->setAutoBottomMargin = 'stretch';
- $mpdf->WriteHTML($html);
- $filename = "bankreceipt.pdf";
- $mpdf->Output($filename,I);
- }
- else
- {
+ }
+
+ }else{
+ // $data['list'] = $this->cashbook_model->getIncomeExpenseList();
+ // $this->global['pageTitle'] = 'Siddharth : Cash Book: Listing';
+
+ // $this->loadViews("income_expense_list", $this->global, $data , NULL);
+ $this->global['pageTitle'] = $this->CompanyName.' : Cash Book: Listing';
+
+ if ($this->input->post('btn_submit')) {
- $data['data'] = $this->cashbook_model->getIncomeExpenseList($aid);
- //print_r($data['dropdownvalues']);die();
- $this->global['pageTitle'] = $this->CompanyName.': View Income Expense ';
- $this->loadViews("viewIndIncomeExpense", $this->global, $data , NULL);
-
+ $fromdt = $this->input->post('from_date');
+ $todt = $this->input->post('to_date');
+ $ab=$this->input->post('financialyear');
+
+ $fromyear=substr($ab,0,-5);
+ $toyear=substr($ab,5,5);
+
+
+ $data['finyear']=$this->cashbook_model->finyear();
+ $data['list'] = $this->cashbook_model->getIncomeExpense($fromyear,$toyear,$fromdt,$todt);
+
+ }
+ else{
+
+ if (date('m') <= 3) {
+ $preyear = (date('Y')-1);
+ $currentyear = date('Y');
+ } else {
+ $preyear = date('Y') ;
+ $currentyear = (date('Y') + 1);
}
- }else{
- // $data['list'] = $this->cashbook_model->getIncomeExpenseList();
- // $this->global['pageTitle'] = 'Siddharth : Cash Book: Listing';
-
- // $this->loadViews("income_expense_list", $this->global, $data , NULL);
- $this->global['pageTitle'] = $this->CompanyName.': Cash Master Listing';
-
- if ($this->input->post('btn_submit')) {
-
- $fromdt = $this->input->post('from_date');
- $todt = $this->input->post('to_date');
- $ab=$this->input->post('financialyear');
-
- $fromyear=substr($ab,0,-5);
- $toyear=substr($ab,5,5);
-
-
- $data['finyear']=$this->cashbook_model->finyear();
- $data['list'] = $this->cashbook_model->getIncomeExpense($fromyear,$toyear,$fromdt,$todt);
-
- }
- else{
-
- if (date('m') <= 3) {
- $preyear = (date('Y')-1);
- $currentyear = date('Y');
- } else {
- $preyear = date('Y') ;
- $currentyear = (date('Y') + 1);
- }
-
- $data['list'] = $this->cashbook_model->getIncomeExpense($preyear,$currentyear);
- $data['finyear']=$this->cashbook_model->finyear();
- }
- $this->loadViews("income_expense_list", $this->global, $data , NULL);
- }
+ $data['list'] = $this->cashbook_model->getIncomeExpense($preyear,$currentyear);
+ $data['finyear']=$this->cashbook_model->finyear();
+ }
+ $this->loadViews("income_expense_list", $this->global, $data , NULL);
+ }
+
}
- /**
- * To load add incomeexpense screen
- */
+
+ function bankreceipt()
+ {
+
+ $aid = $this->uri->segment(3);
+ $str = $this->uri->segment(4);
+ if(!empty($aid)){
+
+ if(!empty($str))
+ {
+
+ $data['company'] = $this->cashbook_model->getCompany();
+ $data['data'] = $this->cashbook_model->getIncomeExpenseList($aid);
+ $totalamt = $data['data'][0]->total;
+ $data['amtinwords'] = $this->convertNumber($totalamt);
+ $mpdf=new mPDF('utf-8','A4-P',7, 10,10, 10, 3, 0, 0, 0);
+ $mpdf->SetHTMLHeader($HtmlHeading);
+ $html = $this->load->view('cashbookpdf',$data,true);
+ $mpdf->SetDisplayMode('fullpage');
+ $mpdf->setFooter($HTMLFooter . "Page {PAGENO} of {nb}");
+ $mpdf->list_indent_first_level = 1;
+ $mpdf->setAutoTopMargin = 'stretch';
+ $mpdf->setAutoBottomMargin = 'stretch';
+ $mpdf->WriteHTML($html);
+ $filename = "bankreceipt.pdf";
+ $mpdf->Output($filename,I);
+ }
+ else
+ {
+
+ $data['data'] = $this->cashbook_model->getIncomeExpenseList($aid);
+ //print_r($data['dropdownvalues']);die();
+ $this->global['pageTitle'] = $this->CompanyName.' : Cash Book: View Income Expense ';
+ $this->loadViews("viewIndIncomeExpense", $this->global, $data , NULL);
+
+ }
+
+ }else{
+ // $data['list'] = $this->cashbook_model->getIncomeExpenseList();
+ // $this->global['pageTitle'] = 'Siddharth : Cash Book: Listing';
+
+ // $this->loadViews("income_expense_list", $this->global, $data , NULL);
+ $this->global['pageTitle'] = $this->CompanyName.' : Cash Book: Listing';
+
+ if ($this->input->post('btn_submit')) {
+
+ $fromdt = $this->input->post('from_date');
+ $todt = $this->input->post('to_date');
+ $ab=$this->input->post('financialyear');
+
+ $fromyear=substr($ab,0,-5);
+ $toyear=substr($ab,5,5);
+
+
+ $data['finyear']=$this->cashbook_model->finyear();
+ $data['list'] = $this->cashbook_model->getIncomeExpense($fromyear,$toyear,$fromdt,$todt);
+
+ }
+ else{
+
+ if (date('m') <= 3) {
+ $preyear = (date('Y')-1);
+ $currentyear = date('Y');
+ } else {
+ $preyear = date('Y') ;
+ $currentyear = (date('Y') + 1);
+ }
+
+ $data['list'] = $this->cashbook_model->getIncomeExpense($preyear,$currentyear);
+ $data['finyear']=$this->cashbook_model->finyear();
+ }
+ $this->loadViews("income_expense_list", $this->global, $data , NULL);
+ }
+
+
+ }
+
+
function addNewIncomeExpenseLoad()
- {
+ {
+
$data['dropdownvalues'] = $this->cashbook_model->getAccounTypes();
$data['getsupplier'] = $this->cashbook_model->getsupplier();
- //$this->global['pageTitle'] = 'Resico : Cash Book: Add New Income Expense ';
- $this->global['pageTitle'] = $this->CompanyName.': Cash Book: Add New Income Expense ';
+ //print_r($data['dropdownvalues']);die();
+ $this->global['pageTitle'] = $this->CompanyName.': Cash Book: Add New Income Expense ';
$this->loadViews("addnewIncomeExpense", $this->global, $data , NULL);
}
+
function autocomplete()
{
//$this->load->model('model','cashbook_model');
@@ -202,6 +199,7 @@ class cashbook extends BaseController
echo json_encode($query);
}
+
function getSupplierDtls()
{
$s = $this->input->post('id');
@@ -211,14 +209,17 @@ class cashbook extends BaseController
function bankfileview()
{
- $data['bankdetails']=$this->cashbook_model->getBankDetails();
+
+ //$data['dropdownvalues'] = $this->cashbook_model->getAccounTypes();
+ //print_r($data['dropdownvalues']);die();
+ $data['bankdetails']=$this->employeedetails_model->getBankDetails();
+ //$this->global['pageTitle'] = 'Siddharth : Cash Book: Add New Income Expense ';
$this->global['pageTitle'] = $this->CompanyName.': Bank Report - File Upload';
$data['bankbalance'] = $this->cashbook_model->getbalancedetails();
$data['cleareddebitbalance'] = $this->cashbook_model->cleareddebitbalance();
$data['clearedcreditbalance'] = $this->cashbook_model->clearedcreditbalance();
$this->loadViews("bankingfile", $this->global, $data , NULL);
}
-
function bankfileupload()
{
$document = null;
@@ -229,40 +230,31 @@ class cashbook extends BaseController
//echo "FILE AVAILABLE";
$config['file_name'] = $_FILES['userfile']['name'];
$myFIle = $config['file_name'];
-
$config['upload_path'] = 'uploads/banking/';
$path = $config['upload_path'];
//$filename = $config['file_name'];
$document = $path.$filename;
- //echo $document;
$fs = $this->uploadFile1();
$document = $path.$fs;
$created_by = $this->session->userdata('userId');
-
- $openingbalance=0;
- $closingbalance=0;
+ $openingbalance=0;
+ $closingbalance=0;
$inputFileName = $_FILES['userfile']['tmp_name'];
require_once APPPATH .'third_party/PHPExcel/IOFactory.php';
$objTpl = PHPExcel_IOFactory::load($inputFileName);
$sheet = $objTpl->getActiveSheet();//->toArray(null, true,true,true);
-
- $highestRow = $sheet->getHighestRow();
-
+ $highestRow = $sheet->getHighestRow();
$highestColumn = $sheet->getHighestColumn();
-
-
-
-
$bank = $this->input->post('bankbranchname');
+ //echo "bankname". $bank;
$fileupload= array('Bankname'=>$bank,'document'=>$document);
-
$res = $this->cashbook_model->bankfile($fileupload);
- if($bank == 'IndianBank')
+ if($bank == 'IndianBank')
+ {
+ $highestRow4=$highestRow-4;
+ for($x=21;$x<=$highestRow4;$x++)
{
-
-
- for($x=21;$x<=$highestRow4;$x++){
if($x == 21){
@@ -274,11 +266,8 @@ class cashbook extends BaseController
$closingbalance=$sheet->getCell('H'.$highestRow4)->getValue();
}
-
-
-
- $t=$sheet->getCell('A'.$x)->getValue();
- $dat= str_replace('/','-',$t);
+ $t=$sheet->getCell('A'.$x)->getValue();
+ $dat= str_replace('/','-',$t);
if (empty($dat))
{
@@ -317,44 +306,41 @@ class cashbook extends BaseController
$credit=$sheet->getCell('G'.$x)->getValue();
$balance=$sheet->getCell('H'.$x)->getValue();
- // $IsActive=0;
- // if(empty())
- $filedataupload1 = array('reportdate'=>$Date1,'valuedate'=>$Date2,'chequeNo'=>$cod,'Narration'=>$narration,'Cod'=> $chqno,'Debit'=>$debit,'Credit'=>$credit,'cbalancetocleared'=>$credit,'Balance'=>$balance,'Bankname'=>$bank);
+
+ $filedataupload = array('reportdate'=>$Date1,'valuedate'=>$Date2,'chequeNo'=>$cod,'Narration'=>$narration,'Cod'=> $chqno,'Debit'=>$debit,'Credit'=>$credit,'cbalancetocleared'=>$credit,'Balance'=>$balance,'Bankname'=>$bank);
+
+ // $filedataupload = array_filter($filedataupload1);
- $filedataupload = array_filter($filedataupload1);
- // print_r($filedataupload);
$res = $this->cashbook_model->bankfiledata($filedataupload);
}
}
- if($bank == 'CUB')
- {
- $highestRow4=$highestRow-7;
+
+
+ if($bank == 'CUB')
+ {
+ $highestRow4=$highestRow-7;
- for($x=17;$x<=$highestRow4;$x++)
- {
+ for($x=17;$x<=$highestRow4;$x++)
+ {
+ if($x == 17)
+ {
+ $openingbalance=$sheet->getCell('F'.$x)->getValue();
+ }
+ if($x == $highestRow4){
- if($x == 17){
-
- $openingbalance=$sheet->getCell('F'.$x)->getValue();
-
- }
- if($x == $highestRow4){
-
- $closingbalance=$sheet->getCell('F'.$highestRow4)->getValue();
+ $closingbalance=$sheet->getCell('F'.$highestRow4)->getValue();
- }
+ }
- $t=$sheet->getCell('A'.$x)->getValue();
-
-
+ $t=$sheet->getCell('A'.$x)->getValue();
if (empty($t))
- {
- $Date1 = NULL;
- }
- else
- {
+ {
+ $Date1 = NULL;
+ }
+ else
+ {
$Date1= date("Y-d-m ", strtotime($t));
@@ -388,30 +374,30 @@ class cashbook extends BaseController
$balance=$sheet->getCell('F'.$x)->getValue();
- $filedataupload1 = array('reportdate'=>$Date1,'valuedate'=>$Date2,'chequeNo'=>$cod,'Narration'=>$narration,'Cod'=> $chqno,'Debit'=>$debit,'Credit'=>$credit,'cbalancetocleared'=>$credit,'Balance'=>$balance,'Bankname'=>$bank);
- $filedataupload = array_filter($filedataupload1);
- //print_r($filedataupload);
- // die();
+ $filedataupload = array('reportdate'=>$Date1,'valuedate'=>$Date2,'chequeNo'=>$cod,'Narration'=>$narration,'Cod'=> $chqno,'Debit'=>$debit,'Credit'=>$credit,'cbalancetocleared'=>$credit,'Balance'=>$balance,'Bankname'=>$bank);
+ //$filedataupload = array_filter($filedataupload1);
- $res = $this->cashbook_model->bankfiledata($filedataupload);
+ $res = $this->cashbook_model->bankfiledata($filedataupload);
}
- }
+ }
+
if($bank == 'BOB')
{
+
$highestRow4=$highestRow-3;
- for($x=13;$x<=$highestRow4;$x++)
- {
-
- if($x == 13){
-
- $openingbalance=$sheet->getCell('H'.$x)->getValue();
-
- }
- if($x == $highestRow4){
+
+ for($x=13;$x<=$highestRow4;$x++)
+ {
+ if($x == 13)
+ {
+ $openingbalance=$sheet->getCell('H'.$x)->getValue();
+ }
+ if($x == $highestRow4)
+ {
$closingbalance=$sheet->getCell('H'.$highestRow4)->getValue();
- }
+ }
$t=$sheet->getCell('B'.$x)->getValue();
@@ -458,21 +444,18 @@ class cashbook extends BaseController
$filedataupload1= array('reportdate'=>$Date1,'valuedate'=>$Date2,'chequeNo'=>$cod,'Narration'=>$narration,'Cod'=> $chqno,'Debit'=>$debit,'Credit'=>$credit,'cbalancetocleared'=>$credit,'Balance'=>$balance,'Bankname'=>$bank);
$filedataupload = array_filter($filedataupload1);
- //print_r($filedataupload);
-
-
- // die();
-
- $res = $this->cashbook_model->bankfiledata($filedataupload);
- }
-
-
-
- }
- if($bank == 'OCC')
+
+ $res = $this->cashbook_model->bankfiledata($filedataupload);
+ }
+ }
+
+
+
+ if($bank == 'OCC' || $bank == 'CA')
{
$highestRow4=$highestRow-1;
+
for($x=7;$x<=$highestRow4;$x++)
{
if($x == 7){
@@ -531,92 +514,19 @@ class cashbook extends BaseController
$balance=$sheet->getCell('H'.$x)->getValue();
- $filedataupload1 = array('reportdate'=>$Date1,'valuedate'=>$Date2,'chequeNo'=>$cod,'Narration'=>$narration,'Cod'=> $chqno,'Debit'=>$debit,'Credit'=>$credit,'cbalancetocleared'=>$credit,'Balance'=>$balance,'Bankname'=>$bank);
- $filedataupload = array_filter($filedataupload1);
+ $filedataupload = array('reportdate'=>$Date1,'valuedate'=>$Date2,'chequeNo'=>$cod,'Narration'=>$narration,'Cod'=> $chqno,'Debit'=>$debit,'Credit'=>$credit,'cbalancetocleared'=>$credit,'Balance'=>$balance,'Bankname'=>$bank);
+ //$filedataupload = array_filter($filedataupload1);
$res = $this->cashbook_model->bankfiledata($filedataupload);
}
-
- }
- if($bank == 'CA' )
- {
- $highestRow4=$highestRow-1;
- for($x=8;$x<=$highestRow4;$x++)
- {
- if($x == 8){
-
- $openingbalance=$sheet->getCell('H'.$x)->getValue();
-
- }
- if($x == $highestRow4){
-
- $closingbalance=$sheet->getCell('H'.$highestRow4)->getValue();
-
- }
-
-
-
- $t1=$sheet->getCell('B'.$x)->getValue();
- $t = PHPExcel_Style_NumberFormat::toFormattedString($t1,"YYYY-M-D");
-
-
- if (empty($t))
- {
- $Date1 = NULL;
- }
- else
- {
- $Date1 = $t;
-
- }
-
-
-
- $s1=$sheet->getCell('B'.$x)->getValue();
- $s = PHPExcel_Style_NumberFormat::toFormattedString($s1,"YYYY-M-D");;
-
-
-
-
- if (empty($s))
- {
- $Date2 = NULL;
- }
- else
- {
-
- $Date2 = $s;
-
- }
-
-
- // $chqno = $sheet->getCell('E'.$x)->getValue();
- $narration = $sheet->getCell('D'.$x)->getValue();
- // $cod =$sheet->getCell('E'.$x)->getValue();
- $debit =$sheet->getCell('F'.$x)->getValue();
-
- $credit=$sheet->getCell('G'.$x)->getValue();
- $balance=$sheet->getCell('H'.$x)->getValue();
-
-
- $filedataupload1 = array('reportdate'=>$Date1,'valuedate'=>$Date2,'chequeNo'=>$cod,'Narration'=>$narration,'Cod'=> $chqno,'Debit'=>$debit,'Credit'=>$credit,'cbalancetocleared'=>$credit,'Balance'=>$balance,'Bankname'=>$bank);
- $filedataupload = array_filter($filedataupload1);
-
- // print_r($filedataupload);
-
- // die();
- $res = $this->cashbook_model->bankfiledata($filedataupload);
- }
-
-
-
- }
+ }
+
$balance= array('filename'=>$config['file_name'],'created_by'=>$created_by,'openingbalance'=>$openingbalance,'closingbalance'=>$closingbalance);
$bal = $this->cashbook_model->balance($balance);
-
+
if( $res == 1 ){
echo "";
}
@@ -628,40 +538,64 @@ class cashbook extends BaseController
}
- /**
- * To store added incomeexpense datas
- */
- //function addIncomeExpense()
- function addReceipt()
- {
-
+
+
+ function addIncomeExpense()
+ {
+
+
+ $bankdate = $this->input->post('bankdate');
$bankid = $this->input->post('bakid');
$remaindebitamount=$this->input->post('remaindebitamount');
$remaincreditamount=$this->input->post('remaincreditamount');
- //$amount = $this->input->post('bankamount');//need to ask
- $bankamounttype = $this->input->post('type');
+ $amount = $this->input->post('bankamount');
+ $amounttype = $this->input->post('type');
$totalbankamount = $this->input->post('totalbankamount');
$alreadypaid=$this->input->post('alreadydebitpaid');
$directamount = $this->input->post('totalamount');
- //$debitamount=$this->input->post('debitamount');// need to ask
+ $debitamount=$this->input->post('debitamount');
$alreadycreditpaid=$this->input->post('alreadycreditpaid');
$bankorcash=$this->input->post('borc');
$total=$directamount+$alreadypaid;
$ctotal=$directamount+$alreadycreditpaid;
$updateBalancetocleared= $remaindebitamount-$directamount;
$updatecbalancetocleared= $remaincreditamount-$directamount;
-
+ if($amounttype==CREDIT)
+ {
+ $type=RECEIPT;
+ $bankamounttype=CREDIT;
+ }
+ else
+ {
+ $type=PAYMENT;
+ $bankamounttype=DEBIT;
+ }
- $accounttype = 'RECEIPT';
- $accountcode = $this->input->post('accode');
- $date = $this->input->post('Date');
- $date = date_create($date);//,'Y-m-d');
- $date = date_format($date,'Y-m-d');
- $towhome = $this->input->post('towhome');
- $supplier = $this->input->post('supplier');
- $gsttoggle = $this->input->post('gsttoggle');
- $invoiceno = null;
+
+
+ $accounttype = $this->input->post('myradio');
+ //$accounttype1 = $this->input->post('myrad');
+ //echo $accounttype;
+ //echo $accounttype1;
+ if($accounttype == 1)
+ {
+ $accounttype = 'RECEIPT';
+ }
+ else
+ {
+ $accounttype = 'PAYMENT';
+ }
+
+ $accountcode = $this->input->post('accode');
+ $date = $this->input->post('Date');
+ $date = date_create($date);//,'Y-m-d');
+ $date = date_format($date,'Y-m-d');
+ $towhome = $this->input->post('towhome');
+ $supplier = $this->input->post('supplier');
+
+ $gsttoggle = $this->input->post('gsttoggle');
+ $invoiceno = null;
$merchantname = null;
$mergstno = null;
$hsn = null;
@@ -669,7 +603,6 @@ class cashbook extends BaseController
$sgst = null;
$cgst = null;
$igst = null;
- $subdescription = null;
if(!empty($gsttoggle))
{
$invoiceno = $this->input->post('Invoiceno');
@@ -680,12 +613,12 @@ class cashbook extends BaseController
$sgst = $this->input->post('SGST');
$cgst = $this->input->post('CGST');
$igst = $this->input->post('IGST');
+
}
- $totalamount = $this->input->post('totalamount');
- // $cashbookamount=$this->input->post('totalamount1');
- // $totalamount=$directamount+$cashbookamount;
+ $cashbookamount=$this->input->post('totalamount1');
+ $totalamount=$directamount+$cashbookamount;
$description = $this->input->post('description');
if(empty($description)){$description = 'NA';}
$document = null;
@@ -693,421 +626,94 @@ class cashbook extends BaseController
$fs = 0;
if(!empty($_FILES['myfile']['name']))
{
-
+ //echo "FILE AVAILABLE";
$config['file_name'] = $_FILES['myfile']['name'];
$config['upload_path'] = 'uploads/cashbook/';
$path = $config['upload_path'];
+ //$filename = $config['file_name'];
$document = $path.$filename;
+ //echo $document;
$fs = $this->uploadFile();
$document = $path.$fs;
}
- if($bankorcash=='Bank')
+ if($bankorcash==Bank)
{
- $option='Bank';
+ $option=Bank;
}
else
{
- $option='Cash';
+ $option=Cash;
}
$balance=$totalbankamount-$totalamount;
$IsActive=1;
$created_by = $this->session->userdata('userId');
- //$addincomexpense = array('type'=>$accounttype,'account_code'=>$accountcode,'date'=>$date,'towhom'=>$towhome,'invoice_no'=>$invoiceno,'merchant'=>$merchantname,'merchant_gst'=>$mergstno,'HSN'=>$hsn ,'value_before_gst'=>$beforegst,'sgst'=>$sgst,'cgst'=>$cgst,'igst'=>$igst,'total'=>$totalamount,'description'=>$description,'document'=>$document,'Created_By'=>$created_by,'subdescription'=>$subdescription);
$addincomexpense = array('type'=>$accounttype,'account_code'=>$accountcode,'date'=>$date,'towhom'=>$towhome,'Supplier_id'=>$supplier,'invoice_no'=>$invoiceno,'merchant'=>$merchantname,'merchant_gst'=>$mergstno,'HSN'=>$hsn ,'value_before_gst'=>$beforegst,'sgst'=>$sgst,'cgst'=>$cgst,'igst'=>$igst,'total'=>$totalamount,'description'=>$description,'document'=>$document,'Created_By'=>$created_by,'cashtype'=>$option,'bankid'=>$bankid,'totalbankamount'=>$totalbankamount,'balance'=>$balance,'gststatus'=>(!empty($gsttoggle)?'1':'0'),'amounttype'=>$amounttype,'IsActive'=>$IsActive);
- if($balance=='0')
- {
- $stat='CLOSE';
- }
- else
- {
- $stat='OPEN';
- }
- $creditbalance=$totalbankamount-$ctotal;
- //echo $creditbalance;
+ //print_r($addincomexpense);
//die();
- if($creditbalance==0)
+ if($balance=='0')
+ {
+ $stat='CLOSE';
+ }
+ else
+ {
+ $stat='OPEN';
+ }
+ $creditbalance=$totalbankamount-$ctotal;
+ //echo $creditbalance;
+ //die();
+ if($creditbalance==0)
+
+ {
+ $statu='CLOSE';
+ }
+ else
+ {
+ $statu='OPEN';
+ }
+ $debitbalance=$totalbankamount-$total;
+ if($debitbalance==0)
+
{
- $statu='CLOSE';
+ $statu1='CLOSE';
}
else
{
- $statu='OPEN';
+ $statu1='OPEN';
}
- // $debitbalance=$totalbankamount-$total;
- // if($debitbalance==0)
-
- // {
- // $statu1='CLOSE';
- // }
- // else
- // {
- // $statu1='OPEN';
- // }
- // $isactive=1;
- // //$clearbalance=$totalbankamount-
- // if($amounttype=='CREDIT')
- // {
- $cashbookstatus1= array('cclearbalance'=>$ctotal,'cbalancetocleared'=>$updatecbalancetocleared,'cstatus'=>$statu);
- //print_r($cashbookstatus1);
- //die();
- $res1 = $this->cashbook_model->cashcreditupdate($cashbookstatus1,$bankid);
- // }
- // else
- // {
- // $cashbookstatus = array('Clearbalance'=>$total,'Balancetocleared'=>$updateBalancetocleared,'Status'=>$statu1);
- // $res23 = $this->cashbook_model->cashbankupdate($cashbookstatus,$bankid);
-
- // }
-
-
-
- $res = $this->cashbook_model->saveIncomeExpense($addincomexpense);
- if( $res >= 1 ){
-
-
- if($bankorcash=='Bank')//Redirct To Bank Report Screen
- {
-
-
- echo "";
- redirect('Bankingstatement','refresh');
-
- }
- else
- {
-
- //Redirct To Listing Screen
- echo "";
- }
+ $isactive=1;
+ //$clearbalance=$totalbankamount-
+ if($amounttype=='CREDIT')
+ {
+ $cashbookstatus1= array('cclearbalance'=>$ctotal,'cbalancetocleared'=>$updatecbalancetocleared,'cstatus'=>$statu,'IsActive'=>$isactive);
+ //print_r($cashbookstatus1);
+ //die();
+ $res1 = $this->cashbook_model->cashcreditupdate($cashbookstatus1,$bankid);
+ }
+ else
+ {
+ $cashbookstatus = array('Clearbalance'=>$total,'Balancetocleared'=>$updateBalancetocleared,'Status'=>$statu1,'IsActive'=>$isactive);
+ $res23 = $this->cashbook_model->cashbankupdate($cashbookstatus,$bankid);
+
}
- }
- // $res = $this->cashbook_model->saveIncomeExpense($addincomexpense);
- // if( $res >= 1 ){
- // echo "";
- // }
-
- // }
-
- /**
- * To store added Cashbook's Payment datas
- */
- function addPayment()
- {
-
-
- $bankid = $this->input->post('hideBankID');
- $remaindebitamount=$this->input->post('hideRemainDebitAmount');
- //$remaincreditamount=$this->input->post('remaincreditamount');
- //$amount = $this->input->post('bankamount');//need to ask
- $amounttype = $this->input->post('hideBAtype');
- $totalbankamount = $this->input->post('hideTotalBankAmount');
- $alreadypaid=$this->input->post('hideAlreadyDebitPaid');
- $directamount = $this->input->post('Paymenttotalamount');
- //$debitamount=$this->input->post('debitamount');// need to ask
- //$alreadycreditpaid=$this->input->post('alreadycreditpaid');
- $bankorcash=$this->input->post('hideborc');
- $total=$directamount+$alreadypaid;
- //$ctotal=$directamount+$alreadycreditpaid;
- $updateBalancetocleared= $remaindebitamount-$directamount;
- //$updatecbalancetocleared= $remaincreditamount-$directamount;
- // if($amounttype==CREDIT)
- // {
- // $type=RECEIPT;
- // $bankamounttype=CREDIT;
- // }
- // else
- // {
- $type=PAYMENT;
- $bankamounttype=DEBIT;
- // }
-
- $count = $this->input->post('hidecounter');
- $constantcount = $this->input->post('hideconstant');
-
- $accounttype = 'PAYMENT';
- $date = $this->input->post('PaymentDate');
- $date = date_create($date);//,'Y-m-d');
- $date = date_format($date,'Y-m-d');
- $paidto = $this->input->post('PaymentPaidto');
- $supplier = $this->input->post('Paymentsupplier');
- $vouchercode = $this->input->post('Paymentvouchercode');
-
-
-
-
- //echo $count.$consantcount;
- //$gsttoggle = $this->input->post('gsttoggle');
- //$invoiceno = null;
- $merchantname = null;
- $mergstno = null;
- $hsn = null;
- $beforegst = null;
- $sgst = null;
- $cgst = null;
- $igst = null;
-
- $merchantname = $this->input->post('Paymentmerchant');
- $mergstno = $this->input->post('PaymentMerchantgst');
- $hsn = $this->input->post('Paymenthsn');
- $beforegst = $this->input->post('PaymentvaluebeforegST');
- $sgst = $this->input->post('PaymentSGST');
- $cgst = $this->input->post('PaymentCGST');
- $igst = $this->input->post('PaymentIGST');
-
- // $cashbookamount=$this->input->post('totalamount1');
- // $totalamount=$directamount+$cashbookamount; where its comes from
- //$totalamount = $this->input->post('Paymenttotalamount');
- $description = $this->input->post('Paymentdescription');
-
-
- if(empty($description)){$description = 'NA';}
-
- $document = null;
-
- $fs = 0;
-
- if(!empty($_FILES['myfile']['name']))
- {
+ $res = $this->cashbook_model->saveIncomeExpense($addincomexpense);
+ if( $res == 1 ){
+ //echo "";
+ echo "";
- $config['file_name'] = $_FILES['myfile']['name'];
- $config['upload_path'] = 'uploads/cashbook/';
- $path = $config['upload_path'];
- $document = $path.$filename;
- $fs = $this->uploadFile();
- $document = $path.$fs;
-
- }
- $created_by = $this->session->userdata('userId');
-
-
- if($count == 1)
- {
-
- $array = $this->input->post('mydata1');
- if(!empty($array)){
- $array[] = $this->input->post($varname);
- $index = 0;
- foreach($array as $key=>$value){
- $index++;
- if($index == 1){
- $Paymentaccode = $value;
- }
- if($index == 2){
- $subdescription = $value;
- }
- }}
-
-
- if($bankorcash=='Bank')
- { $option='Bank'; }
- else { $option='Cash'; }
- $balance=$totalbankamount-$totalamount;
- $IsActive=1;
-
- $addPayments = array('type'=>$accounttype,'account_code'=>$Paymentaccode,'date'=>$date,'towhom'=>$paidto,'Supplier_id'=>$supplier,'invoice_no'=>$vouchercode,'merchant'=>$merchantname,'merchant_gst'=>$mergstno,'HSN'=>$hsn ,'value_before_gst'=>$beforegst,'sgst'=>$sgst,'cgst'=>$cgst,'igst'=>$igst,'total'=>$directamount,'description'=>$description,'document'=>$document,'Created_By'=>$created_by,'paymentsubdesc'=>$subdescription,'cashtype'=>$option,'bankid'=>$bankid,'totalbankamount'=>$totalbankamount,'balance'=>$balance,'gststatus'=>(!empty($gsttoggle)?'1':'0'),'amounttype'=>$amounttype,'IsActive'=>$IsActive);
- $res = $this->cashbook_model->saveIncomeExpense($addPayments);
-
- if($balance=='0')
- {
- $stat='CLOSE';
+ if($bankorcash==Bank)//Redirct To Listing Screen
+ {
+ redirect('Bankingstatement','refresh');
+
+ }
+ else if($bankorcash != ' ')//Redirct To Bank Report Screen
+ {
+ redirect('ViewIncomeExpense','refresh');
+ }
}
- else
- {
- $stat='OPEN';
- }
- // $creditbalance=$totalbankamount-$ctotal;
- // //echo $creditbalance;
- // //die();
- // if($creditbalance==0)
- // {
- // $statu='CLOSE';
- // }
- // else
- // {
- // $statu='OPEN';
- // }
- $debitbalance=$totalbankamount-$total;
- if($debitbalance==0)
-
- {
- $statu1='CLOSE';
- }
- else
- {
- $statu1='OPEN';
- }
- $isactive=1;
-
- // if($amounttype=='CREDIT')
- // {
-// $cashbookstatus1= array('cclearbalance'=>$ctotal,'cbalancetocleared'=>$updatecbalancetocleared,'cstatus'=>$statu);
- //print_r($cashbookstatus1);
- //die();
-// $res1 = $this->cashbook_model->cashcreditupdate($cashbookstatus1,$bankid);
- // }
- // else
- // {
- $cashbookstatus = array('Clearbalance'=>$total,'Balancetocleared'=>$updateBalancetocleared,'Status'=>$statu1);
- $res23 = $this->cashbook_model->cashbankupdate($cashbookstatus,$bankid);
-
- // }
-
-
-
-
-
- }
- else
- {
-
- $accountcode = '999';
- $subdescription = 'Multiple';
-
- if($bankorcash=='Bank')
- { $option='Bank'; }
- else { $option='Cash'; }
- $balance=$totalbankamount-$totalamount;
- $IsActive=1;
-
- $addPayments = array('type'=>$accounttype,'account_code'=>$accountcode,'date'=>$date,'towhom'=>$paidto,'Supplier_id'=>$supplier,'invoice_no'=>$vouchercode,'merchant'=>$merchantname,'merchant_gst'=>$mergstno,'HSN'=>$hsn ,'value_before_gst'=>$beforegst,'sgst'=>$sgst,'cgst'=>$cgst,'igst'=>$igst,'total'=>$directamount,'description'=>$description,'document'=>$document,'Created_By'=>$created_by,'paymentsubdesc'=>$subdescription,'cashtype'=>$option,'bankid'=>$bankid,'totalbankamount'=>$totalbankamount,'balance'=>$balance,'gststatus'=>(!empty($gsttoggle)?'1':'0'),'amounttype'=>$amounttype,'IsActive'=>$IsActive);
- $res = $this->cashbook_model->saveIncomeExpense($addPayments);
-
- if($balance=='0')
- {
- $stat='CLOSE';
- }
- else
- {
- $stat='OPEN';
- }
- // $creditbalance=$totalbankamount-$ctotal;
- // //echo $creditbalance;
- // //die();
- // if($creditbalance==0)
- // {
- // $statu='CLOSE';
- // }
- // else
- // {
- // $statu='OPEN';
- // }
- $debitbalance=$totalbankamount-$total;
- if($debitbalance==0)
-
- {
- $statu1='CLOSE';
- }
- else
- {
- $statu1='OPEN';
- }
- $isactive=1;
-
- // if($amounttype=='CREDIT')
- // {
-// $cashbookstatus1= array('cclearbalance'=>$ctotal,'cbalancetocleared'=>$updatecbalancetocleared,'cstatus'=>$statu);
- //print_r($cashbookstatus1);
- //die();
-// $res1 = $this->cashbook_model->cashcreditupdate($cashbookstatus1,$bankid);
- // }
- // else
- // {
- $cashbookstatus = array('Clearbalance'=>$total,'Balancetocleared'=>$updateBalancetocleared,'Status'=>$statu1);
- $res23 = $this->cashbook_model->cashbankupdate($cashbookstatus,$bankid);
-
- // }
-
-
-
-
- $Paymentaccode = '';
- $subdescription = '';
- $Paymentamount = '';
-
-
- for($i=1;$i<=$constantcount;$i++){
-
- $varname = 'mydata'.$i;
- //alert($varname);
- $temp = $this->input->post($varname);
- if(!empty($temp)){
- $g[] = $this->input->post($varname);
- //echo "sd";
- //print_r($g);
- //die();
- }
- else{}
- }
-
- foreach($g as $arr){
- // $Paymentaccode = $arr->Paymentaccode;
- // $subdescription = $arr->subdescription;
- // $Paymentamount = $arr->Paymentamount;
-
- $index = 0;
- foreach($arr as $key=>$value){
- $index++;
- // echo "*************";
- // echo $key;
- // echo $value;
- // echo "*************";
- if($index == 1){
- $Paymentaccode = $value;
- }
- if($index == 2){
- $subdescription = $value;
- }
- if($index == 3){
- $Paymentamount = $value;
-
- }
-
- }
- //insert;
- $addPaymentDetails = array('Payment_id'=>$res,'Account_code'=>$Paymentaccode,'Account_description'=>$subdescription,'Amount'=>$Paymentamount);
- //print_r($addPaymentschild);
-
- //$child = $this->cashbook_model->paymentdetails($addPaymentschild);
- $child = $this->cashbook_model->addpaymentdetails($addPaymentDetails);
- //addupdatepaymentdetails($addPaymentschild,$res);
- //echo $child;
- //echo $paymentcode;
- }
-
- }//new else
- // if( $res >= 1 ){
- // echo "";
- // }
- if( $res >= 1 ){
-
-
- if($bankorcash=='Bank')//Redirct To Bank Report Screen
- {
-
-
- echo "";
- redirect('Bankingstatement','refresh');
-
- }
- else
- {
-
- //Redirct To Listing Screen
- echo "";
- }
- }
-
}
-
public function cashpayment()
{
$bankdate = $this->input->post('bankdate');
@@ -1139,24 +745,24 @@ class cashbook extends BaseController
// $res1 = $this->cashbook_model->addcashbook($bankcash1);
}
-
-
- /**
- * To store Cashbook revalant file and images
- */
function uploadFile()
{
+ //echo "INSIDE UPLOAFD";
+
+ //$this->load->library('upload')
$pathinfo = pathinfo($_FILES['myfile']['name']);
$config['upload_path'] = 'uploads/cashbook/';
- $config['allowed_types'] = 'png|jpg|jpeg|pdf';
+ $config['allowed_types'] ='png|jpg|jpeg|pdf';
$config['file_name'] = $_FILES['myfile']['name'];
+ // $config['overwrite'] = true;
//Load upload library and initialize configuration
$this->load->library('upload',$config);
$this->upload->initialize($config);
+
if($this->upload->do_upload('myfile'))
{
$uploadData = $this->upload->data();
@@ -1173,10 +779,6 @@ class cashbook extends BaseController
}
}
-
- /**
- * To load view Income Expense screen
- */
function uploadFile1()
{
@@ -1211,42 +813,46 @@ class cashbook extends BaseController
}
- function viewIE()
+ function viewIE()
{
$aid = $this->uri->segment(3);
+
$data['data'] = $this->cashbook_model->getAccounutInfo();
- //$this->global['pageTitle'] = 'Resico : Cash Book: View Income Expense ';
- $this->global['pageTitle'] = $this->CompanyName.' : Cash Book: View Income Expense ';
+ //print_r($data['dropdownvalues']);die();
+ $this->global['pageTitle'] = $this->CompanyName.' : Cash Book: View Income Expense ';
$this->loadViews("viewIndIncomeExpense", $this->global, $data , NULL);
}
- /**
- * Index Page for this controller(default function of the class)
- */
public function index()
{
- //$this->global['pageTitle'] = 'Resico : Cashbook Details';
- $this->global['pageTitle'] = $this->CompanyName.' : Cashbook Details';
+ //$data['dropdownvalues1'] = $this->cashbook_model->getAccounTypes1();
+
+ $this->global['pageTitle'] = $this->CompanyName.' : Cashbook Details';
$this->loadViews("cashbooklisting", $this->global, NULL , NULL);
- }
+ }
+
+
public function cashbookList()
{
$this->load->model('cashbook_model');
- //$data['dropdownvalues1'] = $this->cashbook_model->getAccounTypes1();
+ $data['dropdownvalues1'] = $this->cashbook_model->getAccounTypes1();
+ //print_r($data['dropdownvalues1']);
$data['cashbook'] = $this->cashbook_model->Selectcash();
- //$this->global['pageTitle'] = 'Resico : Cashbook Listing';
- $this->global['pageTitle'] = $this->CompanyName.' : Cashbook Listing';
+ $this->global['pageTitle'] = $this->CompanyName.' : Cashbook Listing';
+
$this->loadViews("cashbooklisting", $this->global, $data, NULL);
- }
-
+ }
+
+
+ //advance list
public function AdvanceList()
{
@@ -1284,7 +890,7 @@ class cashbook extends BaseController
$data['data'] = $this->cashbook_model->getAdvanceList($aid);
//print_r($data['dropdownvalues']);die();
- $this->global['pageTitle'] = $this->CompanyName.' : Cash Book: View Income Expense ';
+ $this->global['pageTitle'] = $this->CompanyName.' : Cash Book: View Income Expense ';
$this->loadViews("viewIndIncomeExpense", $this->global, $data , NULL);
}
@@ -1294,7 +900,7 @@ class cashbook extends BaseController
// $this->global['pageTitle'] = 'Siddharth : Cash Book: Listing';
// $this->loadViews("income_expense_list", $this->global, $data , NULL);
- $this->global['pageTitle'] = $this->CompanyName.' : Cash Book: Advance List';
+ $this->global['pageTitle'] = $this->CompanyName.' : Cash Book: Listing';
if ($this->input->post('btn_submit')) {
@@ -1329,18 +935,22 @@ class cashbook extends BaseController
}
- public function cashbookdtl()
+
+
+
+ public function cashbookdtl()
{
$id = $this->input->post('id');
$tablevalue = json_decode($id,true);
+ //print_r($tablevalue);
foreach($tablevalue as $tv)
{
if(!empty($tv['AccountCodeType'])){
$acc_type = $tv['AccountCodeType'];
$acc_code = $tv['AccountCode'];
- $acc_name = $tv['AccountName'];
+ $acc_name = $tv['AccountName'];
$acc_pname = $tv['ParentAccountName'];
$acc_categories = $tv['Categories'];
$acc_desc = $tv['Description'];
@@ -1357,21 +967,24 @@ class cashbook extends BaseController
$dt = new DateTime('now', new DateTimeZone('Asia/Kolkata'));
$acc_createddt = $dt->format('Y-m-d H:i:s');
- $cashbookdatas = array('type'=>$acc_type,'code'=>$acc_code,'name'=>$acc_name,'description'=>$acc_desc,'status'=>$acc_status,'created_on'=>$acc_createddt);
- /** accountname and category fields aree not available so that comment */
- //$cashbookdatas = array('type'=>$acc_type,'code'=>$acc_code,'name'=>$acc_name,'accountname'=>$acc_pname,'categories'=>$acc_categories,'description'=>$acc_desc,'status'=>$acc_status,'created_on'=>$acc_createddt);
-
- $result = $this->cashbook_model->Cashbook($cashbookdatas);
+ $cashbookdatas = array('type'=>$acc_type,'code'=>$acc_code,'name'=>$acc_name,'accountname'=>$acc_pname,'categories'=>$acc_categories,'description'=>$acc_desc,'status'=>$acc_status,'created_on'=>$acc_createddt);
+ // print_r($cashbookdatas);
+
+ $result = $this->cashbook_model->Cashbook($cashbookdatas);
}
}
+
+ //redirect('cashbook/cashbookList','refresh');
echo "Successfully Saved!";
-
+
+
+
+
+
}
- /**
- * For edit cashbook screen
- */
- public function editcashbook($sid)
+
+ public function editcashbook($sid)
{
if($sid == '')
@@ -1384,20 +997,15 @@ class cashbook extends BaseController
}
- $this->load->model('cashbook_model');
+ $this->load->model('cashbook_model');
- //$data['DepDetails'] = $this->cashbook_model->viewdepartment($cash);
- /** this array for single entry both recepit and payment datas*/
- $data['RecepitPayment'] = $this->cashbook_model->viewdepartment($cash);
- /** this array for paymentmaster mutilpe datas */
- $data['PaymentMultiple'] = $this->cashbook_model->viewpaymentmaster($cash);
- /** this array for paymentchild datas */
- $data['PaymentDetails'] = $this->cashbook_model->viewpaymentdetails($cash);
- /** this array for dropdown value(account name)*/
+ $data['DepDetails'] = $this->cashbook_model->viewdepartment($cash);
+
+ //$data['deletefile'] = $this->cashbook-model->deletefile($cash);
$data['dropdownvalues'] = $this->cashbook_model->getAccounTypes();
$data['getsupplier'] = $this->cashbook_model->getsupplier();
- //$this->global['pageTitle'] = 'Resico : Edit Cashbook';
- $this->global['pageTitle'] = $this->CompanyName.' : Edit Cashbook';
+ //print_r( $data['DepDetails']);die();
+ $this->global['pageTitle'] = $this->CompanyName.' : Edit Cashbook';
$this->loadViews("editincomeexpenses", $this->global,$data, NULL);
}
@@ -1405,36 +1013,42 @@ class cashbook extends BaseController
{
$cashfile = $this->input->post('id');
$cashid = $this->input->post('ide');
- $filedata= $this->cashbook_model->deletefile($cashid,$cashfile);
+ //echo 'dsmkjsn';
+ //echo $cashid;
+
+ //echo $cashfile;
+ //die();
+ //$this->load->model('cashbook_model');
+ $filedata= $this->cashbook_model->deletefile($cashid);
echo $filedata;
- }
- function Removepaymentdetails(){
-
- $id = $this->input->post('id');
- $deletedata = $this->cashbook_model->deletepaymentdetails($id);
- echo $deletedata;
- }
- function updateReceipt()
+ //$this->global['pageTitle'] = 'Siddharth : Edit Cashbook';
+ //$this->loadViews("income_expense_list", $this->global,$data, NULL);
+
+ }
+ function updateExpense()
{
$id1=$this->input->post('id1');
- // $myradio1= $this->input->post('myradio');
- // $option='';
- // if($myradio1==1)
- // {
+ $myradio1= $this->input->post('myradio');
+ //$myradio2= $this->input->post('myrad');
+ $option='';
+ if($myradio1==1)
+ {
$option=RECEIPT;
- // }
- // else
- // {
- // $option=PAYMENT;
- // }
-
+ }
+ else
+ {
+ $option=PAYMENT;
+ }
+ //echo $option;die();
$ans1 = $this->input->post('ans');
$Date1 = $this->input->post('Date');
-
+ //echo $Date1;
$date = date_create($Date1);//,'Y-m-d');
$date = date_format($date,'Y-m-d');
+ //echo $date;
+ //$Date1 = $this->input->post('Date');
$accountcode1 = $this->input->post('accode');
-
+ //echo $accountcode1;die();
$towhome1 = $this->input->post('towhome');
$supplier = $this->input->post('supplier');
$Invoiceno1 = $this->input->post('Invoiceno');
@@ -1456,14 +1070,17 @@ class cashbook extends BaseController
$gsttoggle = $this->input->post('gsttoggle');
$document =null;
-
+ //$document1=$this->input->post('myfile');
$fs = 0;
if(!empty($_FILES['myfile']['name']))
{
-
+ //echo "FILE AVAILABLE";
$config['file_name'] = $_FILES['myfile']['name'];
$config['upload_path'] = 'uploads/cashbook/';
$path = $config['upload_path'];
+ //$filename = $config['file_name'];
+ //$document = $path.$filename;
+ //echo $document;
$fs = $this->uploadFile();
$document = $path.$fs;
@@ -1480,200 +1097,13 @@ class cashbook extends BaseController
$document = null;
}
}
- //$updateaccount = array('type'=>$option,'account_code'=>$accountcode1,'date'=>$date,'towhom'=>$towhome1,'invoice_no'=>$Invoiceno1,'merchant'=>$merchant1,'merchant_gst'=>$Merchantgst1,'HSN'=>$hsn1,'value_before_gst'=>$valuebeforegST1,'sgst'=>$SGST1,'cgst'=>$CGST1,'igst'=>$IGST1,'total'=>$totalamount1,'description'=>$description1,'document'=>$document);
+
+
$updateaccount = array('type'=>$option,'account_code'=>$accountcode1,'date'=>$date,'towhom'=>$towhome1,'Supplier_id'=>$supplier,'invoice_no'=>$Invoiceno1,'merchant'=>$merchant1,'merchant_gst'=>$Merchantgst1,'HSN'=>$hsn1,'value_before_gst'=>$valuebeforegST1,'sgst'=>$SGST1,'cgst'=>$CGST1,'igst'=>$IGST1,'total'=>$totalamount1,'gststatus'=>(!empty($gsttoggle)?'1':'0'),'description'=>$description1,'document'=>$document);
-
- $res = $this->cashbook_model->updatedepartment($updateaccount,$id1);
- $cashbookamount=$this->cashbook_model->cashbookamount($bankid);
- $invoiceamount=$this->cashbook_model->invoiceamonut($bankid);
- $poamount=$this->cashbook_model->poamonut($bankid);
- foreach($invoiceamount as $ia)
- {
- $invam=$ia->amountreceived;
- }
- foreach($poamount as $pa)
- {
- $poamnt=$pa->amountpaid;
- }
- foreach($cashbookamount as $ca)
- {
- $cashamnt=$ca->total;
- }
- if($bankamount==$cashamnt)
- {
- $status='CLOSE';
- }
- else
- {
- $status='OPEN';
- }
- //print_r($invoiceamount);
- if($amounttype=='CREDIT')
- {
- $updatecredit=$invam+$cashamnt;
- $cashbookstatus1= array('cclearbalance'=>$updatecredit,'cstatus'=>$status);
- //print_r($cashbookstatus1);
- //die();
-
- $res1 = $this->cashbook_model->cashcreditupdate($cashbookstatus1,$bankid);
- }
-
- else
- {
- $updatedepit=$poamnt+$cashamnt;
- $cashbookstatus = array('Clearbalance'=>$updatedepit,'Status'=>$status);
- // print_r($cashbookstatus);
- //die();
- $res = $this->cashbook_model->cashbankupdate($cashbookstatus,$bankid);
-
- }
-
-
- //if( $res == 1 ){
- // echo "";
- //}
-
- echo "";
- }
-
-
-
- function updatePayment()
- {
- $id1=$this->input->post('id1');
- $count = $this->input->post('hidecounter');//hide value
- $constantcount = $this->input->post('hideconstant');//hide value
- $option=PAYMENT;
- $ans1 = $this->input->post('ans');
- $Date1 = $this->input->post('PaymentDate');
- $date = date_create($Date1);//,'Y-m-d');
- $date = date_format($date,'Y-m-d');
-
- $towhome1 = $this->input->post('PaymentPaidto');
- $supplier = $this->input->post('Paymentsupplier');
- $Invoiceno1 = $this->input->post('Paymentvouchercode');
- $merchant1 = $this->input->post('Paymentmerchant');
- $Merchantgst1 = $this->input->post('PaymentMerchantgst');
- $hsn1 = $this->input->post('Paymenthsn');
- $valuebeforegST1 = $this->input->post('PaymentvaluebeforegST');
- $SGST1 = $this->input->post('PaymentSGST');
- $CGST1 = $this->input->post('PaymentCGST');
- $IGST1 = $this->input->post('PaymentIGST');
- $totalamount1 = $this->input->post('Paymenttotalamount');
- $description1 = $this->input->post('Paymentdescription');
- $deleteflag = $this->input->post('deleteflag');
- $oldfile = $this->input->post('oldfile');
- $amounttype = $this->input->post('amounttype');
- $bankid=$this->input->post('bankid');
- $normalid=$this->input->post('normalid');
- $bankamount=$this->input->post('bankamount');
- $gsttoggle = $this->input->post('gsttoggle');
- $document =null;
-
-
- $fs = 0;
- if(!empty($_FILES['myfile']['name']))
- {
-
- $config['file_name'] = $_FILES['myfile']['name'];
- $config['upload_path'] = 'uploads/cashbook/';
- $path = $config['upload_path'];
- $fs = $this->uploadFile();
- $document = $path.$fs;
-
-
- }
- else
- {
- if($deleteflag == 0)
- {
- $document = $oldfile;
- }
- else if($deleteflag == 1)
- {
- $document = null;
- }
- }
-
- if($count == 1)
- {
-
- $array = $this->input->post('mydata1');
- if(!empty($array)){
- $array[] = $this->input->post($varname);
- $index = 0;
- foreach($array as $key=>$value){
- $index++;
- if($index == 1){
- $Paymentaccode = $value;
- }
- if($index == 2){
- $subdescription = $value;
- }
- }}
-
-
- $UpdatePayment = array('type'=>$option,'account_code'=>$Paymentaccode,'date'=>$date,'towhom'=>$towhome1,'Supplier_id'=>$supplier,'invoice_no'=>$Invoiceno1,'merchant'=>$merchant1,'merchant_gst'=>$Merchantgst1,'HSN'=>$hsn1,'value_before_gst'=>$valuebeforegST1,'sgst'=>$SGST1,'cgst'=>$CGST1,'igst'=>$IGST1,'total'=>$totalamount1,'description'=>$description1,'document'=>$document,'paymentsubdesc'=>$subdescription,'gststatus'=>(!empty($gsttoggle)?'1':'0'),'description'=>$description1,'document'=>$document);
- $res = $this->cashbook_model->updatepaymentmaster($UpdatePayment,$id1);
- $cashbookamount=$this->cashbook_model->cashbookamount($bankid);
- $invoiceamount=$this->cashbook_model->invoiceamonut($bankid);
- $poamount=$this->cashbook_model->poamonut($bankid);
- foreach($invoiceamount as $ia)
- {
- $invam=$ia->amountreceived;
- }
- foreach($poamount as $pa)
- {
- $poamnt=$pa->amountpaid;
- }
- foreach($cashbookamount as $ca)
- {
- $cashamnt=$ca->total;
- }
- if($bankamount==$cashamnt)
- {
- $status='CLOSE';
- }
- else
- {
- $status='OPEN';
- }
- //print_r($invoiceamount);
- if($amounttype=='CREDIT')
- {
- $updatecredit=$invam+$cashamnt;
- $isactive=0;
- $cashbookstatus1= array('cclearbalance'=>$updatecredit,'cstatus'=>$status,'IsActive'=>$isactive);
- //print_r($cashbookstatus1);
- //die();
-
- $res1 = $this->cashbook_model->cashcreditupdate($cashbookstatus1,$bankid);
- }
-
- else
- {
- $updatedepit=$poamnt+$cashamnt;
- $cashbookstatus = array('Clearbalance'=>$updatedepit,'Status'=>$status);
- // print_r($cashbookstatus);
- //die();
- $res = $this->cashbook_model->cashbankupdate($cashbookstatus,$bankid);
-
- }
-
-
- }
- else
- {
-
- $accountcode = '999';
- $subdescription0 = 'Multiple';
- $UpdatePayment = array('type'=>$option,'account_code'=>$accountcode,'date'=>$date,'towhom'=>$towhome1,'Supplier_id'=>$supplier,'invoice_no'=>$Invoiceno1,'merchant'=>$merchant1,'merchant_gst'=>$Merchantgst1,'HSN'=>$hsn1,'value_before_gst'=>$valuebeforegST1,'sgst'=>$SGST1,'cgst'=>$CGST1,'igst'=>$IGST1,'total'=>$totalamount1,'description'=>$description1,'document'=>$document,'paymentsubdesc'=>$subdescription0,'gststatus'=>(!empty($gsttoggle)?'1':'0'),'description'=>$description1,'document'=>$document);
- $res = $this->cashbook_model->updatepaymentmaster($UpdatePayment,$id1);
-
- $cashbookamount=$this->cashbook_model->cashbookamount($bankid);
- $invoiceamount=$this->cashbook_model->invoiceamonut($bankid);
+ $res = $this->cashbook_model->updatedepartment($updateaccount,$id1);
+ //print_r($updateaccount);die();
+ $cashbookamount=$this->cashbook_model->cashbookamount($bankid);
+ $invoiceamount=$this->cashbook_model->invoiceamonut($bankid);
$poamount=$this->cashbook_model->poamonut($bankid);
foreach($invoiceamount as $ia)
{
@@ -1710,157 +1140,71 @@ class cashbook extends BaseController
else
{
$updatedepit=$poamnt+$cashamnt;
- $cashbookstatus = array('Clearbalance'=>$updatedepit,'Status'=>$status);
+ $cashbookstatus = array('Clearbalance'=>$updatedepit,'Status'=>$status,'IsActive'=>$isactive);
// print_r($cashbookstatus);
//die();
$res = $this->cashbook_model->cashbankupdate($cashbookstatus,$bankid);
}
-
- for($i=1;$i<=$constantcount;$i++){
-
- $varname = 'mydata'.$i;
- $temp = $this->input->post($varname);
- if(!empty($temp)){
- $g[] = $this->input->post($varname);
- }
- else{}
-
- }
-
- //print_r($g); echo "
****************************";
- foreach($g as $arr){
-
- $insert = count($arr);
- //echo $insert;
-
- if($insert == 3){
-
- //print_r($arr); echo "
*********THREE insert************";
- $index = 0;
- foreach($arr as $key=>$value){
- $index++;
- // echo "*************";
- // echo $key;
- // echo $value;
- // echo "*************";
-
- if($index == 1){
- $Payment_accode = $value;
- }
- if($index == 2){
- $sub_description = $value;
- }
- if($index == 3){
- $Payment_amount = $value;
- }
-
-
- }
- if($Payment_accode != -1)
- {
-
- $addPaymentsdetails = array('Payment_id'=>$id1,'Account_code'=>$Payment_accode,'Account_description'=>$sub_description,'Amount'=>$Payment_amount);
-
-
- $child = $this->cashbook_model->addpaymentdetails($addPaymentsdetails);
-
- }
-
- }
- else if($insert == 4){
- // print_r($arr); echo "
*********FOUR update************";
- $index = 0;
- foreach($arr as $key=>$value){
- $index++;
-
- if($index == 1){
- $Paymentaccode = $value;
- }
- if($index == 2){
- $subdescription = $value;
- }
- if($index == 3){
- $Paymentamount = $value;
- }
- if($index == 4){
- $hidekey = $value;
- }
-
- }
-
- $UpdatePaymentsdetails = array('Payment_id'=>$id1,'Account_code'=>$Paymentaccode,'Account_description'=>$subdescription,'Amount'=>$Paymentamount);
-
- $child = $this->cashbook_model->updatepaymentdetails($UpdatePaymentsdetails,$hidekey);
-
-
-
- }
-
- }
-
- }
-
- echo "";
-;
+ //if( $res == 1 ){
+ echo "";
+ //}
}
-
+
public function bankdata()
{
- $this->global['pageTitle'] = $this->CompanyName.' : Bank Statement';
+ $this->global['pageTitle'] = $this->CompanyName.' : Bank Statement';
+ if ($this->input->post('btn_submit'))
+ {
+ $this->global['pageTitle'] = 'Siddharth : bankstatement';
+ $ab=$this->input->post('financialyear');
- if($this->input->post('btn_submit'))
- {
- //$this->global['pageTitle'] = $this->CompanyName.' : bankstatement';
- $ab=$this->input->post('financialyear');
-
- $fa=substr($ab,0,-5);
- $aa=substr($ab,5,5);
+ $fa=substr($ab,0,-5);
+ $aa=substr($ab,5,5);
- $fdate = $this->input->post('from_date');
- $tdate = $this->input->post('to_date');
- }
-
- $data['finyear']=$this->cashbook_model->report_finyear();
- $data['bankreport'] = $this->cashbook_model->bankstatement($fdate,$tdate,$fa,$aa);
+
+ $fdate = $this->input->post('from_date');
+ $tdate = $this->input->post('to_date');
+ }
+ $data['finyear']=$this->cashbook_model->report_finyear();
+ $data['bankreport'] = $this->cashbook_model->bankstatement($fdate,$tdate,$fa,$aa);
+
$this->loadViews("bankstatement", $this->global, $data,NULL);
}
-
-
-
public function bankdebitdata()
{
- $this->global['pageTitle'] = $this->CompanyName.' : Bank Debit Report';
+ $this->global['pageTitle'] = $this->CompanyName.' : Bank Debit Report';
if ($this->input->post('btn_submit'))
{
- $Supplierid = $this->input->post('SupplierName');
+ $SupplierName = $this->input->post('SupplierName');
$fdate = $this->input->post('from_date');
$tdate = $this->input->post('to_date');
//$data['cash'] = $_GET['sid'];
//$data['bankid'] = $_GET['d'];
- $data['bankdepit'] = $this->cashbook_model->debitbankstatemet($Supplierid,$fdate,$tdate);
+ $data['bankdepitpaid'] = $this->cashbook_model->debitbankstatemet($SupplierName,$fdate,$tdate);
+ // print_r($data['bankdepitpaid']);
}
-
+
$data['getsupplier'] = $this->cashbook_model->getsupplier();
- $this->loadViews("bankdebit",$this->global,$data,NULL);
+ $this->loadViews("bankdebit",$this->global,$data,NULL);
//die();
}
public function bankinvoice()
{
- $this->global['pageTitle'] = $this->CompanyName.' : Bank Invoice Report';
+ $this->global['pageTitle'] = $this->CompanyName.' : Bank Invoice Report';
if ($this->input->post('btn_submit'))
{
$Customer = $this->input->post('Customer');
$fdate = $this->input->post('from_date');
$tdate = $this->input->post('to_date');
$data['bankinvoicedata'] = $this->cashbook_model->bankinvoice($Customer,$fdate,$tdate);
+ // $data['bankreceivedamount']= $this->cashbook_model->receivedamount($Customer,$fdate,$tdate);
+ // print_r($data['bankreceivedamount']);
//$data['supplier'] = $this->cashbook_model->getsupplier();
}
$data['getcustomer'] = $this->cashbook_model->getcustomer();
@@ -1868,32 +1212,38 @@ class cashbook extends BaseController
$this->loadViews("bankinvoice", $this->global,$data,NULL);
}
- function IGRFilelist()
- {
- $igrno= $this->input->post('igrno');
- $pono =$this->input->post('pono');
- $igrsingle = $this->cashbook_model->igrmastersingle($igrno,$pono);
- $igrmultiple =$this->cashbook_model->igrmastermultiple($igrno,$pono);
- $data = array_merge($igrsingle,$igrmultiple);
- echo json_encode($data);
-
-
- }
+
+
+ function IGRFilelist()
+ {
+ $igrno= $this->input->post('igrno');
+ $pono =$this->input->post('pono');
+ // $igrsingle = $this->cashbook_model->igrmastersingle($igrno,$pono);
+ $igrmultiple =$this->cashbook_model->igrmastermultiple($igrno,$pono);
+ $data = array_merge($igrmultiple);
+ echo json_encode($data);
+
+
+ }
+ /*end*/
+
public function filelist()
{
- $igrno= $this->input->post('igrno');
+
+ $igrno= $this->input->post('igrno');
$pono =$this->input->post('pono');
$data = $this->cashbook_model->debitimage($igrno,$pono);
echo json_encode($data);
- }
+ }
+
public function mappingpo()
{
- $this->global['pageTitle'] = $this->CompanyName.' : Bank Report - Debited Settlements';
- $SupplierName = $this->input->post('SupplierName');
+ $this->global['pageTitle'] = $this->CompanyName.' : Bank Report - Debited Settlements';
+ $SupplierName = $this->input->post('SupplierName');
$fdate = $this->input->post('from_date');
$tdate = $this->input->post('to_date');
$bankid= $_GET['d'];
@@ -1906,7 +1256,7 @@ class cashbook extends BaseController
else
{
$data['balancetoclear'] =$_GET['balancetoclear'];
- $data['mappingcashbook']=$this->cashbook_model->mappingcash($SupplierName,$fdate,$tdate,$bankid);
+ $data['mappingcashbook']=$this->cashbook_model->mappingcashbankid($bankid);
$data['mapping'] = $this->cashbook_model->debitpolist($bankid);
$data['paidcbook'] = $this->cashbook_model->cashbookamount($bankid);
$data['paidpoamount'] = $this->cashbook_model->poamonut($bankid);
@@ -1920,41 +1270,34 @@ class cashbook extends BaseController
//$this->global['pageTitle'] = 'Siddharth : Cashbook Listing';
- $this->global['pageTitle'] = $this->CompanyName.' : Bank Report - Credited Settlements';
+ $this->global['pageTitle'] = $this->CompanyName.' : Bank Report - Credited Settlements';
$SupplierName = $this->input->post('SupplierName');
$fdate = $this->input->post('from_date');
$tdate = $this->input->post('to_date');
$bankid= $_GET['d'];
$data['clearbalance']=$_GET['cb'];
- // if($data['clearbalance']==0)
- // {
- // echo "";
- // redirect('Bankingstatement','refresh');
- // }
- // else
- // {
$data['balancetoclear']=$_GET['btc'];
- $data['mappingcashbook']=$this->cashbook_model->mappingcash($SupplierName,$fdate,$tdate,$bankid);
$data['mappingiv'] = $this->cashbook_model->creditinvoicelist($bankid);
+ //print_r($data['mappingiv']);
+ $data['invoiceramount'] = $this->cashbook_model->invoiceamonut($bankid);
+ $data['mappingcashbook']=$this->cashbook_model->mappingcashcreditbankid($bankid);
$data['paidcbook'] = $this->cashbook_model->cashbookamount($bankid);
- $data['invoiceramount'] = $this->cashbook_model->invoiceamonut($bankid);
- $data['supplier'] = $this->cashbook_model->getsupplier();
+ $data['supplier'] = $this->cashbook_model->getsupplier();
//redirect('Bankingstatement','refresh');
$this->loadViews("bankinvoicesettlement", $this->global,$data,NULL);
- //}
+
}
public function mappingdebit()
{
// $this->global['pageTitle'] = 'Siddharth : mappingdebit';
- $this->global['pageTitle'] = $this->CompanyName.' : Bank Report - Debited Details';
+ $this->global['pageTitle'] = $this->CompanyName.' : Bank Report - Debited Details';
$SupplierName = $this->input->post('SupplierName');
$fdate = $this->input->post('from_date');
$tdate = $this->input->post('to_date');
- $igrLTno = $_GET['igrLTno'];
- //$data['debitmapping'] = $this->cashbook_model->debitlistpo($SupplierName,$fdate,$tdate,$igrLTno);
- $data['debitmapping'] = $this->cashbook_model->debitlistpo($igrLTno);
+ $pono= $_GET['sid'];
+ $data['debitmapping'] = $this->cashbook_model->debitlistpo($pono);
$this->loadViews("bankposettlement", $this->global,$data,NULL);
}
@@ -1963,7 +1306,7 @@ class cashbook extends BaseController
// $this->global['pageTitle'] = 'Siddharth : mappingcredit';
- $this->global['pageTitle'] = $this->CompanyName.' : Bank Report - Credited Details ';
+ $this->global['pageTitle'] = $this->CompanyName.' : Bank Report - Credited Details ';
$SupplierName = $this->input->post('SupplierName');
$fdate = $this->input->post('from_date');
$tdate = $this->input->post('to_date');
@@ -1972,29 +1315,40 @@ class cashbook extends BaseController
$this->loadViews("bankinvoisettle", $this->global,$data,NULL);
}
-
- public function receipt()
+
+ public function receipt()
{
- $this->global['pageTitle'] = $this->CompanyName.' : Bank Report - Store Debited Details';
-
+ $this->global['pageTitle'] = $this->CompanyName.' : Bank Report - Store Debited Details';
$check = $this->input->post('check');
+ // echo 'check'.$check;
$rw = $this->input->post('rw');
+ // echo 'rw'.$rw;
$date = $this->input->post('podate');
$date = date_create($date);
$date = date_format($date,'Y-m-d');
+ $bankdate =$this->input->post('bankdate');
+ $bankdate = date_create($bankdate);//,'Y-m-d');
+ $bankdate = date_format($bankdate,'Y-m-d');
$pono = $this->input->post('pono');
$igrno=$this->input->post('igrno');
- $igrlineitem=$this->input->post('igrlineitem');
-
+
$sname = $this->input->post('sname');
+ $sid = $this->input->post('sid');
$tot = $this->input->post('tot');
+
+ //$now = date('Y-m-d H:i:s');
$rowcount = $this->input->post('rc');
+
$totalpaidamount= $this->input->post('tpv');
+ //echo 'totalpaidamount'.$totalpaidamount;
+
$bankdebitamountamount= $this->input->post('bda');
+ //echo 'bankdebitamountamount'.$bankdebitamountamount;
$bankid =$this->input->post('bi');
$alreadypaid = 0;
//echo $earlypaid;
$alreadypaid = $this->cashbook_model->getalreadypaid($bankid);
+
if(empty($alreadypaid))
{
$aPay=0;
@@ -2006,14 +1360,17 @@ class cashbook extends BaseController
$aPay = $ap->Clearbalance;
}
}
+ // echo 'apay',$apay;
if($check == 1)
{
$clearedblnce=($totalpaidamount+$aPay);
+ //echo 'clearbalance'.$clearedblnce;
+
$balancetocleared=($bankdebitamountamount-$totalpaidamount);
$check =1;
}
- //echo $balancetocleared;
+ //echo 'Balancetocleared'.$balancetocleared;
//die();
if($balancetocleared>0)
{
@@ -2024,7 +1381,7 @@ class cashbook extends BaseController
$status='CLOSE';
}
$active=1;
- $bankdata = array('Clearbalance'=>$clearedblnce,'Balancetocleared'=>$balancetocleared,'Status'=>$status);
+ $bankdata = array('Clearbalance'=>$clearedblnce,'Balancetocleared'=>$balancetocleared,'Status'=>$status,'IsActive'=>$active);
if($check == 1)
{
@@ -2032,7 +1389,7 @@ class cashbook extends BaseController
}
$earlypaid = 0;
//echo $earlypaid;
- $earlypaid = $this->cashbook_model->getearlyamount($igrlineitem);
+ $earlypaid = $this->cashbook_model->getearlyamount($igrno);
if(empty($earlypaid))
{
$ePay=0;
@@ -2044,6 +1401,7 @@ class cashbook extends BaseController
$ePay = $ep->Amountpaid;
}
}
+ //echo 'epay'.$epay;
$ip=$this->input->post('aa');
$balancetopay=($tot-($ip+$ePay));
@@ -2052,24 +1410,27 @@ class cashbook extends BaseController
$amtpaid= ($ip+$ePay);
$IsActive=1;
- $podata1 = array('Podate'=>$date,'PONO'=>$pono,'IGRNO'=>$igrno,'Suppliername'=>$sname,'Totalpoamount'=>$tot,'Amountpaid'=>$ip,'Balancetopay'=>$balancetopay,'mid'=>$bankid,'IGRLineItemNo'=>$igrlineitem,'IsActive'=>$IsActive);
- $podata = array('Podate'=>$date,'PONO'=>$pono,'IGRNO'=>$igrno,'Suppliername'=>$sname,'Totalpoamount'=>$tot,'Amountpaid'=>$amtpaid,'Balancetopay'=>$balancetopay,'mid'=>$bankid,'IGRLineItemNo'=>$igrlineitem);
+ $igrdata1 = array('Podate'=>$date,'PONO'=>$pono,'IGRNO'=>$igrno,'Suppliername'=>$sname,'SupplierID'=>$sid,'Totalpoamount'=>$tot,'Amountpaid'=>$ip,'Balancetopay'=>$balancetopay,'mid'=>$bankid,'IsActive'=>$IsActive,'BankDate'=>$bankdate);
+
+ $resultn = $this->cashbook_model->mappingpo($igrdata1);
+ //print_r($podata1);
+ $igrdata = array('Podate'=>$date,'PONO'=>$pono,'IGRNO'=>$igrno,'Suppliername'=>$sname,'SupplierID'=>$sid,'Totalpoamount'=>$tot,'Amountpaid'=>$amtpaid,'Balancetopay'=>$balancetopay,'mid'=>$bankid,'IsActive'=>$IsActive,'BankDate'=>$bankdate);
//die();
- $result3 = $this->cashbook_model->getpono($igrlineitem);
+ $result3 = $this->cashbook_model->getigrno($igrno);
- $resultn = $this->cashbook_model->mappingpo($podata1);
+
if(count($result3)<=0)
{
- $result = $this->cashbook_model->podata($podata);
+ $result = $this->cashbook_model->bankporeportdata($igrdata);
}
else
{
//echo "update";
- $result3 = $this->cashbook_model->poupdate($podata,$igrlineitem);
+ $result3 = $this->cashbook_model->bankporeportupdate($igrdata,$igrno);
}
if($rw == $rowcount)
@@ -2078,24 +1439,26 @@ class cashbook extends BaseController
}
-
+ $now = date('Y-m-d H:i:s');
if($balancetopay==0)
{
- $igrstatus=AMOUNT_PAIDIGR;
+ $igrpaidstatus=AMOUNT_PAIDIGR;
}
else
{
- $igrstatus=PARTIALLY_PAIDIGR;
+ $igrpaidstatus=PARTIALLY_PAIDIGR;
+
}
- $igrdetails=array('BankStatus'=>$igrstatus);
- $result1 = $this->cashbook_model->igrdetailstatus($igrdetails,$igrlineitem);
- //$result1 = $this->cashbook_model->poamountstatus($pomaster,$pono);
+ $igrmaster=array('Paymentstatus'=>$igrpaidstatus,'StatusUpdatedDate'=>$now);
+ //$podetails=array('Paymentstatus'=>$postatus);
+ //$result1 = $this->cashbook_model->igrdetailstatus($podetails,$pono);
+ $result1 = $this->cashbook_model->igrstatus($igrmaster,$igrno);
$this->loadViews("bankstatement", $this->global,$data, NULL);
}
public function invoiceamount1()
{
//$this->global['pageTitle'] = 'Siddharth : Cashbook Listing';
- $this->global['pageTitle'] = $this->CompanyName.' : Bank Report - Store Credited Details';
+ $this->global['pageTitle'] = $this->CompanyName.' : Bank Report - Store Credited Details';
$check = $this->input->post('check');
$rw = $this->input->post('rw');
@@ -2104,14 +1467,19 @@ class cashbook extends BaseController
$date = date_format($date,'Y-m-d');
$invid = $this->input->post('invid');
$cname = $this->input->post('cname');
+ $cid = $this->input->post('cid');
$invamount = $this->input->post('invamount');
$invoicereceived = $this->input->post('ir');
$rowcount = $this->input->post('rc');
$totalpaidamount= $this->input->post('tpv');
$bankcreditamount= $this->input->post('bda');
$invoicetext=$this->input->post('invrec');
- $bankid =$this->input->post('bi');
+ $bankid = $this->input->post('bi');
+ $bankdate =$this->input->post('bankdate');
+ $bankdate = date_create($bankdate);//,'Y-m-d');
+ $bankdate = date_format($bankdate,'Y-m-d');
$alreadyreceived = 0;
+
//echo $earlypaid;
$alreadyreceived = $this->cashbook_model->getalreadyreceived($bankid);
if(empty($alreadyreceived))
@@ -2124,6 +1492,7 @@ class cashbook extends BaseController
{
$arec = $ar->cclearbalance;
}
+
}
if($check == 1)
@@ -2135,8 +1504,7 @@ class cashbook extends BaseController
}
else
{
- //$clearedblnce=-$totalpaidamount-(-$arec);
- $clearedblnce=$totalpaidamount+$arec;
+ $clearedblnce=$totalpaidamount+$arec;
}
$balancetoreceived =($bankcreditamount-$totalpaidamount);
$check =1;
@@ -2154,8 +1522,7 @@ class cashbook extends BaseController
$active=1;
- $bankdata = array('cclearbalance'=>$clearedblnce,'cbalancetocleared'=>$balancetoreceived,'cstatus'=>$status);
-
+ $bankdata = array('cclearbalance'=>$clearedblnce,'cbalancetocleared'=>$balancetoreceived,'cstatus'=>$status,'IsActive'=>$active);
if($check == 1)
{
$res = $this->cashbook_model->bankcreditupdate($bankdata,$bankid);
@@ -2163,6 +1530,23 @@ class cashbook extends BaseController
$earlyreceived = 0;
//echo $earlypaid;
$earlyreceived = $this->cashbook_model->getearlyamountcredit($invid);
+ //$earlyreceivedmappingiv = $this->cashbook_model->getearlymappingiv($invid);//new change
+
+ // if(empty($earlyreceivedmappingiv))
+ // {
+ // $eRec1=0;
+ // }
+ // else
+ // {
+
+ // foreach($earlyreceived as $ar)
+ // {
+ // $eRec1 = $ar->amountreceived;
+ // }
+ // $updatenew=($invamount-($eRec1+$invoicetext));
+ // }
+ // echo $earlyreceivedmappingiv;
+ // die();
if(empty($earlyreceived))
{
$eRec=0;
@@ -2181,9 +1565,9 @@ class cashbook extends BaseController
$updateamount=($totalpaidamount+$eRec);
$IsActive=1;
- $invoicedata1 = array('indate'=>$date,'invoiceno'=>$invid,'customername'=>$cname,'totinvoiceamount'=>$invamount,'balancetoreceived'=>$balancetoreceived1,'amountreceived'=>$amtpaid,'bankid'=>$bankid);
+ $invoicedata1 = array('indate'=>$date,'invoiceno'=>$invid,'customername'=>$cname,'customerid'=>$cid,'totinvoiceamount'=>$invamount,'balancetoreceived'=>$balancetoreceived1,'amountreceived'=>$amtpaid,'bankid'=>$bankid,'IsActive'=>$IsActive,'BankDate'=>$bankdate);
- $invoicedata = array('indate'=>$date,'invoiceno'=>$invid,'customername'=>$cname,'totinvoiceamount'=>$invamount,'balancetoreceived'=>$balancetoreceived1,'amountreceived'=>$ip,'bankid'=>$bankid,'IsActive'=>$IsActive);
+ $invoicedata = array('indate'=>$date,'invoiceno'=>$invid,'customername'=>$cname,'customerid'=>$cid,'totinvoiceamount'=>$invamount,'balancetoreceived'=>$balancetoreceived1,'amountreceived'=>$ip,'bankid'=>$bankid,'IsActive'=>$IsActive,'BankDate'=>$bankdate);
// //print_r ($invoicedata);
// //die();
@@ -2202,6 +1586,7 @@ class cashbook extends BaseController
$result3 = $this->cashbook_model->invoiceupdate1($invoicedata1,$invid);
}
+ $now = date('Y-m-d H:i:s');
if($balancetoreceived1==0)
{
$status=AMOUNT_RECEIVED;
@@ -2211,7 +1596,7 @@ class cashbook extends BaseController
{
$status=PARTIALLY_RECEIVED;
}
- $invoicemaster= array('receivedstatus'=>$status);
+ $invoicemaster= array('receivedstatus'=>$status,'StatusUpdatedDate'=>$now);
$result1 = $this->cashbook_model->invoiceamountstatus($invoicemaster,$invid);
@@ -2221,43 +1606,569 @@ class cashbook extends BaseController
public function amountpaid()
{
+
+ $this->global['pageTitle'] = $this->CompanyName.' : Bank Report - Amount Payment Details';
+ //$suppliername= $_GET['sid'];
+ if ($this->input->post('btn_submit'))
+ {
+ $ab=$this->input->post('financialyear');
+ $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');
+ $supplierID= $this->input->post('supplier');
+ $data['supplierid']=$supplierID;
+ $suppliername= $this->input->post('suppliername');
+ $data['suppliername']=$suppliername;
+ $data['fa']=$fa;
+ $data['aa']=$aa;
+ $data['m']=$m;
+ $data['fdate']=$fdate;
+ $data['tdate']=$tdate;
+ $data['suppliername']= $suppliername;
+ $data['bankdebit'] = $this->cashbook_model->debitpolistfilter($supplierID,$fa,$aa,$m,$fdate,$tdate);
+ //print_r($data['bankdebit']);
+ }
+ else
+ {
+
+ $fa=$_GET['fa'];
+ $aa=$_GET['aa'];
+ $m=$_GET['m'];
+ $fdate=$_GET['fdate'];
+ $tdate=$_GET['tdate'];
+ $data['fa']=$fa;
+ $data['aa']=$aa;
+ $data['m']=$m;
+ $data['fdate']=$fdate;
+ $data['tdate']=$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);
+
+ }
+ public function amountpaidcashbook()
+ {
+
+
+ $this->global['pageTitle'] = $this->CompanyName.' : Bank Report - Amount Payment Details';
+ //$suppliername= $_GET['sid'];
+ if ($this->input->post('btn_submit'))
+ {
+
+ $ab=$this->input->post('financialyear');
+ $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');
+ $accountcode= $this->input->post('accountcode');
+ $data['accountcode']= $accountcode;
+ $accountname= $this->input->post('accountname');
+ $data['accountname']=$accountname;
+ $data['fa']=$fa;
+ $data['aa']=$aa;
+ $data['m']=$m;
+ $data['fdate']=$fdate;
+ $data['tdate']=$tdate;
+ $data['bankmappingcash'] = $this->cashbook_model->mappingcashfilter($accountcode,$fa,$aa,$m,$fdate,$tdate);
+
+ }
+ 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['fa']=$fa;
+ $data['aa']=$aa;
+ $data['m']=$m;
+ $data['fdate']=$fdate;
+ $data['tdate']=$tdate;
+ $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);
+
+ }
+ public function amountreceivedcashbook()
+ {
+
+
+ $this->global['pageTitle'] = $this->CompanyName.' : Bank Report - Amount Payment Details';
+ //$suppliername= $_GET['sid'];
+ if ($this->input->post('btn_submit'))
+ {
+
+ $ab=$this->input->post('financialyear');
+ $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');
+ $accountcode= $this->input->post('accountcode');
+ $data['accountcode']= $accountcode;
+ $accountname= $this->input->post('accountname');
+ $data['accountname']=$accountname;
+ $data['fa']=$fa;
+ $data['aa']=$aa;
+ $data['m']=$m;
+ $data['fdate']=$fdate;
+ $data['tdate']=$tdate;
+ $data['bankmappingcashreceived'] = $this->cashbook_model->mappingcashreceivedfilter($accountcode,$fa,$aa,$m,$fdate,$tdate);
+
+ }
+ 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['fa']=$fa;
+ $data['aa']=$aa;
+ $data['m']=$m;
+ $data['fdate']=$fdate;
+ $data['tdate']=$tdate;
+ $data['bankmappingcashreceived'] = $this->cashbook_model->mappingcashreceived($accountcode,$fa,$aa,$m,$fdate,$tdate);
+ }
+ $data['finyear']=$this->cashbook_model->report_cashbook();
+ $this->loadViews("banksettlementcredit", $this->global,$data, NULL);
+
+ }
+
+ public function amountreceivednew()
+ {
+
//$this->global['pageTitle'] = 'Siddharth : amountpaid';
- $this->global['pageTitle'] = $this->CompanyName.' : Bank Report - Amount Payment Details';
+ $this->global['pageTitle'] = $this->CompanyName.' : Bank Report - Amount Payment Details';
if ($this->input->post('btn_submit'))
{
$SupplierName = $this->input->post('SupplierName');
$fdate = $this->input->post('from_date');
$tdate = $this->input->post('to_date');
- $data['bankdebit'] = $this->cashbook_model->debitpolistfilter($SupplierName,$fdate,$tdate);
+ $data['bankreceivable'] = $this->cashbook_model->creditinvoicewisefilter($SupplierName,$fdate,$tdate);
}
- $data['amountpaid'] = $this->cashbook_model->paided();
+ else
+ {
+ $suppliername= $_GET['sid'];
+ $data['bankreceivable'] = $this->cashbook_model->creditinvoicesupplierwise($suppliername);
+ }
+
$data['supplier'] = $this->cashbook_model->getsupplier();
- $this->loadViews("bankamountpaid", $this->global,$data, NULL);
+ // $this->loadViews("bankpaidsupp", $this->global,$data, NULL);
+ $this->loadViews("bankamountreceived", $this->global,$data, NULL);
}
+ public function amountpaidsupplier()
+ {
+
+ //$this->global['pageTitle'] = 'Siddharth : amountpaid';
+ $this->global['pageTitle'] = $this->CompanyName.' : Bank Report - Amount Payment Details';
+ if ($this->input->post('btn_submit'))
+ {
+ $ab=$this->input->post('financialyear');
+ $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['ab']=$ab;
+ $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);
+ }
+ // else
+ // {
+
+ // $data['bankdebitsupp'] = $this->cashbook_model->amountpaidsupplierwise();
+
+ // $data['amountpaidcashbook']=$this->cashbook_model->amountpaidcashbook();
+
+ // }
+ $data['finyear']=$this->cashbook_model->report_amountpaid();
+ $data['supplier'] = $this->cashbook_model->getsupplier();
+ $this->loadViews("bankpaidsupp", $this->global,$data, NULL);
+ //$this->loadViews("bankamountpaid", $this->global,$data, NULL);
+
+ }
+ // function supplierledger()
+ // {
+ // $this->global['pageTitle'] = 'Siddharth : Bank Report - Amount Payment Details';
+ // //$suppliername= $_GET['sid'];
+ // if ($this->input->post('btn_submit'))
+ // {
+ // $ab=$this->input->post('financialyear');
+ // $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');
+ // $supplierID= $this->input->post('supplier');
+ // $data['supplierid']=$supplierID;
+ // $suppliername= $this->input->post('suppliername');
+ // $data['suppliername']=$suppliername;
+ // $data['fa']=$fa;
+ // $data['aa']=$aa;
+ // $data['m']=$m;
+ // $data['fdate']=$fdate;
+ // $data['tdate']=$tdate;
+ // $data['suppliername']= $suppliername;
+ // $data['bankdebit'] = $this->cashbook_model->debitpolistfilter($supplierID,$fa,$aa,$m,$fdate,$tdate);
+ // //print_r($data['bankdebit']);
+ // }
+ // else
+ // {
+
+ // $fa=$_GET['fa'];
+ // $aa=$_GET['aa'];
+ // $m=$_GET['m'];
+ // $fdate=$_GET['fdate'];
+ // $tdate=$_GET['tdate'];
+ // $data['fa']=$fa;
+ // $data['aa']=$aa;
+ // $data['m']=$m;
+ // $data['fdate']=$fdate;
+ // $data['tdate']=$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("banksupplierledger", $this->global,$data, NULL);
+
+ // }
+
+ function supplierledger()
+ {
+ $this->global['pageTitle'] = $this->CompanyName.' : Bank Report - Amount Payment Details';
+ //$suppliername= $_GET['sid'];
+ if ($this->input->post('btn_submit'))
+ {
+ $ab=$this->input->post('financialyear');
+ $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');
+ $supplierID= $this->input->post('supplier');
+ $data['supplierid']=$supplierID;
+ $suppliername= $this->input->post('SupplierName');
+ $data['suppliername']=$suppliername;
+ $data['fa']=$fa;
+ $data['aa']=$aa;
+ $data['m']=$m;
+ $data['fdate']=$fdate;
+ $data['tdate']=$tdate;
+ $data['suppliername']= $suppliername;
+ $data['supplierledger'] = $this->cashbook_model->supplierledger($suppliername,$fdate,$tdate,$fa,$aa,$m);
+ $data['openingbalancesupplier'] = $this->cashbook_model->openingbalancesupplier($customer,$fdate,$tdate,$fa,$aa,$m);
+ //print_r($data['supplierledger']);
+ }
+
+ $data['finyear']=$this->cashbook_model->report_amountpaid();
+ $data['getsupplier'] = $this->cashbook_model->getsupplier();
+ $this->loadViews("banksupplierledger", $this->global,$data, NULL);
+
+ }
+ function customerledger()
+ {
+ $this->global['pageTitle'] = $this->CompanyName.' : Bank Report - Amount Payment Details';
+ //$suppliername= $_GET['sid'];
+ if ($this->input->post('btn_submit'))
+ {
+ $ab=$this->input->post('financialyear');
+ $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');
+ $supplierID= $this->input->post('supplier');
+ $data['supplierid']=$supplierID;
+ $customer = $this->input->post('Customer');
+ $data['suppliername']=$suppliername;
+ $data['fa']=$fa;
+ $data['aa']=$aa;
+ $data['m']=$m;
+ $data['fdate']=$fdate;
+ $data['tdate']=$tdate;
+ $data['customername']= $Customer;
+ $data['customerledger'] = $this->cashbook_model->customerledger($customer,$fdate,$tdate,$fa,$aa,$m);
+ $data['openingbalance'] = $this->cashbook_model->openingbalance($customer,$fdate,$tdate,$fa,$aa,$m);
+
+ }
+
+ $data['finyear']=$this->cashbook_model->report_amountpaid();
+ $data['getcustomer'] = $this->cashbook_model->getcustomer();
+ $this->loadViews("bankcustomerledger", $this->global,$data, NULL);
+
+ }
+
+
+
+ public function amountunpaid()
+ {
+
+ $this->global['pageTitle'] = $this->CompanyName.' : Bank Debit Report';
+ if ($this->input->post('btn_submit'))
+ {
+ $ab=$this->input->post('financialyear');
+ $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['ab']= $ab;
+ $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);
+ }
+
+ $data['finyear']=$this->cashbook_model->report_finyearunpaid();
+ $data['getsupplier'] = $this->cashbook_model->getsupplier();
+ $this->loadViews("bankunpaidsupp",$this->global,$data,NULL);
+
+
+ }
+ public function supplierwise()
+ {
+ $this->global['pageTitle'] = $this->CompanyName.' : Bank Debit Report';
+
+ //$sd=$this->input->post('supplierid');
+ if ($this->input->post('btn_submit'))
+ {
+
+ $ab=$this->input->post('financialyear');
+ $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');
+ $sd= $this->input->post('supplier');
+ $data['suppliername']=$sd;
+ $data['fa']= $fa;
+ $data['aa']=$aa;
+ $data['m']=$m;
+ $data['fdate']=$fdate;
+ $data['tdate']=$tdate;
+
+ $data['bankunpaid'] = $this->cashbook_model->amountunpaidfilter($sd,$fa,$aa,$m,$fdate,$tdate);
+ }
+ else
+ {
+ $supplierid1 = $_GET['sid'];
+
+ $fa=$_GET['fa'];
+ $aa=$_GET['aa'];
+ $m=$_GET['m'];
+ $fdate=$_GET['fdate'];
+ $tdate=$_GET['tdate'];
+ $data['fa']= $fa;
+ $data['aa']=$aa;
+ $data['m']=$m;
+ $data['fdate']=$fdate;
+ $data['tdate']=$tdate;
+
+ $data['suppliername']=$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();
+ $this->loadViews("bankamountunpaid",$this->global,$data,NULL);
+ //die();
+
+
+ }
public function amountreceived()
{
// $this->load->model('cashbook_model');
//$this->global['pageTitle'] = 'Siddharth : Cashbook Listing';
- $this->global['pageTitle'] = $this->CompanyName.' : Bank Report - Received Amount Details';
+ $this->global['pageTitle'] = $this->CompanyName.' : Bank Report - Received Amount Details';
if ($this->input->post('btn_submit'))
- {
- $Customer = $this->input->post('Customer');
+ {
+
+ $ab=$this->input->post('financialyear');
+ $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['bankcredit'] = $this->cashbook_model->creditinvoicelistfilter($Customer,$fdate,$tdate);
+ $clientname = $this->input->post('customer');
+ $data['clientname']=$clientname;
+ $clientid = $this->input->post('clientid');
+ $data['clientid']=$clientid;
+ $data['fa']= $fa;
+ $data['aa']=$aa;
+ $data['m']=$m;
+ $data['fdate']=$fdate;
+ $data['tdate']=$tdate;
+ $data['amountreceived'] = $this->cashbook_model->creditinvoicelistfilter($clientid,$fdate,$tdate,$fa,$aa,$m);
}
- $data['getcustomer'] = $this->cashbook_model->getcustomer();
- $data['amountreceived'] = $this->cashbook_model->received();
+ 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['fa']= $fa;
+ $data['aa']=$aa;
+ $data['m']=$m;
+ $data['fdate']=$fdate;
+ $data['tdate']=$tdate;
+
+ $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();
$this->loadViews("bankamountreceived", $this->global,$data, NULL);
+ }
+ public function bankreceivedsupp()
+ {
+ $this->global['pageTitle'] = $this->CompanyName.' : Bank Report - Received Amount Details supplierwise';
+ if ($this->input->post('btn_submit'))
+ {
+
+ $ab=$this->input->post('financialyear');
+ $fa=substr($ab,0,-5);
+ $aa=substr($ab,5,5);
+ $m=$this->input->post('month');
+
+ //$Customer = $this->input->post('CustomerName');
+ $fdate = $this->input->post('from_date');
+ $tdate = $this->input->post('to_date');
+ $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);
+ }
+ else
+ {
+ $data['amountreceivedsupplier'] = $this->cashbook_model->creditinvoicesupplierwise();
+ $data['amountpaidcashbook']=$this->cashbook_model->amountreceivedcashbook();
+ }
+ $data['finyear']=$this->cashbook_model->report_finyearamountreceived();
+ $data['getcustomer'] = $this->cashbook_model->getcustomer();
+ $this->loadViews("bankreceivedsupp", $this->global,$data, NULL);
+
+ }
+ public function bankunreceivedsupp()
+ {
+ $this->global['pageTitle'] = $this->CompanyName.' : Bank Report - Received Amount Details supplierwise';
+ if ($this->input->post('btn_submit'))
+ {
+
+ $ab=$this->input->post('financialyear');
+
+ $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
+ {
+
+ $data['amountunreceivedsupplier'] = $this->cashbook_model->unreceivedsupplier();
+ }
+ $data['finyear']=$this->cashbook_model->report_finyearamountunreceived();
+ $data['getcustomer'] = $this->cashbook_model->getcustomer();
+ $this->loadViews("bankunreceivedsupp", $this->global,$data, NULL);
+
+ }
+ public function amountunreceived()
+ {
+
+
+ // $this->load->model('cashbook_model');
+ //$this->global['pageTitle'] = 'Siddharth : Cashbook Listing';
+ $this->global['pageTitle'] = $this->CompanyName.' : Bank Report - Received Amount Details';
+ if ($this->input->post('btn_submit'))
+ {
+ $ab=$this->input->post('financialyear');
+ $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');
+ $client =$this->input->post('client');
+ $data['client']=$client;
+ $data['fa']= $fa;
+ $data['aa']=$aa;
+ $data['m']=$m;
+ $data['fdate']=$fdate;
+ $data['tdate']=$tdate;
+ $data['amountunreceived'] = $this->cashbook_model->uncreditinvoicelistfilter($client,$fdate,$tdate,$fa,$aa,$m);
+ }
+ else
+ {
+ $fa=$_GET['fa'];
+ $aa=$_GET['aa'];
+ $m=$_GET['m'];
+ $fdate=$_GET['fdate'];
+ $tdate=$_GET['tdate'];
+ $clientname=$_GET['sid'];
+ $data['client']=$clientname;
+ $data['fa']= $fa;
+ $data['aa']=$aa;
+ $data['m']=$m;
+ $data['fdate']=$fdate;
+ $data['tdate']=$tdate;
+ $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();
+ $this->loadViews("bankamountunreceived", $this->global,$data, NULL);
+
}
public function cashbanking()
{
- $this->global['pageTitle'] = $this->CompanyName.': Bank Statement(Income and Expenses)';
+ $this->global['pageTitle'] = $this->CompanyName.' :bankcashbook';
$data['dropdownvalues'] = $this->cashbook_model->getAccounTypes();
//$data['cashbanking'] = $this->cashbook_model->newcashbook();
$data['getsupplier'] = $this->cashbook_model->getsupplier();
@@ -2270,28 +2181,36 @@ class cashbook extends BaseController
$totalamount =$this->input->post('Totalpoamount');
$Amount = $this->input->post('paidamount');
+
$id=$this->input->post('mappingid');
- $igrno = $this->input->post('IGRItemNo');
+
+ $igrno = $this->input->post('igrno');
+ $pono = $this->input->post('pono');
$Bankid = $this->input->post('bankid');
$balancetoclear=$this->input->post('balancetobankingclear');
$clearedbalance=$this->input->post('clearbalance');
$updateamount=$clearedbalance-$Amount;
$updatebalancetoclear=$Amount+$balancetoclear;
- $data['$bankmappingamount'] = $this->cashbook_model->gettotalbankmappingpo($igrno);
+ $data['$bankmappingamount'] = $this->cashbook_model->gettotalbankmappingpo($id);
$amountpaid=$data['$bankmappingamount'][0]->Amountpaid;
+ $data['$bankmappingamountcount'] = $this->cashbook_model->gettotalbankmappingpocount($igrno);
+ $count= $data['$bankmappingamountcount'][0]->countAmountpaid;
//$data['$totallineitemamount']=$this->cashbook_model->gettotallineitem($igrno);
- if($amountpaid==$totalamount)
+ if($count==1)
{
- $BankStatus=NO_PAIDIGR;
+ $PaymentStatus=NO_PAIDIGR;
}
else
{
- $BankStatus=PARTIALLY_PAIDIGR;
+ $PaymentStatus=PARTIALLY_PAIDIGR;
}
+
+
- $result= $this->cashbook_model->IgrDetailsStatusUpdate($igrno,$BankStatus);
- $result1= $this->cashbook_model->deletemapping($Bankid,$updateamount,$updatebalancetoclear);
+ $result= $this->cashbook_model->IGRStatusUpdate($igrno,$PaymentStatus);
+ $Status=OPEN;
+ $result1= $this->cashbook_model->deletemapping($Bankid,$updateamount,$updatebalancetoclear,$Status);
//for update mapping amount in t_bankmappingpo table//
$balancetopay=$this->input->post('balancetopay');
$totalbalancetopay=$Amount+$balancetopay;
@@ -2299,67 +2218,83 @@ class cashbook extends BaseController
//$updateamount=0;
$IsActive=0;
$result2= $this->cashbook_model->deleteBankmappingpo($id,$IsActive);
- //for update mapping amount inT_Bankporeport table//
- //die();
- $result3= $this->cashbook_model->updateBankporeportpo($igrno,$totalbalancetopay,$updatebankpoamount,$Bankid);
+ $data['$poreportamount'] = $this->cashbook_model->gettotalbankpoamount($igrno);
+ $amountpaidpo= $data['$poreportamount'][0]->Amountpaid;
+ $balancetopaypo= $data['$poreportamount'][0]->Balancetopay;
+ $amountpaidupdate=($amountpaidpo) - ($Amount);
+ $balancetopayupdate=($balancetopaypo) + ($Amount);
+ if($amountpaidupdate==0)
+ {
+ $IsAct=0;
+ }
+ else
+ {
+ $IsAct=1;
+ }
+ $result3= $this->cashbook_model->updateBankporeport($igrno,$balancetopayupdate,$amountpaidupdate,$IsAct);
$this->loadViews("bankstatement", $this->global,$data, NULL);
}
- public function Deletemappingpo()
+public function Deletemappingpo()
{
- $totalamount = $_GET['totalpoamount'];
+ $totalamount = $_GET['totalpoamount'];//totalpoamount
$Bankid = $_GET['bankid'];
- $Amount = $_GET['amount'];
+ $Amount = $_GET['amount'];//paid amount
$igrno = $_GET['igrno'];
$balancetoclear=$_GET['balancetoclear'];
//for T_Bankreport IsActive//
$bankdebit=$_GET['debit'];
$mapped= $Amount+$balancetoclear;
- if( $bankdebit==$mapped)
- {
- //$active=0;
- }
- else
- {
- //$active=1;
- }
- /////////////////
$id=$_GET['id'];
-
$bankamount=$_GET['bankamount'];
$updateamount=$bankamount-$Amount;
$updatebalancetoclear=$Amount+$balancetoclear;
- $data['$bankmappingamount'] = $this->cashbook_model->gettotalbankmappingpo($igrno);
+ $data['$bankmappingamount'] = $this->cashbook_model->gettotalbankmappingpo($id);
$amountpaid=$data['$bankmappingamount'][0]->Amountpaid;
- //if($Amount==)
-
- //$data['$totallineitemamount']=$this->cashbook_model->gettotallineitem($igrno);
-
+ $data['$bankmappingamountcount'] = $this->cashbook_model->gettotalbankmappingpocount($igrno);
+ $count= $data['$bankmappingamountcount'][0]->countAmountpaid;
+
- if($amountpaid==$totalamount)
+ if($count==1)
{
- $BankStatus=NO_PAIDIGR;
+ $PaymentStatus=NO_PAIDIGR;
}
else
{
- $BankStatus=PARTIALLY_PAIDIGR;
+ $PaymentStatus=PARTIALLY_PAIDIGR;
}
+
- $result= $this->cashbook_model->IgrDetailsStatusUpdate($igrno,$BankStatus);
- $result1= $this->cashbook_model->deletemapping($Bankid,$updateamount,$updatebalancetoclear);
-
- //for update mapping amount in t_bankmappingpo table//
- $balancetopay=$_GET['balancetopay'];
+ $result= $this->cashbook_model->IGRStatusUpdate($igrno,$PaymentStatus);
+ $Status=OPEN;
+ $result1= $this->cashbook_model->deletemapping($Bankid,$updateamount,$updatebalancetoclear,$Status);
+ //for update mapping amount in t_bankreport table//
+ $balancetopay=$_GET['balancetopay'];//balancetopay
$totalbalancetopay=$Amount + $balancetopay;
$IsActive=0;
$updatebankpoamount=$totalamount-$totalbalancetopay;
$result2= $this->cashbook_model->deleteBankmappingpo($id,$IsActive);
- //for update mapping amount inT_Bankporeport table//
- $result3= $this->cashbook_model->updateBankporeportpo($igrno,$totalbalancetopay,$updatebankpoamount,$Bankid);
+ //$result3= $this->cashbook_model->updatemappingamount($igrno,$amountpaid);
+ $data['$poreportamount'] = $this->cashbook_model->gettotalbankpoamount($igrno);
+ $amountpaidpo= $data['$poreportamount'][0]->Amountpaid;
+ $balancetopay= $data['$poreportamount'][0]->Balancetopay;
+ $amountpaidupdate=$amountpaidpo-$Amount;
+ $balancetopayupdate=$balancetopay+$Amount;
+
+ //die();
+ if($amountpaidupdate==0)
+ {
+ $IsAct=0;
+ }
+ else
+ {
+ $IsAct=1;
+ }
+
+ $result3= $this->cashbook_model->updateBankporeport($igrno,$balancetopayupdate,$amountpaidupdate,$IsAct);
-
- if(count($result2)>0)
+ if(count($result3)>0)
{
redirect('Bankingstatement','refresh');
}
@@ -2368,60 +2303,83 @@ class cashbook extends BaseController
public function deletemappingiv()
{
- $this->global['pageTitle'] = $this->CompanyName.' : Bank Report - Delete Mapping Invoice';
+ $this->global['pageTitle'] = $this->CompanyName.' : Bank Report - Delete Mapping Invoice';
$credit= $this->input->post('credit');
$invoiceno = $this->input->post('invoiceno');
$bankid = $this->input->post('bankid');
$mappingid=$this->input->post('mappingid');
+
$amountreceived = $this->input->post('amountreceived');
$bankingclear = $this->input->post('bankingclear');
$bankingbalclear = $this->input->post('bankingbalclear');
$totinvoiceamount = $this->input->post('totinvoiceamount');
$balancetoreceived = $this->input->post('balancetoreceived');
+
$updatebalancetoclear=$amountreceived+$bankingbalclear;
+
if($amountreceived<0)
{
- //$updateclearbalance=$bankingclear+$amountreceived;
$updateclearbalance=$bankingclear-($amountreceived);//450-(-250)
}
else
{
- $updateclearbalance=$bankingclear-$amountreceived;//450-650
- //$updateclearbalance=$bankingclear-$amountreceived;
+ $updateclearbalance=$bankingclear-$amountreceived;//450-650
}
+
+
//update Isactive field in T_Bankreport //////
$mapped=$balancetoreceived+$amountreceived;
- if($credit==$mapped)
- {
- $active=0;
- }
- else
- {
- $active=1;
- }
- $bankstatement=array('cbalancetocleared'=>$updatebalancetoclear,'cclearbalance'=>$updateclearbalance,'IsActive'=>$active);
+ // if($credit==$mapped)
+ // {
+ $CStatus=OPEN;
+ // }
+ // else
+ // {
+ // $active=1;
+ // }
+ $bankstatement=array('cbalancetocleared'=>$updatebalancetoclear,'cclearbalance'=>$updateclearbalance,'cstatus'=>$CStatus);
$result1= $this->cashbook_model->updatebankreportiv($bankid,$bankstatement);
- if($totinvoiceamount==$amountreceived)
- {
- $receivedstatus=NO_RECEIVED;
- }
- else
- {
- $receivedstatus=PARTIALLY_RECEIVED;
- }
- $IsActive=0;
- //$data['$latestamount'] = $this->cashbook_model->getlatestamount($invoiceno);
- //print_r($data['$latestamount']);
- //die();
- //$balancetoreceived1=$data['$latestamount'][0]->balancetoreceived;
- $updatebalancetoreceived=$balancetoreceived+$amountreceived;
- $updateamountreceived=$totinvoiceamount-$updatebalancetoreceived;
- $result3= $this->cashbook_model->updatebankinvoicereport($invoiceno,$bankid,$updatebalancetoreceived,$updateamountreceived);
+
+
+
+
+ $data['$invoicereportamount'] = $this->cashbook_model->gettotalbankreceivedamount($invoiceno);
+ $amountreceivedinvoice= $data['$invoicereportamount'][0]->amountreceived;
+ $$balancetoreceived= $data['$invoicereportamount'][0]->balancetoreceived;
+ $amountreceivedupdate=$amountreceivedinvoice-$amountreceived;
+ $balancetoreceivedupdate=$balancetoreceived+$amountreceived;
+ if($amountreceivedupdate==0)
+ {
+ $IsAct=0;
+ }
+ else
+ {
+ $IsAct=1;
+ }
+
+ // $updatebalancetoreceived=$balancetoreceived+$amountreceived;
+ // $updateamountreceived=$totinvoiceamount-$updatebalancetoreceived;
+ $result3= $this->cashbook_model->updatebankinvoicereport($invoiceno,$balancetoreceivedupdate,$amountreceivedupdate,$IsAct);
+ $IsActive=0;
if(count($result3)>0)
{
+ $data['$bankreceivedamountcount'] = $this->cashbook_model->gettotalbankmappinginvoicecount($invoiceno);
+ $counting= $data['$bankreceivedamountcount'][0]->countamountreceived;
+ if($counting==1)
+ {
+ $receivedstatus=NO_RECEIVED;
+ }
+ else
+ {
+ $receivedstatus=PARTIALLY_RECEIVED;
+ }
$result1=$this->cashbook_model->UpdateIpinvoiceStatus($invoiceno,$receivedstatus);
$result2= $this->cashbook_model->deletemappinginvoice($mappingid,$IsActive);
+ // if(count($result2)>0)
+ // {
+ // $result4= $this->cashbook_model->updatemappinginvoice($invoiceno,$amountreceived);
+ // }
}
$this->loadViews("bankstatement", $this->global,$data, NULL);
@@ -2431,7 +2389,6 @@ class cashbook extends BaseController
// }
}
-
public function Deletemappingcashbook()
{
$bankamount=$_GET['bankamount'];
@@ -2472,145 +2429,103 @@ class cashbook extends BaseController
if(count($result1)>0)
{
// $this->loadViews("Bankingstatement", $this->global,$result1, NULL);
- //echo "";
+ // echo "";
redirect('Bankingstatement','refresh');
}
- }
-
+ }
- /**
- * To covert number into words
- */
+
public function convertNumber($amt){
-
- $ShowPaise='0';
- $totalAmt=explode(".",$amt);
- $number = $totalAmt[0];
- $no = $number;
-
- if(!empty($totalAmt[1]) && $totalAmt[1]!=0){
- $point = $totalAmt[1];
- $ShowPaise='1';
- }
- else{
- $point=0;
- $ShowPaise='0';
- }
+ //echo $amt;die();
+$ShowPaise='0';
+$totalAmt=explode(".",$amt);
- $hundred = null;
- $digits_1 = strlen($no);
+$number = $totalAmt[0];
+ $no = $number;
+
+if(!empty($totalAmt[1]) && $totalAmt[1]!=0){
+$point = $totalAmt[1];
+ $ShowPaise='1';
+}
+ else{
+$point=0;
+ $ShowPaise='0';
+}
+
+
+ $hundred = null;
+ $digits_1 = strlen($no);
$i = 0;
$str = array();
$words = array('0' => '', '1' => 'One', '2' => 'Two',
- '3' => 'three', '4' => 'Four', '5' => 'Five', '6' => 'Six',
- '7' => 'seven', '8' => 'eight', '9' => 'nine',
- '10' => 'ten', '11' => 'eleven', '12' => 'twelve',
- '13' => 'thirteen', '14' => 'fourteen',
- '15' => 'fifteen', '16' => 'sixteen', '17' => 'seventeen',
- '18' => 'eighteen', '19' =>'nineteen', '20' => 'twenty',
- '30' => 'thirty', '40' => 'fourty', '50' => 'fifty',
- '60' => 'sixty', '70' => 'seventy',
- '80' => 'eighty', '90' => 'ninety','06'=>'Zero Six','01'=>'Zero One','02'=>'Zero Two'
- ,'03'=>'Zero Three','04'=>'Zero Four','05'=>'Zero Five','07'=>'Zero Seven','08'=>'Zero Eight','09'=>'Zero Nine');
-
- $words1 = array('2' => 'twenty',
- '3' => 'thirty', '4' => 'fourty',
- '5' => 'fifty', '6' => 'sixty', '7' => 'seventy',
- '8' => 'eighty', '9' =>'ninety');
-
- $words12 = array('11' => 'eleven',
- '12' => 'twelve', '13' => 'thirteen', '14' => 'fourteen',
- '15' => 'fifteen', '16' => 'sixteen', '17' => 'seventeen',
- '18' => 'eighteen', '19' =>'nineteen', '20' => 'twenty',);
-
- $digits = array('', 'hundred', 'thousand', 'lakh', 'crore');
-
- while ($i < $digits_1) {
+ '3' => 'three', '4' => 'Four', '5' => 'Five', '6' => 'Six',
+ '7' => 'seven', '8' => 'eight', '9' => 'nine',
+ '10' => 'ten', '11' => 'eleven', '12' => 'twelve',
+ '13' => 'thirteen', '14' => 'fourteen',
+ '15' => 'fifteen', '16' => 'sixteen', '17' => 'seventeen',
+ '18' => 'eighteen', '19' =>'nineteen', '20' => 'twenty',
+ '30' => 'thirty', '40' => 'forty', '50' => 'fifty',
+ '60' => 'sixty', '70' => 'seventy',
+ '80' => 'eighty', '90' => 'ninety','06'=>'Zero Six','01'=>'Zero One','02'=>'Zero Two'
+ ,'03'=>'Zero Three','04'=>'Zero Four','05'=>'Zero Five','07'=>'Zero Seven','08'=>'Zero Eight','09'=>'Zero Nine');
+ $words1 = array('2' => 'twenty',
+ '3' => 'thirty', '4' => 'fourty',
+ '5' => 'fifty', '6' => 'sixty', '7' => 'seventy',
+ '8' => 'eighty', '9' =>'ninty');
+ $words12 = array('11' => 'eleven',
+ '12' => 'twelve', '13' => 'thirteen', '14' => 'fourteen',
+ '15' => 'fifteen', '16' => 'sixteen', '17' => 'seventeen',
+ '18' => 'eighteen', '19' =>'nineteen', '20' => 'twenty',);
+ $digits = array('', 'hundred', 'thousand', 'lakh', 'crore');
+ while ($i < $digits_1) {
$divider = ($i == 2) ? 10 : 100;
$number = floor($no % $divider);
$no = floor($no / $divider);
$i += ($divider == 10) ? 1 : 2;
- if ($number) {
- $plural = (($counter = count($str)) && $number > 1) ? 's' : null;
- $hundred = ($counter == 1 && $str[0]) ? ' and ' : null;
- $str [] = ($number < 21) ?
- $words[$number] . " " . $digits[$counter] . $plural . " " . $hundred:
- $words[floor($number / 10) * 10]. " " . $words[$number % 10] . " ". $digits[$counter] . $plural . " " . $hundred;
- }
- else $str[] = null;
-
- }
- $str = array_reverse($str);
- $result = implode('', $str);
- if($point>=1 && $point<=10)
- {
- $points = ($point) ? " " . $words[$point] : " ";
- }
- else if($point>=11 && $point<=20)
- {
- $points = ($point) ? " " . $words12[$point] : " ";
- }
- else
- {
- $points = ($point) ? " " . $words1[$point / 10] . " " . $words[$point = $point % 10] : '';
- }
-
- if($ShowPaise=='0'){
- $amountInWords = "Rupees " . $result." Only";
- }
- else{
-
- $amountInWords = "Rupees " . $result ." Paise ". $points." Only";
- }
-
- return $amountInWords;
- }
-
- /**
- *To get Payment Datas form ajax
- */
- function ViewPaymentDetails()
- {
-
- $paymentid= $this->input->post('id');
- $data = $this->cashbook_model->viewpaymentdetails($paymentid);
- echo json_encode($data);
-
- }
-
- public function addNewSupplierCash()
- {
- $this->load->model('supplier_model');
- $suppliername = $this->input->post('suppliername');
- $contact = $this->input->post('contact');
- $alternatecont = $this->input->post('alternatecont');
- $email = $this->input->post('email');
- $Address = $this->input->post('Address');
-
- $suparray = array('suppliername'=>$suppliername,'Address'=>$Address,'ContactNumber'=>$contact,'AlternateContactNumber'=>$alternatecont,'EmailAddress'=>$email );
-
- $result = $this->supplier_model->addNewsupplier($suparray);
- if($result > 0)
- {
-
- echo "New Supplier Created successfully!";
- redirect('addnewIncomeExpense','refresh');
- }
-
- else
- {
-
- echo "Supplier Record Not Created!";
- redirect('addnewIncomeExpense','refresh');
- }
+ if ($number) {
+ $plural = (($counter = count($str)) && $number > 1) ? 's' : null;
+ //print_r($plural);
+ $hundred = ($counter == 1 && $str[0]) ? ' and ' : null;
+ //print_r($hundred);
+ $str [] = ($number < 21) ? $words[$number] .
+ " " . $digits[$counter] . $plural . " " . $hundred
+ :
+ $words[floor($number / 10) * 10]
+ . " " . $words[$number % 10] . " "
+ . $digits[$counter] . $plural . " " . $hundred;
+ } else $str[] = null;
+ }
+ $str = array_reverse($str);
+ $result = implode('', $str);
+ if($point>=1 && $point<=10)
+ {
+ $points = ($point) ?
+ " " . $words[$point] : " ";
+ }
+ else if($point>=11 && $point<=20)
+ {
+ $points = ($point) ?
+ " " . $words12[$point] : " ";
+ }
+ else
+ {
+ $points = ($point) ?
+ " " . $words1[$point / 10] . " " .
+ $words[$point = $point % 10] : '';
}
+if($ShowPaise=='0'){
-public function getAllSupplier()
- {
- $suplist = $this->cashbook_model->getsupplier();
- echo json_encode($suplist);
+$amountInWords = "Rupees " . $result." Only";
+}
+else{
+
+$amountInWords = "Rupees " . $result ." Paise ". $points." Only";
+}
+
+
+ return $amountInWords;
}
}
diff --git a/application/logs/log-2019-01-04.php b/application/logs/log-2019-01-04.php
new file mode 100644
index 00000000..b49b5cd2
--- /dev/null
+++ b/application/logs/log-2019-01-04.php
@@ -0,0 +1,1555 @@
+
+
+ERROR - 2019-01-04 10:14:01 --> Severity: Notice --> Undefined variable: filename C:\xampp\htdocs\ria\application\controllers\cashbook.php 236
+ERROR - 2019-01-04 10:14:02 --> The upload path does not appear to be valid.
+ERROR - 2019-01-04 10:14:05 --> Severity: Warning --> DOMDocument::loadHTML(): htmlParseStartTag: invalid element name in Entity, line: 13 C:\xampp\htdocs\ria\application\third_party\PHPExcel\Reader\HTML.php 495
+ERROR - 2019-01-04 10:14:05 --> Severity: Warning --> DOMDocument::loadHTML(): ID shLink already defined in Entity, line: 16 C:\xampp\htdocs\ria\application\third_party\PHPExcel\Reader\HTML.php 495
+ERROR - 2019-01-04 10:14:05 --> Severity: Warning --> DOMDocument::loadHTML(): Unexpected end tag : frameset in Entity, line: 57 C:\xampp\htdocs\ria\application\third_party\PHPExcel\Reader\HTML.php 495
+ERROR - 2019-01-04 10:14:05 --> Severity: Warning --> DOMDocument::loadHTML(): Unexpected end tag : frameset in Entity, line: 57 C:\xampp\htdocs\ria\application\third_party\PHPExcel\Reader\HTML.php 495
+ERROR - 2019-01-04 10:14:05 --> Severity: Warning --> DOMDocument::loadHTML(): Unexpected end tag : style in Entity, line: 72 C:\xampp\htdocs\ria\application\third_party\PHPExcel\Reader\HTML.php 495
+ERROR - 2019-01-04 10:14:05 --> Severity: Warning --> DOMDocument::loadHTML(): htmlParseStartTag: misplaced <body> tag in Entity, line: 73 C:\xampp\htdocs\ria\application\third_party\PHPExcel\Reader\HTML.php 495
+ERROR - 2019-01-04 10:14:05 --> Severity: Warning --> DOMDocument::loadHTML(): ID tdScroll already defined in Entity, line: 77 C:\xampp\htdocs\ria\application\third_party\PHPExcel\Reader\HTML.php 495
+ERROR - 2019-01-04 10:14:05 --> Severity: Warning --> DOMDocument::loadHTML(): htmlParseEntityRef: expecting ';' in Entity, line: 77 C:\xampp\htdocs\ria\application\third_party\PHPExcel\Reader\HTML.php 495
+ERROR - 2019-01-04 10:14:05 --> Severity: Warning --> DOMDocument::loadHTML(): ID tdScroll already defined in Entity, line: 78 C:\xampp\htdocs\ria\application\third_party\PHPExcel\Reader\HTML.php 495
+ERROR - 2019-01-04 10:14:05 --> Severity: Warning --> DOMDocument::loadHTML(): htmlParseEntityRef: expecting ';' in Entity, line: 78 C:\xampp\htdocs\ria\application\third_party\PHPExcel\Reader\HTML.php 495
+ERROR - 2019-01-04 10:14:05 --> Severity: Warning --> DOMDocument::loadHTML(): ID tdScroll already defined in Entity, line: 79 C:\xampp\htdocs\ria\application\third_party\PHPExcel\Reader\HTML.php 495
+ERROR - 2019-01-04 10:14:05 --> Severity: Warning --> DOMDocument::loadHTML(): htmlParseStartTag: misplaced <html> tag in Entity, line: 89 C:\xampp\htdocs\ria\application\third_party\PHPExcel\Reader\HTML.php 495
+ERROR - 2019-01-04 10:14:05 --> Severity: Warning --> DOMDocument::loadHTML(): error parsing attribute name in Entity, line: 99 C:\xampp\htdocs\ria\application\third_party\PHPExcel\Reader\HTML.php 495
+ERROR - 2019-01-04 10:14:05 --> Severity: Warning --> DOMDocument::loadHTML(): error parsing attribute name in Entity, line: 100 C:\xampp\htdocs\ria\application\third_party\PHPExcel\Reader\HTML.php 495
+ERROR - 2019-01-04 10:14:05 --> Severity: Warning --> DOMDocument::loadHTML(): Tag icellcount invalid in Entity, line: 100 C:\xampp\htdocs\ria\application\third_party\PHPExcel\Reader\HTML.php 495
+ERROR - 2019-01-04 10:14:05 --> Severity: Warning --> DOMDocument::loadHTML(): htmlParseStartTag: invalid element name in Entity, line: 103 C:\xampp\htdocs\ria\application\third_party\PHPExcel\Reader\HTML.php 495
+ERROR - 2019-01-04 10:14:05 --> Severity: Warning --> DOMDocument::loadHTML(): error parsing attribute name in Entity, line: 111 C:\xampp\htdocs\ria\application\third_party\PHPExcel\Reader\HTML.php 495
+ERROR - 2019-01-04 10:14:05 --> Severity: Warning --> DOMDocument::loadHTML(): error parsing attribute name in Entity, line: 112 C:\xampp\htdocs\ria\application\third_party\PHPExcel\Reader\HTML.php 495
+ERROR - 2019-01-04 10:14:06 --> Severity: Warning --> DOMDocument::loadHTML(): Tag icellcount invalid in Entity, line: 112 C:\xampp\htdocs\ria\application\third_party\PHPExcel\Reader\HTML.php 495
+ERROR - 2019-01-04 10:14:06 --> Severity: Warning --> DOMDocument::loadHTML(): Unexpected end tag : td in Entity, line: 112 C:\xampp\htdocs\ria\application\third_party\PHPExcel\Reader\HTML.php 495
+ERROR - 2019-01-04 10:14:06 --> Severity: Warning --> DOMDocument::loadHTML(): error parsing attribute name in Entity, line: 114 C:\xampp\htdocs\ria\application\third_party\PHPExcel\Reader\HTML.php 495
+ERROR - 2019-01-04 10:14:06 --> Severity: Warning --> DOMDocument::loadHTML(): error parsing attribute name in Entity, line: 114 C:\xampp\htdocs\ria\application\third_party\PHPExcel\Reader\HTML.php 495
+ERROR - 2019-01-04 10:14:06 --> Severity: Warning --> DOMDocument::loadHTML(): error parsing attribute name in Entity, line: 115 C:\xampp\htdocs\ria\application\third_party\PHPExcel\Reader\HTML.php 495
+ERROR - 2019-01-04 10:14:06 --> Severity: Warning --> DOMDocument::loadHTML(): Tag c_ltabs invalid in Entity, line: 115 C:\xampp\htdocs\ria\application\third_party\PHPExcel\Reader\HTML.php 495
+ERROR - 2019-01-04 10:14:06 --> Severity: Warning --> DOMDocument::loadHTML(): Unexpected end tag : td in Entity, line: 115 C:\xampp\htdocs\ria\application\third_party\PHPExcel\Reader\HTML.php 495
+ERROR - 2019-01-04 10:14:06 --> Severity: Warning --> DOMDocument::loadHTML(): ID tdTab already defined in Entity, line: 120 C:\xampp\htdocs\ria\application\third_party\PHPExcel\Reader\HTML.php 495
+ERROR - 2019-01-04 10:14:06 --> Severity: Warning --> DOMDocument::loadHTML(): ID aTab already defined in Entity, line: 120 C:\xampp\htdocs\ria\application\third_party\PHPExcel\Reader\HTML.php 495
+ERROR - 2019-01-04 10:14:06 --> Severity: Warning --> DOMDocument::loadHTML(): error parsing attribute name in Entity, line: 122 C:\xampp\htdocs\ria\application\third_party\PHPExcel\Reader\HTML.php 495
+ERROR - 2019-01-04 10:14:06 --> Severity: Warning --> DOMDocument::loadHTML(): error parsing attribute name in Entity, line: 123 C:\xampp\htdocs\ria\application\third_party\PHPExcel\Reader\HTML.php 495
+ERROR - 2019-01-04 10:14:06 --> Severity: Warning --> DOMDocument::loadHTML(): Tag c_ltabs invalid in Entity, line: 123 C:\xampp\htdocs\ria\application\third_party\PHPExcel\Reader\HTML.php 495
+ERROR - 2019-01-04 10:14:06 --> Severity: Warning --> DOMDocument::loadHTML(): Unexpected end tag : td in Entity, line: 123 C:\xampp\htdocs\ria\application\third_party\PHPExcel\Reader\HTML.php 495
+ERROR - 2019-01-04 10:14:06 --> Severity: Warning --> DOMDocument::loadHTML(): error parsing attribute name in Entity, line: 126 C:\xampp\htdocs\ria\application\third_party\PHPExcel\Reader\HTML.php 495
+ERROR - 2019-01-04 10:14:06 --> Severity: Warning --> DOMDocument::loadHTML(): error parsing attribute name in Entity, line: 127 C:\xampp\htdocs\ria\application\third_party\PHPExcel\Reader\HTML.php 495
+ERROR - 2019-01-04 10:14:06 --> Severity: Warning --> DOMDocument::loadHTML(): Tag icellcount invalid in Entity, line: 127 C:\xampp\htdocs\ria\application\third_party\PHPExcel\Reader\HTML.php 495
+ERROR - 2019-01-04 10:14:06 --> Severity: Warning --> DOMDocument::loadHTML(): Unexpected end tag : td in Entity, line: 127 C:\xampp\htdocs\ria\application\third_party\PHPExcel\Reader\HTML.php 495
+ERROR - 2019-01-04 10:14:06 --> Severity: Warning --> DOMDocument::loadHTML(): error parsing attribute name in Entity, line: 129 C:\xampp\htdocs\ria\application\third_party\PHPExcel\Reader\HTML.php 495
+ERROR - 2019-01-04 10:14:06 --> Severity: Warning --> DOMDocument::loadHTML(): error parsing attribute name in Entity, line: 130 C:\xampp\htdocs\ria\application\third_party\PHPExcel\Reader\HTML.php 495
+ERROR - 2019-01-04 10:14:06 --> Severity: Warning --> DOMDocument::loadHTML(): Tag c_ltabs invalid in Entity, line: 130 C:\xampp\htdocs\ria\application\third_party\PHPExcel\Reader\HTML.php 495
+ERROR - 2019-01-04 10:14:06 --> Severity: Warning --> DOMDocument::loadHTML(): Unexpected end tag : td in Entity, line: 130 C:\xampp\htdocs\ria\application\third_party\PHPExcel\Reader\HTML.php 495
+ERROR - 2019-01-04 10:14:06 --> Severity: Warning --> DOMDocument::loadHTML(): Unexpected end tag : tr in Entity, line: 134 C:\xampp\htdocs\ria\application\third_party\PHPExcel\Reader\HTML.php 495
+ERROR - 2019-01-04 10:14:06 --> Severity: Warning --> DOMDocument::loadHTML(): htmlParseStartTag: invalid element name in Entity, line: 150 C:\xampp\htdocs\ria\application\third_party\PHPExcel\Reader\HTML.php 495
+ERROR - 2019-01-04 10:14:06 --> Severity: Warning --> DOMDocument::loadHTML(): error parsing attribute name in Entity, line: 168 C:\xampp\htdocs\ria\application\third_party\PHPExcel\Reader\HTML.php 495
+ERROR - 2019-01-04 10:14:06 --> Severity: Warning --> DOMDocument::loadHTML(): error parsing attribute name in Entity, line: 169 C:\xampp\htdocs\ria\application\third_party\PHPExcel\Reader\HTML.php 495
+ERROR - 2019-01-04 10:14:06 --> Severity: Warning --> DOMDocument::loadHTML(): error parsing attribute name in Entity, line: 171 C:\xampp\htdocs\ria\application\third_party\PHPExcel\Reader\HTML.php 495
+ERROR - 2019-01-04 10:14:06 --> Severity: Warning --> DOMDocument::loadHTML(): error parsing attribute name in Entity, line: 172 C:\xampp\htdocs\ria\application\third_party\PHPExcel\Reader\HTML.php 495
+ERROR - 2019-01-04 10:14:06 --> Severity: Warning --> DOMDocument::loadHTML(): error parsing attribute name in Entity, line: 172 C:\xampp\htdocs\ria\application\third_party\PHPExcel\Reader\HTML.php 495
+ERROR - 2019-01-04 10:14:06 --> Severity: Warning --> DOMDocument::loadHTML(): Attribute if redefined in Entity, line: 173 C:\xampp\htdocs\ria\application\third_party\PHPExcel\Reader\HTML.php 495
+ERROR - 2019-01-04 10:14:06 --> Severity: Warning --> DOMDocument::loadHTML(): error parsing attribute name in Entity, line: 173 C:\xampp\htdocs\ria\application\third_party\PHPExcel\Reader\HTML.php 495
+ERROR - 2019-01-04 10:14:06 --> Severity: Warning --> DOMDocument::loadHTML(): Tag c_ltabs invalid in Entity, line: 173 C:\xampp\htdocs\ria\application\third_party\PHPExcel\Reader\HTML.php 495
+ERROR - 2019-01-04 10:14:07 --> Severity: Warning --> DOMDocument::loadHTML(): error parsing attribute name in Entity, line: 174 C:\xampp\htdocs\ria\application\third_party\PHPExcel\Reader\HTML.php 495
+ERROR - 2019-01-04 10:14:07 --> Severity: Warning --> DOMDocument::loadHTML(): error parsing attribute name in Entity, line: 175 C:\xampp\htdocs\ria\application\third_party\PHPExcel\Reader\HTML.php 495
+ERROR - 2019-01-04 10:14:07 --> Severity: Warning --> DOMDocument::loadHTML(): error parsing attribute name in Entity, line: 177 C:\xampp\htdocs\ria\application\third_party\PHPExcel\Reader\HTML.php 495
+ERROR - 2019-01-04 10:14:07 --> Severity: Warning --> DOMDocument::loadHTML(): error parsing attribute name in Entity, line: 178 C:\xampp\htdocs\ria\application\third_party\PHPExcel\Reader\HTML.php 495
+ERROR - 2019-01-04 10:14:07 --> Severity: Warning --> DOMDocument::loadHTML(): error parsing attribute name in Entity, line: 179 C:\xampp\htdocs\ria\application\third_party\PHPExcel\Reader\HTML.php 495
+ERROR - 2019-01-04 10:14:07 --> Severity: Warning --> DOMDocument::loadHTML(): Attribute inexttab redefined in Entity, line: 180 C:\xampp\htdocs\ria\application\third_party\PHPExcel\Reader\HTML.php 495
+ERROR - 2019-01-04 10:14:07 --> Severity: Warning --> DOMDocument::loadHTML(): error parsing attribute name in Entity, line: 180 C:\xampp\htdocs\ria\application\third_party\PHPExcel\Reader\HTML.php 495
+ERROR - 2019-01-04 10:14:07 --> Severity: Warning --> DOMDocument::loadHTML(): error parsing attribute name in Entity, line: 181 C:\xampp\htdocs\ria\application\third_party\PHPExcel\Reader\HTML.php 495
+ERROR - 2019-01-04 10:14:07 --> Severity: Warning --> DOMDocument::loadHTML(): error parsing attribute name in Entity, line: 183 C:\xampp\htdocs\ria\application\third_party\PHPExcel\Reader\HTML.php 495
+ERROR - 2019-01-04 10:14:07 --> Severity: Warning --> DOMDocument::loadHTML(): error parsing attribute name in Entity, line: 184 C:\xampp\htdocs\ria\application\third_party\PHPExcel\Reader\HTML.php 495
+ERROR - 2019-01-04 10:14:07 --> Severity: Warning --> DOMDocument::loadHTML(): Attribute inexttab redefined in Entity, line: 185 C:\xampp\htdocs\ria\application\third_party\PHPExcel\Reader\HTML.php 495
+ERROR - 2019-01-04 10:14:07 --> Severity: Warning --> DOMDocument::loadHTML(): Attribute if redefined in Entity, line: 187 C:\xampp\htdocs\ria\application\third_party\PHPExcel\Reader\HTML.php 495
+ERROR - 2019-01-04 10:14:07 --> Severity: Warning --> DOMDocument::loadHTML(): error parsing attribute name in Entity, line: 187 C:\xampp\htdocs\ria\application\third_party\PHPExcel\Reader\HTML.php 495
+ERROR - 2019-01-04 10:14:07 --> Severity: Warning --> DOMDocument::loadHTML(): Tag c_ltabs invalid in Entity, line: 187 C:\xampp\htdocs\ria\application\third_party\PHPExcel\Reader\HTML.php 495
+ERROR - 2019-01-04 10:14:07 --> Severity: Warning --> DOMDocument::loadHTML(): htmlParseStartTag: invalid element name in Entity, line: 210 C:\xampp\htdocs\ria\application\third_party\PHPExcel\Reader\HTML.php 495
+ERROR - 2019-01-04 10:14:07 --> Severity: Warning --> DOMDocument::loadHTML(): htmlParseEntityRef: no name in Entity, line: 214 C:\xampp\htdocs\ria\application\third_party\PHPExcel\Reader\HTML.php 495
+ERROR - 2019-01-04 10:14:07 --> Severity: Warning --> DOMDocument::loadHTML(): htmlParseEntityRef: no name in Entity, line: 214 C:\xampp\htdocs\ria\application\third_party\PHPExcel\Reader\HTML.php 495
+ERROR - 2019-01-04 10:14:07 --> Severity: Warning --> DOMDocument::loadHTML(): htmlParseStartTag: invalid element name in Entity, line: 214 C:\xampp\htdocs\ria\application\third_party\PHPExcel\Reader\HTML.php 495
+ERROR - 2019-01-04 10:14:07 --> Severity: Warning --> DOMDocument::loadHTML(): htmlParseEntityRef: no name in Entity, line: 271 C:\xampp\htdocs\ria\application\third_party\PHPExcel\Reader\HTML.php 495
+ERROR - 2019-01-04 10:14:07 --> Severity: Warning --> DOMDocument::loadHTML(): htmlParseEntityRef: no name in Entity, line: 271 C:\xampp\htdocs\ria\application\third_party\PHPExcel\Reader\HTML.php 495
+ERROR - 2019-01-04 10:14:07 --> Severity: Warning --> DOMDocument::loadHTML(): htmlParseEntityRef: no name in Entity, line: 272 C:\xampp\htdocs\ria\application\third_party\PHPExcel\Reader\HTML.php 495
+ERROR - 2019-01-04 10:14:07 --> Severity: Warning --> DOMDocument::loadHTML(): htmlParseEntityRef: no name in Entity, line: 272 C:\xampp\htdocs\ria\application\third_party\PHPExcel\Reader\HTML.php 495
+ERROR - 2019-01-04 10:14:07 --> Severity: Warning --> DOMDocument::loadHTML(): Unexpected end tag : script in Entity, line: 296 C:\xampp\htdocs\ria\application\third_party\PHPExcel\Reader\HTML.php 495
+ERROR - 2019-01-04 10:14:07 --> Severity: Warning --> DOMDocument::loadHTML(): htmlParseStartTag: invalid element name in Entity, line: 297 C:\xampp\htdocs\ria\application\third_party\PHPExcel\Reader\HTML.php 495
+ERROR - 2019-01-04 10:14:07 --> Severity: Warning --> DOMDocument::loadHTML(): Unexpected end tag : head in Entity, line: 316 C:\xampp\htdocs\ria\application\third_party\PHPExcel\Reader\HTML.php 495
+ERROR - 2019-01-04 10:14:16 --> Severity: Notice --> Undefined variable: fdate C:\xampp\htdocs\ria\application\controllers\cashbook.php 1829
+ERROR - 2019-01-04 10:14:16 --> Severity: Notice --> Undefined variable: tdate C:\xampp\htdocs\ria\application\controllers\cashbook.php 1829
+ERROR - 2019-01-04 10:14:16 --> Severity: Notice --> Undefined variable: fa C:\xampp\htdocs\ria\application\controllers\cashbook.php 1829
+ERROR - 2019-01-04 10:14:16 --> Severity: Notice --> Undefined variable: aa C:\xampp\htdocs\ria\application\controllers\cashbook.php 1829
+ERROR - 2019-01-04 10:14:17 --> Severity: Notice --> Undefined variable: financialyear C:\xampp\htdocs\ria\application\views\bankstatement.php 2
+ERROR - 2019-01-04 10:14:17 --> Severity: Warning --> Invalid argument supplied for foreach() C:\xampp\htdocs\ria\application\views\bankstatement.php 2
+ERROR - 2019-01-04 10:14:17 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 87
+ERROR - 2019-01-04 10:14:17 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 87
+ERROR - 2019-01-04 10:14:17 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 88
+ERROR - 2019-01-04 10:14:17 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 88
+ERROR - 2019-01-04 10:14:17 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 89
+ERROR - 2019-01-04 10:14:17 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 89
+ERROR - 2019-01-04 10:14:17 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 139
+ERROR - 2019-01-04 10:14:17 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 139
+ERROR - 2019-01-04 10:14:17 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 140
+ERROR - 2019-01-04 10:14:17 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 140
+ERROR - 2019-01-04 10:14:17 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 141
+ERROR - 2019-01-04 10:14:18 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 141
+ERROR - 2019-01-04 10:14:38 --> Severity: Notice --> Undefined variable: creditdebit C:\xampp\htdocs\ria\application\views\bankingfile.php 132
+ERROR - 2019-01-04 10:15:08 --> Severity: Notice --> Undefined variable: filename C:\xampp\htdocs\ria\application\controllers\cashbook.php 236
+ERROR - 2019-01-04 10:15:08 --> The upload path does not appear to be valid.
+ERROR - 2019-01-04 10:15:08 --> Severity: Warning --> DOMDocument::loadHTML(): htmlParseStartTag: invalid element name in Entity, line: 13 C:\xampp\htdocs\ria\application\third_party\PHPExcel\Reader\HTML.php 495
+ERROR - 2019-01-04 10:15:08 --> Severity: Warning --> DOMDocument::loadHTML(): ID shLink already defined in Entity, line: 16 C:\xampp\htdocs\ria\application\third_party\PHPExcel\Reader\HTML.php 495
+ERROR - 2019-01-04 10:15:08 --> Severity: Warning --> DOMDocument::loadHTML(): Unexpected end tag : frameset in Entity, line: 57 C:\xampp\htdocs\ria\application\third_party\PHPExcel\Reader\HTML.php 495
+ERROR - 2019-01-04 10:15:08 --> Severity: Warning --> DOMDocument::loadHTML(): Unexpected end tag : frameset in Entity, line: 57 C:\xampp\htdocs\ria\application\third_party\PHPExcel\Reader\HTML.php 495
+ERROR - 2019-01-04 10:15:08 --> Severity: Warning --> DOMDocument::loadHTML(): Unexpected end tag : style in Entity, line: 72 C:\xampp\htdocs\ria\application\third_party\PHPExcel\Reader\HTML.php 495
+ERROR - 2019-01-04 10:15:08 --> Severity: Warning --> DOMDocument::loadHTML(): htmlParseStartTag: misplaced <body> tag in Entity, line: 73 C:\xampp\htdocs\ria\application\third_party\PHPExcel\Reader\HTML.php 495
+ERROR - 2019-01-04 10:15:08 --> Severity: Warning --> DOMDocument::loadHTML(): ID tdScroll already defined in Entity, line: 77 C:\xampp\htdocs\ria\application\third_party\PHPExcel\Reader\HTML.php 495
+ERROR - 2019-01-04 10:15:08 --> Severity: Warning --> DOMDocument::loadHTML(): htmlParseEntityRef: expecting ';' in Entity, line: 77 C:\xampp\htdocs\ria\application\third_party\PHPExcel\Reader\HTML.php 495
+ERROR - 2019-01-04 10:15:08 --> Severity: Warning --> DOMDocument::loadHTML(): ID tdScroll already defined in Entity, line: 78 C:\xampp\htdocs\ria\application\third_party\PHPExcel\Reader\HTML.php 495
+ERROR - 2019-01-04 10:15:08 --> Severity: Warning --> DOMDocument::loadHTML(): htmlParseEntityRef: expecting ';' in Entity, line: 78 C:\xampp\htdocs\ria\application\third_party\PHPExcel\Reader\HTML.php 495
+ERROR - 2019-01-04 10:15:08 --> Severity: Warning --> DOMDocument::loadHTML(): ID tdScroll already defined in Entity, line: 79 C:\xampp\htdocs\ria\application\third_party\PHPExcel\Reader\HTML.php 495
+ERROR - 2019-01-04 10:15:08 --> Severity: Warning --> DOMDocument::loadHTML(): htmlParseStartTag: misplaced <html> tag in Entity, line: 89 C:\xampp\htdocs\ria\application\third_party\PHPExcel\Reader\HTML.php 495
+ERROR - 2019-01-04 10:15:08 --> Severity: Warning --> DOMDocument::loadHTML(): error parsing attribute name in Entity, line: 99 C:\xampp\htdocs\ria\application\third_party\PHPExcel\Reader\HTML.php 495
+ERROR - 2019-01-04 10:15:08 --> Severity: Warning --> DOMDocument::loadHTML(): error parsing attribute name in Entity, line: 100 C:\xampp\htdocs\ria\application\third_party\PHPExcel\Reader\HTML.php 495
+ERROR - 2019-01-04 10:15:09 --> Severity: Warning --> DOMDocument::loadHTML(): Tag icellcount invalid in Entity, line: 100 C:\xampp\htdocs\ria\application\third_party\PHPExcel\Reader\HTML.php 495
+ERROR - 2019-01-04 10:15:09 --> Severity: Warning --> DOMDocument::loadHTML(): htmlParseStartTag: invalid element name in Entity, line: 103 C:\xampp\htdocs\ria\application\third_party\PHPExcel\Reader\HTML.php 495
+ERROR - 2019-01-04 10:15:09 --> Severity: Warning --> DOMDocument::loadHTML(): error parsing attribute name in Entity, line: 111 C:\xampp\htdocs\ria\application\third_party\PHPExcel\Reader\HTML.php 495
+ERROR - 2019-01-04 10:15:09 --> Severity: Warning --> DOMDocument::loadHTML(): error parsing attribute name in Entity, line: 112 C:\xampp\htdocs\ria\application\third_party\PHPExcel\Reader\HTML.php 495
+ERROR - 2019-01-04 10:15:09 --> Severity: Warning --> DOMDocument::loadHTML(): Tag icellcount invalid in Entity, line: 112 C:\xampp\htdocs\ria\application\third_party\PHPExcel\Reader\HTML.php 495
+ERROR - 2019-01-04 10:15:09 --> Severity: Warning --> DOMDocument::loadHTML(): Unexpected end tag : td in Entity, line: 112 C:\xampp\htdocs\ria\application\third_party\PHPExcel\Reader\HTML.php 495
+ERROR - 2019-01-04 10:15:09 --> Severity: Warning --> DOMDocument::loadHTML(): error parsing attribute name in Entity, line: 114 C:\xampp\htdocs\ria\application\third_party\PHPExcel\Reader\HTML.php 495
+ERROR - 2019-01-04 10:15:09 --> Severity: Warning --> DOMDocument::loadHTML(): error parsing attribute name in Entity, line: 114 C:\xampp\htdocs\ria\application\third_party\PHPExcel\Reader\HTML.php 495
+ERROR - 2019-01-04 10:15:09 --> Severity: Warning --> DOMDocument::loadHTML(): error parsing attribute name in Entity, line: 115 C:\xampp\htdocs\ria\application\third_party\PHPExcel\Reader\HTML.php 495
+ERROR - 2019-01-04 10:15:09 --> Severity: Warning --> DOMDocument::loadHTML(): Tag c_ltabs invalid in Entity, line: 115 C:\xampp\htdocs\ria\application\third_party\PHPExcel\Reader\HTML.php 495
+ERROR - 2019-01-04 10:15:09 --> Severity: Warning --> DOMDocument::loadHTML(): Unexpected end tag : td in Entity, line: 115 C:\xampp\htdocs\ria\application\third_party\PHPExcel\Reader\HTML.php 495
+ERROR - 2019-01-04 10:15:09 --> Severity: Warning --> DOMDocument::loadHTML(): ID tdTab already defined in Entity, line: 120 C:\xampp\htdocs\ria\application\third_party\PHPExcel\Reader\HTML.php 495
+ERROR - 2019-01-04 10:15:09 --> Severity: Warning --> DOMDocument::loadHTML(): ID aTab already defined in Entity, line: 120 C:\xampp\htdocs\ria\application\third_party\PHPExcel\Reader\HTML.php 495
+ERROR - 2019-01-04 10:15:10 --> Severity: Warning --> DOMDocument::loadHTML(): error parsing attribute name in Entity, line: 122 C:\xampp\htdocs\ria\application\third_party\PHPExcel\Reader\HTML.php 495
+ERROR - 2019-01-04 10:15:10 --> Severity: Warning --> DOMDocument::loadHTML(): error parsing attribute name in Entity, line: 123 C:\xampp\htdocs\ria\application\third_party\PHPExcel\Reader\HTML.php 495
+ERROR - 2019-01-04 10:15:10 --> Severity: Warning --> DOMDocument::loadHTML(): Tag c_ltabs invalid in Entity, line: 123 C:\xampp\htdocs\ria\application\third_party\PHPExcel\Reader\HTML.php 495
+ERROR - 2019-01-04 10:15:10 --> Severity: Warning --> DOMDocument::loadHTML(): Unexpected end tag : td in Entity, line: 123 C:\xampp\htdocs\ria\application\third_party\PHPExcel\Reader\HTML.php 495
+ERROR - 2019-01-04 10:15:10 --> Severity: Warning --> DOMDocument::loadHTML(): error parsing attribute name in Entity, line: 126 C:\xampp\htdocs\ria\application\third_party\PHPExcel\Reader\HTML.php 495
+ERROR - 2019-01-04 10:15:10 --> Severity: Warning --> DOMDocument::loadHTML(): error parsing attribute name in Entity, line: 127 C:\xampp\htdocs\ria\application\third_party\PHPExcel\Reader\HTML.php 495
+ERROR - 2019-01-04 10:15:10 --> Severity: Warning --> DOMDocument::loadHTML(): Tag icellcount invalid in Entity, line: 127 C:\xampp\htdocs\ria\application\third_party\PHPExcel\Reader\HTML.php 495
+ERROR - 2019-01-04 10:15:10 --> Severity: Warning --> DOMDocument::loadHTML(): Unexpected end tag : td in Entity, line: 127 C:\xampp\htdocs\ria\application\third_party\PHPExcel\Reader\HTML.php 495
+ERROR - 2019-01-04 10:15:10 --> Severity: Warning --> DOMDocument::loadHTML(): error parsing attribute name in Entity, line: 129 C:\xampp\htdocs\ria\application\third_party\PHPExcel\Reader\HTML.php 495
+ERROR - 2019-01-04 10:15:10 --> Severity: Warning --> DOMDocument::loadHTML(): error parsing attribute name in Entity, line: 130 C:\xampp\htdocs\ria\application\third_party\PHPExcel\Reader\HTML.php 495
+ERROR - 2019-01-04 10:15:10 --> Severity: Warning --> DOMDocument::loadHTML(): Tag c_ltabs invalid in Entity, line: 130 C:\xampp\htdocs\ria\application\third_party\PHPExcel\Reader\HTML.php 495
+ERROR - 2019-01-04 10:15:10 --> Severity: Warning --> DOMDocument::loadHTML(): Unexpected end tag : td in Entity, line: 130 C:\xampp\htdocs\ria\application\third_party\PHPExcel\Reader\HTML.php 495
+ERROR - 2019-01-04 10:15:10 --> Severity: Warning --> DOMDocument::loadHTML(): Unexpected end tag : tr in Entity, line: 134 C:\xampp\htdocs\ria\application\third_party\PHPExcel\Reader\HTML.php 495
+ERROR - 2019-01-04 10:15:10 --> Severity: Warning --> DOMDocument::loadHTML(): htmlParseStartTag: invalid element name in Entity, line: 150 C:\xampp\htdocs\ria\application\third_party\PHPExcel\Reader\HTML.php 495
+ERROR - 2019-01-04 10:15:10 --> Severity: Warning --> DOMDocument::loadHTML(): error parsing attribute name in Entity, line: 168 C:\xampp\htdocs\ria\application\third_party\PHPExcel\Reader\HTML.php 495
+ERROR - 2019-01-04 10:15:10 --> Severity: Warning --> DOMDocument::loadHTML(): error parsing attribute name in Entity, line: 169 C:\xampp\htdocs\ria\application\third_party\PHPExcel\Reader\HTML.php 495
+ERROR - 2019-01-04 10:15:10 --> Severity: Warning --> DOMDocument::loadHTML(): error parsing attribute name in Entity, line: 171 C:\xampp\htdocs\ria\application\third_party\PHPExcel\Reader\HTML.php 495
+ERROR - 2019-01-04 10:15:11 --> Severity: Warning --> DOMDocument::loadHTML(): error parsing attribute name in Entity, line: 172 C:\xampp\htdocs\ria\application\third_party\PHPExcel\Reader\HTML.php 495
+ERROR - 2019-01-04 10:15:11 --> Severity: Warning --> DOMDocument::loadHTML(): error parsing attribute name in Entity, line: 172 C:\xampp\htdocs\ria\application\third_party\PHPExcel\Reader\HTML.php 495
+ERROR - 2019-01-04 10:15:11 --> Severity: Warning --> DOMDocument::loadHTML(): Attribute if redefined in Entity, line: 173 C:\xampp\htdocs\ria\application\third_party\PHPExcel\Reader\HTML.php 495
+ERROR - 2019-01-04 10:15:11 --> Severity: Warning --> DOMDocument::loadHTML(): error parsing attribute name in Entity, line: 173 C:\xampp\htdocs\ria\application\third_party\PHPExcel\Reader\HTML.php 495
+ERROR - 2019-01-04 10:15:11 --> Severity: Warning --> DOMDocument::loadHTML(): Tag c_ltabs invalid in Entity, line: 173 C:\xampp\htdocs\ria\application\third_party\PHPExcel\Reader\HTML.php 495
+ERROR - 2019-01-04 10:15:11 --> Severity: Warning --> DOMDocument::loadHTML(): error parsing attribute name in Entity, line: 174 C:\xampp\htdocs\ria\application\third_party\PHPExcel\Reader\HTML.php 495
+ERROR - 2019-01-04 10:15:11 --> Severity: Warning --> DOMDocument::loadHTML(): error parsing attribute name in Entity, line: 175 C:\xampp\htdocs\ria\application\third_party\PHPExcel\Reader\HTML.php 495
+ERROR - 2019-01-04 10:15:11 --> Severity: Warning --> DOMDocument::loadHTML(): error parsing attribute name in Entity, line: 177 C:\xampp\htdocs\ria\application\third_party\PHPExcel\Reader\HTML.php 495
+ERROR - 2019-01-04 10:15:11 --> Severity: Warning --> DOMDocument::loadHTML(): error parsing attribute name in Entity, line: 178 C:\xampp\htdocs\ria\application\third_party\PHPExcel\Reader\HTML.php 495
+ERROR - 2019-01-04 10:15:11 --> Severity: Warning --> DOMDocument::loadHTML(): error parsing attribute name in Entity, line: 179 C:\xampp\htdocs\ria\application\third_party\PHPExcel\Reader\HTML.php 495
+ERROR - 2019-01-04 10:15:11 --> Severity: Warning --> DOMDocument::loadHTML(): Attribute inexttab redefined in Entity, line: 180 C:\xampp\htdocs\ria\application\third_party\PHPExcel\Reader\HTML.php 495
+ERROR - 2019-01-04 10:15:11 --> Severity: Warning --> DOMDocument::loadHTML(): error parsing attribute name in Entity, line: 180 C:\xampp\htdocs\ria\application\third_party\PHPExcel\Reader\HTML.php 495
+ERROR - 2019-01-04 10:15:11 --> Severity: Warning --> DOMDocument::loadHTML(): error parsing attribute name in Entity, line: 181 C:\xampp\htdocs\ria\application\third_party\PHPExcel\Reader\HTML.php 495
+ERROR - 2019-01-04 10:15:11 --> Severity: Warning --> DOMDocument::loadHTML(): error parsing attribute name in Entity, line: 183 C:\xampp\htdocs\ria\application\third_party\PHPExcel\Reader\HTML.php 495
+ERROR - 2019-01-04 10:15:11 --> Severity: Warning --> DOMDocument::loadHTML(): error parsing attribute name in Entity, line: 184 C:\xampp\htdocs\ria\application\third_party\PHPExcel\Reader\HTML.php 495
+ERROR - 2019-01-04 10:15:11 --> Severity: Warning --> DOMDocument::loadHTML(): Attribute inexttab redefined in Entity, line: 185 C:\xampp\htdocs\ria\application\third_party\PHPExcel\Reader\HTML.php 495
+ERROR - 2019-01-04 10:15:11 --> Severity: Warning --> DOMDocument::loadHTML(): Attribute if redefined in Entity, line: 187 C:\xampp\htdocs\ria\application\third_party\PHPExcel\Reader\HTML.php 495
+ERROR - 2019-01-04 10:15:11 --> Severity: Warning --> DOMDocument::loadHTML(): error parsing attribute name in Entity, line: 187 C:\xampp\htdocs\ria\application\third_party\PHPExcel\Reader\HTML.php 495
+ERROR - 2019-01-04 10:15:11 --> Severity: Warning --> DOMDocument::loadHTML(): Tag c_ltabs invalid in Entity, line: 187 C:\xampp\htdocs\ria\application\third_party\PHPExcel\Reader\HTML.php 495
+ERROR - 2019-01-04 10:15:11 --> Severity: Warning --> DOMDocument::loadHTML(): htmlParseStartTag: invalid element name in Entity, line: 210 C:\xampp\htdocs\ria\application\third_party\PHPExcel\Reader\HTML.php 495
+ERROR - 2019-01-04 10:15:11 --> Severity: Warning --> DOMDocument::loadHTML(): htmlParseEntityRef: no name in Entity, line: 214 C:\xampp\htdocs\ria\application\third_party\PHPExcel\Reader\HTML.php 495
+ERROR - 2019-01-04 10:15:11 --> Severity: Warning --> DOMDocument::loadHTML(): htmlParseEntityRef: no name in Entity, line: 214 C:\xampp\htdocs\ria\application\third_party\PHPExcel\Reader\HTML.php 495
+ERROR - 2019-01-04 10:15:11 --> Severity: Warning --> DOMDocument::loadHTML(): htmlParseStartTag: invalid element name in Entity, line: 214 C:\xampp\htdocs\ria\application\third_party\PHPExcel\Reader\HTML.php 495
+ERROR - 2019-01-04 10:15:11 --> Severity: Warning --> DOMDocument::loadHTML(): htmlParseEntityRef: no name in Entity, line: 271 C:\xampp\htdocs\ria\application\third_party\PHPExcel\Reader\HTML.php 495
+ERROR - 2019-01-04 10:15:11 --> Severity: Warning --> DOMDocument::loadHTML(): htmlParseEntityRef: no name in Entity, line: 271 C:\xampp\htdocs\ria\application\third_party\PHPExcel\Reader\HTML.php 495
+ERROR - 2019-01-04 10:15:11 --> Severity: Warning --> DOMDocument::loadHTML(): htmlParseEntityRef: no name in Entity, line: 272 C:\xampp\htdocs\ria\application\third_party\PHPExcel\Reader\HTML.php 495
+ERROR - 2019-01-04 10:15:11 --> Severity: Warning --> DOMDocument::loadHTML(): htmlParseEntityRef: no name in Entity, line: 272 C:\xampp\htdocs\ria\application\third_party\PHPExcel\Reader\HTML.php 495
+ERROR - 2019-01-04 10:15:12 --> Severity: Warning --> DOMDocument::loadHTML(): Unexpected end tag : script in Entity, line: 296 C:\xampp\htdocs\ria\application\third_party\PHPExcel\Reader\HTML.php 495
+ERROR - 2019-01-04 10:15:12 --> Severity: Warning --> DOMDocument::loadHTML(): htmlParseStartTag: invalid element name in Entity, line: 297 C:\xampp\htdocs\ria\application\third_party\PHPExcel\Reader\HTML.php 495
+ERROR - 2019-01-04 10:15:12 --> Severity: Warning --> DOMDocument::loadHTML(): Unexpected end tag : head in Entity, line: 316 C:\xampp\htdocs\ria\application\third_party\PHPExcel\Reader\HTML.php 495
+ERROR - 2019-01-04 10:15:18 --> Severity: Notice --> Undefined variable: fdate C:\xampp\htdocs\ria\application\controllers\cashbook.php 1829
+ERROR - 2019-01-04 10:15:18 --> Severity: Notice --> Undefined variable: tdate C:\xampp\htdocs\ria\application\controllers\cashbook.php 1829
+ERROR - 2019-01-04 10:15:18 --> Severity: Notice --> Undefined variable: fa C:\xampp\htdocs\ria\application\controllers\cashbook.php 1829
+ERROR - 2019-01-04 10:15:18 --> Severity: Notice --> Undefined variable: aa C:\xampp\htdocs\ria\application\controllers\cashbook.php 1829
+ERROR - 2019-01-04 10:15:18 --> Severity: Notice --> Undefined variable: financialyear C:\xampp\htdocs\ria\application\views\bankstatement.php 2
+ERROR - 2019-01-04 10:15:18 --> Severity: Warning --> Invalid argument supplied for foreach() C:\xampp\htdocs\ria\application\views\bankstatement.php 2
+ERROR - 2019-01-04 10:15:18 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 87
+ERROR - 2019-01-04 10:15:18 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 87
+ERROR - 2019-01-04 10:15:18 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 88
+ERROR - 2019-01-04 10:15:18 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 88
+ERROR - 2019-01-04 10:15:19 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 89
+ERROR - 2019-01-04 10:15:19 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 89
+ERROR - 2019-01-04 10:15:19 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 139
+ERROR - 2019-01-04 10:15:19 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 139
+ERROR - 2019-01-04 10:15:19 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 140
+ERROR - 2019-01-04 10:15:19 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 140
+ERROR - 2019-01-04 10:15:19 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 141
+ERROR - 2019-01-04 10:15:19 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 141
+ERROR - 2019-01-04 10:16:24 --> Severity: Notice --> Undefined variable: fdate C:\xampp\htdocs\ria\application\controllers\cashbook.php 1829
+ERROR - 2019-01-04 10:16:24 --> Severity: Notice --> Undefined variable: tdate C:\xampp\htdocs\ria\application\controllers\cashbook.php 1829
+ERROR - 2019-01-04 10:16:24 --> Severity: Notice --> Undefined variable: fa C:\xampp\htdocs\ria\application\controllers\cashbook.php 1829
+ERROR - 2019-01-04 10:16:24 --> Severity: Notice --> Undefined variable: aa C:\xampp\htdocs\ria\application\controllers\cashbook.php 1829
+ERROR - 2019-01-04 10:16:24 --> Severity: Notice --> Undefined variable: financialyear C:\xampp\htdocs\ria\application\views\bankstatement.php 2
+ERROR - 2019-01-04 10:16:24 --> Severity: Warning --> Invalid argument supplied for foreach() C:\xampp\htdocs\ria\application\views\bankstatement.php 2
+ERROR - 2019-01-04 10:16:24 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 87
+ERROR - 2019-01-04 10:16:24 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 87
+ERROR - 2019-01-04 10:16:24 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 88
+ERROR - 2019-01-04 10:16:24 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 88
+ERROR - 2019-01-04 10:16:24 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 89
+ERROR - 2019-01-04 10:16:24 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 89
+ERROR - 2019-01-04 10:16:24 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 139
+ERROR - 2019-01-04 10:16:24 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 139
+ERROR - 2019-01-04 10:16:24 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 140
+ERROR - 2019-01-04 10:16:24 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 140
+ERROR - 2019-01-04 10:16:24 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 141
+ERROR - 2019-01-04 10:16:24 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 141
+ERROR - 2019-01-04 10:16:24 --> Severity: Notice --> Undefined variable: Bankname C:\xampp\htdocs\ria\application\views\bankstatement.php 237
+ERROR - 2019-01-04 10:16:34 --> Severity: Notice --> Undefined variable: creditdebit C:\xampp\htdocs\ria\application\views\bankingfile.php 132
+ERROR - 2019-01-04 10:17:03 --> Severity: Notice --> Undefined variable: filename C:\xampp\htdocs\ria\application\controllers\cashbook.php 236
+ERROR - 2019-01-04 10:17:03 --> The upload path does not appear to be valid.
+ERROR - 2019-01-04 10:17:04 --> Severity: Warning --> DOMDocument::loadHTML(): htmlParseStartTag: invalid element name in Entity, line: 13 C:\xampp\htdocs\ria\application\third_party\PHPExcel\Reader\HTML.php 495
+ERROR - 2019-01-04 10:17:04 --> Severity: Warning --> DOMDocument::loadHTML(): ID shLink already defined in Entity, line: 16 C:\xampp\htdocs\ria\application\third_party\PHPExcel\Reader\HTML.php 495
+ERROR - 2019-01-04 10:17:04 --> Severity: Warning --> DOMDocument::loadHTML(): Unexpected end tag : frameset in Entity, line: 57 C:\xampp\htdocs\ria\application\third_party\PHPExcel\Reader\HTML.php 495
+ERROR - 2019-01-04 10:17:04 --> Severity: Warning --> DOMDocument::loadHTML(): Unexpected end tag : frameset in Entity, line: 57 C:\xampp\htdocs\ria\application\third_party\PHPExcel\Reader\HTML.php 495
+ERROR - 2019-01-04 10:17:04 --> Severity: Warning --> DOMDocument::loadHTML(): Unexpected end tag : style in Entity, line: 72 C:\xampp\htdocs\ria\application\third_party\PHPExcel\Reader\HTML.php 495
+ERROR - 2019-01-04 10:17:04 --> Severity: Warning --> DOMDocument::loadHTML(): htmlParseStartTag: misplaced <body> tag in Entity, line: 73 C:\xampp\htdocs\ria\application\third_party\PHPExcel\Reader\HTML.php 495
+ERROR - 2019-01-04 10:17:04 --> Severity: Warning --> DOMDocument::loadHTML(): ID tdScroll already defined in Entity, line: 77 C:\xampp\htdocs\ria\application\third_party\PHPExcel\Reader\HTML.php 495
+ERROR - 2019-01-04 10:17:04 --> Severity: Warning --> DOMDocument::loadHTML(): htmlParseEntityRef: expecting ';' in Entity, line: 77 C:\xampp\htdocs\ria\application\third_party\PHPExcel\Reader\HTML.php 495
+ERROR - 2019-01-04 10:17:04 --> Severity: Warning --> DOMDocument::loadHTML(): ID tdScroll already defined in Entity, line: 78 C:\xampp\htdocs\ria\application\third_party\PHPExcel\Reader\HTML.php 495
+ERROR - 2019-01-04 10:17:04 --> Severity: Warning --> DOMDocument::loadHTML(): htmlParseEntityRef: expecting ';' in Entity, line: 78 C:\xampp\htdocs\ria\application\third_party\PHPExcel\Reader\HTML.php 495
+ERROR - 2019-01-04 10:17:04 --> Severity: Warning --> DOMDocument::loadHTML(): ID tdScroll already defined in Entity, line: 79 C:\xampp\htdocs\ria\application\third_party\PHPExcel\Reader\HTML.php 495
+ERROR - 2019-01-04 10:17:04 --> Severity: Warning --> DOMDocument::loadHTML(): htmlParseStartTag: misplaced <html> tag in Entity, line: 89 C:\xampp\htdocs\ria\application\third_party\PHPExcel\Reader\HTML.php 495
+ERROR - 2019-01-04 10:17:04 --> Severity: Warning --> DOMDocument::loadHTML(): error parsing attribute name in Entity, line: 99 C:\xampp\htdocs\ria\application\third_party\PHPExcel\Reader\HTML.php 495
+ERROR - 2019-01-04 10:17:04 --> Severity: Warning --> DOMDocument::loadHTML(): error parsing attribute name in Entity, line: 100 C:\xampp\htdocs\ria\application\third_party\PHPExcel\Reader\HTML.php 495
+ERROR - 2019-01-04 10:17:04 --> Severity: Warning --> DOMDocument::loadHTML(): Tag icellcount invalid in Entity, line: 100 C:\xampp\htdocs\ria\application\third_party\PHPExcel\Reader\HTML.php 495
+ERROR - 2019-01-04 10:17:04 --> Severity: Warning --> DOMDocument::loadHTML(): htmlParseStartTag: invalid element name in Entity, line: 103 C:\xampp\htdocs\ria\application\third_party\PHPExcel\Reader\HTML.php 495
+ERROR - 2019-01-04 10:17:04 --> Severity: Warning --> DOMDocument::loadHTML(): error parsing attribute name in Entity, line: 111 C:\xampp\htdocs\ria\application\third_party\PHPExcel\Reader\HTML.php 495
+ERROR - 2019-01-04 10:17:04 --> Severity: Warning --> DOMDocument::loadHTML(): error parsing attribute name in Entity, line: 112 C:\xampp\htdocs\ria\application\third_party\PHPExcel\Reader\HTML.php 495
+ERROR - 2019-01-04 10:17:05 --> Severity: Warning --> DOMDocument::loadHTML(): Tag icellcount invalid in Entity, line: 112 C:\xampp\htdocs\ria\application\third_party\PHPExcel\Reader\HTML.php 495
+ERROR - 2019-01-04 10:17:05 --> Severity: Warning --> DOMDocument::loadHTML(): Unexpected end tag : td in Entity, line: 112 C:\xampp\htdocs\ria\application\third_party\PHPExcel\Reader\HTML.php 495
+ERROR - 2019-01-04 10:17:05 --> Severity: Warning --> DOMDocument::loadHTML(): error parsing attribute name in Entity, line: 114 C:\xampp\htdocs\ria\application\third_party\PHPExcel\Reader\HTML.php 495
+ERROR - 2019-01-04 10:17:05 --> Severity: Warning --> DOMDocument::loadHTML(): error parsing attribute name in Entity, line: 114 C:\xampp\htdocs\ria\application\third_party\PHPExcel\Reader\HTML.php 495
+ERROR - 2019-01-04 10:17:05 --> Severity: Warning --> DOMDocument::loadHTML(): error parsing attribute name in Entity, line: 115 C:\xampp\htdocs\ria\application\third_party\PHPExcel\Reader\HTML.php 495
+ERROR - 2019-01-04 10:17:05 --> Severity: Warning --> DOMDocument::loadHTML(): Tag c_ltabs invalid in Entity, line: 115 C:\xampp\htdocs\ria\application\third_party\PHPExcel\Reader\HTML.php 495
+ERROR - 2019-01-04 10:17:05 --> Severity: Warning --> DOMDocument::loadHTML(): Unexpected end tag : td in Entity, line: 115 C:\xampp\htdocs\ria\application\third_party\PHPExcel\Reader\HTML.php 495
+ERROR - 2019-01-04 10:17:05 --> Severity: Warning --> DOMDocument::loadHTML(): ID tdTab already defined in Entity, line: 120 C:\xampp\htdocs\ria\application\third_party\PHPExcel\Reader\HTML.php 495
+ERROR - 2019-01-04 10:17:05 --> Severity: Warning --> DOMDocument::loadHTML(): ID aTab already defined in Entity, line: 120 C:\xampp\htdocs\ria\application\third_party\PHPExcel\Reader\HTML.php 495
+ERROR - 2019-01-04 10:17:05 --> Severity: Warning --> DOMDocument::loadHTML(): error parsing attribute name in Entity, line: 122 C:\xampp\htdocs\ria\application\third_party\PHPExcel\Reader\HTML.php 495
+ERROR - 2019-01-04 10:17:05 --> Severity: Warning --> DOMDocument::loadHTML(): error parsing attribute name in Entity, line: 123 C:\xampp\htdocs\ria\application\third_party\PHPExcel\Reader\HTML.php 495
+ERROR - 2019-01-04 10:17:05 --> Severity: Warning --> DOMDocument::loadHTML(): Tag c_ltabs invalid in Entity, line: 123 C:\xampp\htdocs\ria\application\third_party\PHPExcel\Reader\HTML.php 495
+ERROR - 2019-01-04 10:17:05 --> Severity: Warning --> DOMDocument::loadHTML(): Unexpected end tag : td in Entity, line: 123 C:\xampp\htdocs\ria\application\third_party\PHPExcel\Reader\HTML.php 495
+ERROR - 2019-01-04 10:17:05 --> Severity: Warning --> DOMDocument::loadHTML(): error parsing attribute name in Entity, line: 126 C:\xampp\htdocs\ria\application\third_party\PHPExcel\Reader\HTML.php 495
+ERROR - 2019-01-04 10:17:05 --> Severity: Warning --> DOMDocument::loadHTML(): error parsing attribute name in Entity, line: 127 C:\xampp\htdocs\ria\application\third_party\PHPExcel\Reader\HTML.php 495
+ERROR - 2019-01-04 10:17:05 --> Severity: Warning --> DOMDocument::loadHTML(): Tag icellcount invalid in Entity, line: 127 C:\xampp\htdocs\ria\application\third_party\PHPExcel\Reader\HTML.php 495
+ERROR - 2019-01-04 10:17:05 --> Severity: Warning --> DOMDocument::loadHTML(): Unexpected end tag : td in Entity, line: 127 C:\xampp\htdocs\ria\application\third_party\PHPExcel\Reader\HTML.php 495
+ERROR - 2019-01-04 10:17:05 --> Severity: Warning --> DOMDocument::loadHTML(): error parsing attribute name in Entity, line: 129 C:\xampp\htdocs\ria\application\third_party\PHPExcel\Reader\HTML.php 495
+ERROR - 2019-01-04 10:17:05 --> Severity: Warning --> DOMDocument::loadHTML(): error parsing attribute name in Entity, line: 130 C:\xampp\htdocs\ria\application\third_party\PHPExcel\Reader\HTML.php 495
+ERROR - 2019-01-04 10:17:05 --> Severity: Warning --> DOMDocument::loadHTML(): Tag c_ltabs invalid in Entity, line: 130 C:\xampp\htdocs\ria\application\third_party\PHPExcel\Reader\HTML.php 495
+ERROR - 2019-01-04 10:17:05 --> Severity: Warning --> DOMDocument::loadHTML(): Unexpected end tag : td in Entity, line: 130 C:\xampp\htdocs\ria\application\third_party\PHPExcel\Reader\HTML.php 495
+ERROR - 2019-01-04 10:17:05 --> Severity: Warning --> DOMDocument::loadHTML(): Unexpected end tag : tr in Entity, line: 134 C:\xampp\htdocs\ria\application\third_party\PHPExcel\Reader\HTML.php 495
+ERROR - 2019-01-04 10:17:05 --> Severity: Warning --> DOMDocument::loadHTML(): htmlParseStartTag: invalid element name in Entity, line: 150 C:\xampp\htdocs\ria\application\third_party\PHPExcel\Reader\HTML.php 495
+ERROR - 2019-01-04 10:17:05 --> Severity: Warning --> DOMDocument::loadHTML(): error parsing attribute name in Entity, line: 168 C:\xampp\htdocs\ria\application\third_party\PHPExcel\Reader\HTML.php 495
+ERROR - 2019-01-04 10:17:05 --> Severity: Warning --> DOMDocument::loadHTML(): error parsing attribute name in Entity, line: 169 C:\xampp\htdocs\ria\application\third_party\PHPExcel\Reader\HTML.php 495
+ERROR - 2019-01-04 10:17:05 --> Severity: Warning --> DOMDocument::loadHTML(): error parsing attribute name in Entity, line: 171 C:\xampp\htdocs\ria\application\third_party\PHPExcel\Reader\HTML.php 495
+ERROR - 2019-01-04 10:17:05 --> Severity: Warning --> DOMDocument::loadHTML(): error parsing attribute name in Entity, line: 172 C:\xampp\htdocs\ria\application\third_party\PHPExcel\Reader\HTML.php 495
+ERROR - 2019-01-04 10:17:05 --> Severity: Warning --> DOMDocument::loadHTML(): error parsing attribute name in Entity, line: 172 C:\xampp\htdocs\ria\application\third_party\PHPExcel\Reader\HTML.php 495
+ERROR - 2019-01-04 10:17:05 --> Severity: Warning --> DOMDocument::loadHTML(): Attribute if redefined in Entity, line: 173 C:\xampp\htdocs\ria\application\third_party\PHPExcel\Reader\HTML.php 495
+ERROR - 2019-01-04 10:17:06 --> Severity: Warning --> DOMDocument::loadHTML(): error parsing attribute name in Entity, line: 173 C:\xampp\htdocs\ria\application\third_party\PHPExcel\Reader\HTML.php 495
+ERROR - 2019-01-04 10:17:06 --> Severity: Warning --> DOMDocument::loadHTML(): Tag c_ltabs invalid in Entity, line: 173 C:\xampp\htdocs\ria\application\third_party\PHPExcel\Reader\HTML.php 495
+ERROR - 2019-01-04 10:17:06 --> Severity: Warning --> DOMDocument::loadHTML(): error parsing attribute name in Entity, line: 174 C:\xampp\htdocs\ria\application\third_party\PHPExcel\Reader\HTML.php 495
+ERROR - 2019-01-04 10:17:06 --> Severity: Warning --> DOMDocument::loadHTML(): error parsing attribute name in Entity, line: 175 C:\xampp\htdocs\ria\application\third_party\PHPExcel\Reader\HTML.php 495
+ERROR - 2019-01-04 10:17:06 --> Severity: Warning --> DOMDocument::loadHTML(): error parsing attribute name in Entity, line: 177 C:\xampp\htdocs\ria\application\third_party\PHPExcel\Reader\HTML.php 495
+ERROR - 2019-01-04 10:17:06 --> Severity: Warning --> DOMDocument::loadHTML(): error parsing attribute name in Entity, line: 178 C:\xampp\htdocs\ria\application\third_party\PHPExcel\Reader\HTML.php 495
+ERROR - 2019-01-04 10:17:06 --> Severity: Warning --> DOMDocument::loadHTML(): error parsing attribute name in Entity, line: 179 C:\xampp\htdocs\ria\application\third_party\PHPExcel\Reader\HTML.php 495
+ERROR - 2019-01-04 10:17:06 --> Severity: Warning --> DOMDocument::loadHTML(): Attribute inexttab redefined in Entity, line: 180 C:\xampp\htdocs\ria\application\third_party\PHPExcel\Reader\HTML.php 495
+ERROR - 2019-01-04 10:17:06 --> Severity: Warning --> DOMDocument::loadHTML(): error parsing attribute name in Entity, line: 180 C:\xampp\htdocs\ria\application\third_party\PHPExcel\Reader\HTML.php 495
+ERROR - 2019-01-04 10:17:06 --> Severity: Warning --> DOMDocument::loadHTML(): error parsing attribute name in Entity, line: 181 C:\xampp\htdocs\ria\application\third_party\PHPExcel\Reader\HTML.php 495
+ERROR - 2019-01-04 10:17:06 --> Severity: Warning --> DOMDocument::loadHTML(): error parsing attribute name in Entity, line: 183 C:\xampp\htdocs\ria\application\third_party\PHPExcel\Reader\HTML.php 495
+ERROR - 2019-01-04 10:17:06 --> Severity: Warning --> DOMDocument::loadHTML(): error parsing attribute name in Entity, line: 184 C:\xampp\htdocs\ria\application\third_party\PHPExcel\Reader\HTML.php 495
+ERROR - 2019-01-04 10:17:06 --> Severity: Warning --> DOMDocument::loadHTML(): Attribute inexttab redefined in Entity, line: 185 C:\xampp\htdocs\ria\application\third_party\PHPExcel\Reader\HTML.php 495
+ERROR - 2019-01-04 10:17:06 --> Severity: Warning --> DOMDocument::loadHTML(): Attribute if redefined in Entity, line: 187 C:\xampp\htdocs\ria\application\third_party\PHPExcel\Reader\HTML.php 495
+ERROR - 2019-01-04 10:17:06 --> Severity: Warning --> DOMDocument::loadHTML(): error parsing attribute name in Entity, line: 187 C:\xampp\htdocs\ria\application\third_party\PHPExcel\Reader\HTML.php 495
+ERROR - 2019-01-04 10:17:06 --> Severity: Warning --> DOMDocument::loadHTML(): Tag c_ltabs invalid in Entity, line: 187 C:\xampp\htdocs\ria\application\third_party\PHPExcel\Reader\HTML.php 495
+ERROR - 2019-01-04 10:17:06 --> Severity: Warning --> DOMDocument::loadHTML(): htmlParseStartTag: invalid element name in Entity, line: 210 C:\xampp\htdocs\ria\application\third_party\PHPExcel\Reader\HTML.php 495
+ERROR - 2019-01-04 10:17:06 --> Severity: Warning --> DOMDocument::loadHTML(): htmlParseEntityRef: no name in Entity, line: 214 C:\xampp\htdocs\ria\application\third_party\PHPExcel\Reader\HTML.php 495
+ERROR - 2019-01-04 10:17:06 --> Severity: Warning --> DOMDocument::loadHTML(): htmlParseEntityRef: no name in Entity, line: 214 C:\xampp\htdocs\ria\application\third_party\PHPExcel\Reader\HTML.php 495
+ERROR - 2019-01-04 10:17:06 --> Severity: Warning --> DOMDocument::loadHTML(): htmlParseStartTag: invalid element name in Entity, line: 214 C:\xampp\htdocs\ria\application\third_party\PHPExcel\Reader\HTML.php 495
+ERROR - 2019-01-04 10:17:06 --> Severity: Warning --> DOMDocument::loadHTML(): htmlParseEntityRef: no name in Entity, line: 271 C:\xampp\htdocs\ria\application\third_party\PHPExcel\Reader\HTML.php 495
+ERROR - 2019-01-04 10:17:06 --> Severity: Warning --> DOMDocument::loadHTML(): htmlParseEntityRef: no name in Entity, line: 271 C:\xampp\htdocs\ria\application\third_party\PHPExcel\Reader\HTML.php 495
+ERROR - 2019-01-04 10:17:06 --> Severity: Warning --> DOMDocument::loadHTML(): htmlParseEntityRef: no name in Entity, line: 272 C:\xampp\htdocs\ria\application\third_party\PHPExcel\Reader\HTML.php 495
+ERROR - 2019-01-04 10:17:06 --> Severity: Warning --> DOMDocument::loadHTML(): htmlParseEntityRef: no name in Entity, line: 272 C:\xampp\htdocs\ria\application\third_party\PHPExcel\Reader\HTML.php 495
+ERROR - 2019-01-04 10:17:06 --> Severity: Warning --> DOMDocument::loadHTML(): Unexpected end tag : script in Entity, line: 296 C:\xampp\htdocs\ria\application\third_party\PHPExcel\Reader\HTML.php 495
+ERROR - 2019-01-04 10:17:06 --> Severity: Warning --> DOMDocument::loadHTML(): htmlParseStartTag: invalid element name in Entity, line: 297 C:\xampp\htdocs\ria\application\third_party\PHPExcel\Reader\HTML.php 495
+ERROR - 2019-01-04 10:17:06 --> Severity: Warning --> DOMDocument::loadHTML(): Unexpected end tag : head in Entity, line: 316 C:\xampp\htdocs\ria\application\third_party\PHPExcel\Reader\HTML.php 495
+ERROR - 2019-01-04 10:17:11 --> Severity: Notice --> Undefined variable: fdate C:\xampp\htdocs\ria\application\controllers\cashbook.php 1829
+ERROR - 2019-01-04 10:17:11 --> Severity: Notice --> Undefined variable: tdate C:\xampp\htdocs\ria\application\controllers\cashbook.php 1829
+ERROR - 2019-01-04 10:17:11 --> Severity: Notice --> Undefined variable: fa C:\xampp\htdocs\ria\application\controllers\cashbook.php 1829
+ERROR - 2019-01-04 10:17:11 --> Severity: Notice --> Undefined variable: aa C:\xampp\htdocs\ria\application\controllers\cashbook.php 1829
+ERROR - 2019-01-04 10:17:12 --> Severity: Notice --> Undefined variable: financialyear C:\xampp\htdocs\ria\application\views\bankstatement.php 2
+ERROR - 2019-01-04 10:17:12 --> Severity: Warning --> Invalid argument supplied for foreach() C:\xampp\htdocs\ria\application\views\bankstatement.php 2
+ERROR - 2019-01-04 10:17:12 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 87
+ERROR - 2019-01-04 10:17:12 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 87
+ERROR - 2019-01-04 10:17:12 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 88
+ERROR - 2019-01-04 10:17:12 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 88
+ERROR - 2019-01-04 10:17:12 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 89
+ERROR - 2019-01-04 10:17:12 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 89
+ERROR - 2019-01-04 10:17:12 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 139
+ERROR - 2019-01-04 10:17:12 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 139
+ERROR - 2019-01-04 10:17:12 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 140
+ERROR - 2019-01-04 10:17:12 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 140
+ERROR - 2019-01-04 10:17:12 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 141
+ERROR - 2019-01-04 10:17:12 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 141
+ERROR - 2019-01-04 10:17:12 --> Severity: Notice --> Undefined variable: Bankname C:\xampp\htdocs\ria\application\views\bankstatement.php 237
+ERROR - 2019-01-04 10:17:26 --> Severity: Notice --> Undefined variable: creditdebit C:\xampp\htdocs\ria\application\views\bankingfile.php 132
+ERROR - 2019-01-04 10:17:48 --> Severity: Notice --> Undefined variable: filename C:\xampp\htdocs\ria\application\controllers\cashbook.php 236
+ERROR - 2019-01-04 10:17:48 --> The upload path does not appear to be valid.
+ERROR - 2019-01-04 10:17:50 --> Severity: Notice --> Undefined variable: highestRow4 C:\xampp\htdocs\ria\application\controllers\cashbook.php 265
+ERROR - 2019-01-04 10:17:53 --> Severity: Notice --> Undefined variable: fdate C:\xampp\htdocs\ria\application\controllers\cashbook.php 1829
+ERROR - 2019-01-04 10:17:53 --> Severity: Notice --> Undefined variable: tdate C:\xampp\htdocs\ria\application\controllers\cashbook.php 1829
+ERROR - 2019-01-04 10:17:53 --> Severity: Notice --> Undefined variable: fa C:\xampp\htdocs\ria\application\controllers\cashbook.php 1829
+ERROR - 2019-01-04 10:17:53 --> Severity: Notice --> Undefined variable: aa C:\xampp\htdocs\ria\application\controllers\cashbook.php 1829
+ERROR - 2019-01-04 10:17:54 --> Severity: Notice --> Undefined variable: financialyear C:\xampp\htdocs\ria\application\views\bankstatement.php 2
+ERROR - 2019-01-04 10:17:54 --> Severity: Warning --> Invalid argument supplied for foreach() C:\xampp\htdocs\ria\application\views\bankstatement.php 2
+ERROR - 2019-01-04 10:17:54 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 87
+ERROR - 2019-01-04 10:17:54 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 87
+ERROR - 2019-01-04 10:17:54 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 88
+ERROR - 2019-01-04 10:17:54 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 88
+ERROR - 2019-01-04 10:17:54 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 89
+ERROR - 2019-01-04 10:17:54 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 89
+ERROR - 2019-01-04 10:17:54 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 139
+ERROR - 2019-01-04 10:17:54 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 139
+ERROR - 2019-01-04 10:17:54 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 140
+ERROR - 2019-01-04 10:17:54 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 140
+ERROR - 2019-01-04 10:17:54 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 141
+ERROR - 2019-01-04 10:17:54 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 141
+ERROR - 2019-01-04 10:17:54 --> Severity: Notice --> Undefined variable: Bankname C:\xampp\htdocs\ria\application\views\bankstatement.php 237
+ERROR - 2019-01-04 10:18:12 --> Severity: Notice --> Undefined variable: creditdebit C:\xampp\htdocs\ria\application\views\bankingfile.php 132
+ERROR - 2019-01-04 10:18:12 --> Severity: Notice --> Undefined variable: creditdebit C:\xampp\htdocs\ria\application\views\bankingfile.php 132
+ERROR - 2019-01-04 10:18:49 --> Severity: Notice --> Undefined variable: filename C:\xampp\htdocs\ria\application\controllers\cashbook.php 236
+ERROR - 2019-01-04 10:18:49 --> The upload path does not appear to be valid.
+ERROR - 2019-01-04 10:18:49 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 604
+ERROR - 2019-01-04 10:18:49 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 604
+ERROR - 2019-01-04 10:18:49 --> Severity: Notice --> Undefined index: reportdate C:\xampp\htdocs\ria\application\models\cashbook_model.php 392
+ERROR - 2019-01-04 10:18:49 --> Severity: Notice --> Undefined index: Narration C:\xampp\htdocs\ria\application\models\cashbook_model.php 393
+ERROR - 2019-01-04 10:18:49 --> Severity: Notice --> Undefined index: Balance C:\xampp\htdocs\ria\application\models\cashbook_model.php 394
+ERROR - 2019-01-04 10:18:49 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 604
+ERROR - 2019-01-04 10:18:49 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 604
+ERROR - 2019-01-04 10:18:49 --> Severity: Notice --> Undefined index: reportdate C:\xampp\htdocs\ria\application\models\cashbook_model.php 392
+ERROR - 2019-01-04 10:18:49 --> Severity: Notice --> Undefined index: Narration C:\xampp\htdocs\ria\application\models\cashbook_model.php 393
+ERROR - 2019-01-04 10:18:50 --> Severity: Notice --> Undefined index: Balance C:\xampp\htdocs\ria\application\models\cashbook_model.php 394
+ERROR - 2019-01-04 10:18:50 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 604
+ERROR - 2019-01-04 10:18:50 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 604
+ERROR - 2019-01-04 10:18:50 --> Severity: Notice --> Undefined index: reportdate C:\xampp\htdocs\ria\application\models\cashbook_model.php 392
+ERROR - 2019-01-04 10:18:50 --> Severity: Notice --> Undefined index: Narration C:\xampp\htdocs\ria\application\models\cashbook_model.php 393
+ERROR - 2019-01-04 10:18:50 --> Severity: Notice --> Undefined index: Balance C:\xampp\htdocs\ria\application\models\cashbook_model.php 394
+ERROR - 2019-01-04 10:18:50 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 604
+ERROR - 2019-01-04 10:18:50 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 604
+ERROR - 2019-01-04 10:18:50 --> Severity: Notice --> Undefined index: reportdate C:\xampp\htdocs\ria\application\models\cashbook_model.php 392
+ERROR - 2019-01-04 10:18:50 --> Severity: Notice --> Undefined index: Narration C:\xampp\htdocs\ria\application\models\cashbook_model.php 393
+ERROR - 2019-01-04 10:18:50 --> Severity: Notice --> Undefined index: Balance C:\xampp\htdocs\ria\application\models\cashbook_model.php 394
+ERROR - 2019-01-04 10:18:50 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 604
+ERROR - 2019-01-04 10:18:50 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 604
+ERROR - 2019-01-04 10:18:50 --> Severity: Notice --> Undefined index: reportdate C:\xampp\htdocs\ria\application\models\cashbook_model.php 392
+ERROR - 2019-01-04 10:18:50 --> Severity: Notice --> Undefined index: Narration C:\xampp\htdocs\ria\application\models\cashbook_model.php 393
+ERROR - 2019-01-04 10:18:50 --> Severity: Notice --> Undefined index: Balance C:\xampp\htdocs\ria\application\models\cashbook_model.php 394
+ERROR - 2019-01-04 10:18:50 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 604
+ERROR - 2019-01-04 10:18:50 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 604
+ERROR - 2019-01-04 10:18:50 --> Severity: Notice --> Undefined index: reportdate C:\xampp\htdocs\ria\application\models\cashbook_model.php 392
+ERROR - 2019-01-04 10:18:50 --> Severity: Notice --> Undefined index: Narration C:\xampp\htdocs\ria\application\models\cashbook_model.php 393
+ERROR - 2019-01-04 10:18:50 --> Severity: Notice --> Undefined index: Balance C:\xampp\htdocs\ria\application\models\cashbook_model.php 394
+ERROR - 2019-01-04 10:18:50 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 604
+ERROR - 2019-01-04 10:18:50 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 604
+ERROR - 2019-01-04 10:18:51 --> Severity: Notice --> Undefined index: reportdate C:\xampp\htdocs\ria\application\models\cashbook_model.php 392
+ERROR - 2019-01-04 10:18:51 --> Severity: Notice --> Undefined index: Narration C:\xampp\htdocs\ria\application\models\cashbook_model.php 393
+ERROR - 2019-01-04 10:18:51 --> Severity: Notice --> Undefined index: Balance C:\xampp\htdocs\ria\application\models\cashbook_model.php 394
+ERROR - 2019-01-04 10:18:51 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 604
+ERROR - 2019-01-04 10:18:51 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 604
+ERROR - 2019-01-04 10:18:51 --> Severity: Notice --> Undefined index: reportdate C:\xampp\htdocs\ria\application\models\cashbook_model.php 392
+ERROR - 2019-01-04 10:18:51 --> Severity: Notice --> Undefined index: Narration C:\xampp\htdocs\ria\application\models\cashbook_model.php 393
+ERROR - 2019-01-04 10:18:51 --> Severity: Notice --> Undefined index: Balance C:\xampp\htdocs\ria\application\models\cashbook_model.php 394
+ERROR - 2019-01-04 10:18:55 --> Severity: Notice --> Undefined variable: fdate C:\xampp\htdocs\ria\application\controllers\cashbook.php 1829
+ERROR - 2019-01-04 10:18:55 --> Severity: Notice --> Undefined variable: tdate C:\xampp\htdocs\ria\application\controllers\cashbook.php 1829
+ERROR - 2019-01-04 10:18:55 --> Severity: Notice --> Undefined variable: fa C:\xampp\htdocs\ria\application\controllers\cashbook.php 1829
+ERROR - 2019-01-04 10:18:55 --> Severity: Notice --> Undefined variable: aa C:\xampp\htdocs\ria\application\controllers\cashbook.php 1829
+ERROR - 2019-01-04 10:18:55 --> Severity: Notice --> Undefined variable: financialyear C:\xampp\htdocs\ria\application\views\bankstatement.php 2
+ERROR - 2019-01-04 10:18:55 --> Severity: Warning --> Invalid argument supplied for foreach() C:\xampp\htdocs\ria\application\views\bankstatement.php 2
+ERROR - 2019-01-04 10:18:55 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 87
+ERROR - 2019-01-04 10:18:55 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 87
+ERROR - 2019-01-04 10:18:55 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 88
+ERROR - 2019-01-04 10:18:55 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 88
+ERROR - 2019-01-04 10:18:55 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 89
+ERROR - 2019-01-04 10:18:55 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 89
+ERROR - 2019-01-04 10:18:55 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 139
+ERROR - 2019-01-04 10:18:55 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 139
+ERROR - 2019-01-04 10:18:55 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 140
+ERROR - 2019-01-04 10:18:55 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 140
+ERROR - 2019-01-04 10:18:55 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 141
+ERROR - 2019-01-04 10:18:56 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 141
+ERROR - 2019-01-04 10:18:56 --> Severity: Notice --> Undefined variable: Bankname C:\xampp\htdocs\ria\application\views\bankstatement.php 237
+ERROR - 2019-01-04 10:44:13 --> Severity: Notice --> Undefined variable: creditdebit C:\xampp\htdocs\ria\application\views\bankingfile.php 132
+ERROR - 2019-01-04 10:44:50 --> Severity: Notice --> Undefined variable: filename C:\xampp\htdocs\ria\application\controllers\cashbook.php 236
+ERROR - 2019-01-04 10:44:50 --> The upload path does not appear to be valid.
+ERROR - 2019-01-04 10:44:50 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 534
+ERROR - 2019-01-04 10:44:50 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 534
+ERROR - 2019-01-04 10:44:50 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 534
+ERROR - 2019-01-04 10:44:50 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 534
+ERROR - 2019-01-04 10:44:51 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 534
+ERROR - 2019-01-04 10:44:51 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 534
+ERROR - 2019-01-04 10:44:51 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 534
+ERROR - 2019-01-04 10:44:51 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 534
+ERROR - 2019-01-04 10:44:51 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 534
+ERROR - 2019-01-04 10:44:51 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 534
+ERROR - 2019-01-04 10:44:51 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 534
+ERROR - 2019-01-04 10:44:51 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 534
+ERROR - 2019-01-04 10:44:51 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 534
+ERROR - 2019-01-04 10:44:51 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 534
+ERROR - 2019-01-04 10:44:51 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 534
+ERROR - 2019-01-04 10:44:51 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 534
+ERROR - 2019-01-04 10:44:51 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 534
+ERROR - 2019-01-04 10:44:51 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 534
+ERROR - 2019-01-04 10:44:52 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 534
+ERROR - 2019-01-04 10:44:52 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 534
+ERROR - 2019-01-04 10:44:52 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 534
+ERROR - 2019-01-04 10:44:52 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 534
+ERROR - 2019-01-04 10:44:52 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 534
+ERROR - 2019-01-04 10:44:52 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 534
+ERROR - 2019-01-04 10:44:52 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 534
+ERROR - 2019-01-04 10:44:52 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 534
+ERROR - 2019-01-04 10:44:52 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 534
+ERROR - 2019-01-04 10:44:52 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 534
+ERROR - 2019-01-04 10:44:52 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 534
+ERROR - 2019-01-04 10:44:52 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 534
+ERROR - 2019-01-04 10:44:53 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 534
+ERROR - 2019-01-04 10:44:53 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 534
+ERROR - 2019-01-04 10:44:53 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 534
+ERROR - 2019-01-04 10:44:53 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 534
+ERROR - 2019-01-04 10:44:53 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 534
+ERROR - 2019-01-04 10:44:53 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 534
+ERROR - 2019-01-04 10:44:53 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 534
+ERROR - 2019-01-04 10:44:53 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 534
+ERROR - 2019-01-04 10:44:53 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 534
+ERROR - 2019-01-04 10:44:53 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 534
+ERROR - 2019-01-04 10:44:53 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 534
+ERROR - 2019-01-04 10:44:53 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 534
+ERROR - 2019-01-04 10:44:53 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 534
+ERROR - 2019-01-04 10:44:53 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 534
+ERROR - 2019-01-04 10:44:54 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 534
+ERROR - 2019-01-04 10:44:54 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 534
+ERROR - 2019-01-04 10:44:54 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 534
+ERROR - 2019-01-04 10:44:54 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 534
+ERROR - 2019-01-04 10:44:54 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 534
+ERROR - 2019-01-04 10:44:54 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 534
+ERROR - 2019-01-04 10:44:54 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 534
+ERROR - 2019-01-04 10:44:54 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 534
+ERROR - 2019-01-04 10:44:54 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 534
+ERROR - 2019-01-04 10:44:55 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 534
+ERROR - 2019-01-04 10:44:55 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 534
+ERROR - 2019-01-04 10:44:55 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 534
+ERROR - 2019-01-04 10:44:55 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 534
+ERROR - 2019-01-04 10:44:55 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 534
+ERROR - 2019-01-04 10:44:55 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 534
+ERROR - 2019-01-04 10:44:55 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 534
+ERROR - 2019-01-04 10:44:55 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 534
+ERROR - 2019-01-04 10:44:55 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 534
+ERROR - 2019-01-04 10:44:55 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 534
+ERROR - 2019-01-04 10:44:55 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 534
+ERROR - 2019-01-04 10:44:55 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 534
+ERROR - 2019-01-04 10:44:55 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 534
+ERROR - 2019-01-04 10:44:56 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 534
+ERROR - 2019-01-04 10:44:56 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 534
+ERROR - 2019-01-04 10:44:56 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 534
+ERROR - 2019-01-04 10:44:56 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 534
+ERROR - 2019-01-04 10:44:56 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 534
+ERROR - 2019-01-04 10:44:56 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 534
+ERROR - 2019-01-04 10:44:56 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 534
+ERROR - 2019-01-04 10:44:56 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 534
+ERROR - 2019-01-04 10:44:56 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 534
+ERROR - 2019-01-04 10:44:56 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 534
+ERROR - 2019-01-04 10:44:56 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 534
+ERROR - 2019-01-04 10:44:56 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 534
+ERROR - 2019-01-04 10:44:56 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 534
+ERROR - 2019-01-04 10:44:56 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 534
+ERROR - 2019-01-04 10:44:57 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 534
+ERROR - 2019-01-04 10:44:57 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 534
+ERROR - 2019-01-04 10:44:57 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 534
+ERROR - 2019-01-04 10:44:57 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 534
+ERROR - 2019-01-04 10:44:57 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 534
+ERROR - 2019-01-04 10:44:57 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 534
+ERROR - 2019-01-04 10:44:57 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 534
+ERROR - 2019-01-04 10:44:57 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 534
+ERROR - 2019-01-04 10:44:57 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 534
+ERROR - 2019-01-04 10:44:57 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 534
+ERROR - 2019-01-04 10:44:57 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 534
+ERROR - 2019-01-04 10:44:57 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 534
+ERROR - 2019-01-04 10:44:57 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 534
+ERROR - 2019-01-04 10:44:58 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 534
+ERROR - 2019-01-04 10:44:58 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 534
+ERROR - 2019-01-04 10:44:58 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 534
+ERROR - 2019-01-04 10:44:58 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 534
+ERROR - 2019-01-04 10:44:58 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 534
+ERROR - 2019-01-04 10:44:58 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 534
+ERROR - 2019-01-04 10:44:58 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 534
+ERROR - 2019-01-04 10:44:58 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 534
+ERROR - 2019-01-04 10:44:58 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 534
+ERROR - 2019-01-04 10:44:58 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 534
+ERROR - 2019-01-04 10:44:58 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 534
+ERROR - 2019-01-04 10:44:58 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 534
+ERROR - 2019-01-04 10:44:58 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 534
+ERROR - 2019-01-04 10:44:58 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 534
+ERROR - 2019-01-04 10:44:59 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 534
+ERROR - 2019-01-04 10:44:59 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 534
+ERROR - 2019-01-04 10:44:59 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 534
+ERROR - 2019-01-04 10:44:59 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 534
+ERROR - 2019-01-04 10:44:59 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 534
+ERROR - 2019-01-04 10:44:59 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 534
+ERROR - 2019-01-04 10:44:59 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 534
+ERROR - 2019-01-04 10:44:59 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 534
+ERROR - 2019-01-04 10:44:59 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 534
+ERROR - 2019-01-04 10:44:59 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 534
+ERROR - 2019-01-04 10:44:59 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 534
+ERROR - 2019-01-04 10:44:59 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 534
+ERROR - 2019-01-04 10:44:59 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 534
+ERROR - 2019-01-04 10:45:00 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 534
+ERROR - 2019-01-04 10:45:00 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 534
+ERROR - 2019-01-04 10:45:00 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 534
+ERROR - 2019-01-04 10:45:00 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 534
+ERROR - 2019-01-04 10:45:00 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 534
+ERROR - 2019-01-04 10:45:00 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 534
+ERROR - 2019-01-04 10:45:00 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 534
+ERROR - 2019-01-04 10:45:00 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 534
+ERROR - 2019-01-04 10:45:00 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 534
+ERROR - 2019-01-04 10:45:00 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 534
+ERROR - 2019-01-04 10:45:00 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 534
+ERROR - 2019-01-04 10:45:00 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 534
+ERROR - 2019-01-04 10:45:00 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 534
+ERROR - 2019-01-04 10:45:00 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 534
+ERROR - 2019-01-04 10:45:01 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 534
+ERROR - 2019-01-04 10:45:01 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 534
+ERROR - 2019-01-04 10:45:01 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 534
+ERROR - 2019-01-04 10:45:01 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 534
+ERROR - 2019-01-04 10:45:01 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 534
+ERROR - 2019-01-04 10:45:01 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 534
+ERROR - 2019-01-04 10:45:01 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 534
+ERROR - 2019-01-04 10:45:01 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 534
+ERROR - 2019-01-04 10:45:01 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 534
+ERROR - 2019-01-04 10:45:01 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 534
+ERROR - 2019-01-04 10:45:01 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 534
+ERROR - 2019-01-04 10:45:01 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 534
+ERROR - 2019-01-04 10:45:01 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 534
+ERROR - 2019-01-04 10:45:02 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 534
+ERROR - 2019-01-04 10:45:02 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 534
+ERROR - 2019-01-04 10:45:02 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 534
+ERROR - 2019-01-04 10:45:02 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 534
+ERROR - 2019-01-04 10:45:02 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 534
+ERROR - 2019-01-04 10:45:02 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 534
+ERROR - 2019-01-04 10:45:02 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 534
+ERROR - 2019-01-04 10:45:02 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 534
+ERROR - 2019-01-04 10:45:02 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 534
+ERROR - 2019-01-04 10:45:02 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 534
+ERROR - 2019-01-04 10:45:02 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 534
+ERROR - 2019-01-04 10:45:02 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 534
+ERROR - 2019-01-04 10:45:02 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 534
+ERROR - 2019-01-04 10:45:03 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 534
+ERROR - 2019-01-04 10:45:03 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 534
+ERROR - 2019-01-04 10:45:03 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 534
+ERROR - 2019-01-04 10:45:03 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 534
+ERROR - 2019-01-04 10:45:03 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 534
+ERROR - 2019-01-04 10:45:03 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 534
+ERROR - 2019-01-04 10:45:03 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 534
+ERROR - 2019-01-04 10:45:03 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 534
+ERROR - 2019-01-04 10:45:03 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 534
+ERROR - 2019-01-04 10:45:04 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 534
+ERROR - 2019-01-04 10:45:04 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 534
+ERROR - 2019-01-04 10:45:04 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 534
+ERROR - 2019-01-04 10:45:04 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 534
+ERROR - 2019-01-04 10:45:04 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 534
+ERROR - 2019-01-04 10:45:04 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 534
+ERROR - 2019-01-04 10:45:04 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 534
+ERROR - 2019-01-04 10:45:04 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 534
+ERROR - 2019-01-04 10:45:04 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 534
+ERROR - 2019-01-04 10:45:04 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 534
+ERROR - 2019-01-04 10:45:04 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 534
+ERROR - 2019-01-04 10:45:04 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 534
+ERROR - 2019-01-04 10:45:04 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 534
+ERROR - 2019-01-04 10:45:05 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 534
+ERROR - 2019-01-04 10:45:05 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 534
+ERROR - 2019-01-04 10:45:05 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 534
+ERROR - 2019-01-04 10:45:05 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 534
+ERROR - 2019-01-04 10:45:05 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 534
+ERROR - 2019-01-04 10:45:05 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 534
+ERROR - 2019-01-04 10:45:05 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 534
+ERROR - 2019-01-04 10:45:05 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 534
+ERROR - 2019-01-04 10:45:05 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 534
+ERROR - 2019-01-04 10:45:05 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 534
+ERROR - 2019-01-04 10:45:05 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 534
+ERROR - 2019-01-04 10:45:05 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 534
+ERROR - 2019-01-04 10:45:05 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 534
+ERROR - 2019-01-04 10:45:05 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 534
+ERROR - 2019-01-04 10:45:06 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 534
+ERROR - 2019-01-04 10:45:06 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 534
+ERROR - 2019-01-04 10:45:06 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 534
+ERROR - 2019-01-04 10:45:06 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 534
+ERROR - 2019-01-04 10:45:06 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 534
+ERROR - 2019-01-04 10:45:06 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 534
+ERROR - 2019-01-04 10:45:06 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 534
+ERROR - 2019-01-04 10:45:06 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 534
+ERROR - 2019-01-04 10:45:06 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 534
+ERROR - 2019-01-04 10:45:06 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 534
+ERROR - 2019-01-04 10:45:06 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 534
+ERROR - 2019-01-04 10:45:06 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 534
+ERROR - 2019-01-04 10:45:06 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 534
+ERROR - 2019-01-04 10:45:07 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 534
+ERROR - 2019-01-04 10:45:07 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 534
+ERROR - 2019-01-04 10:45:07 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 534
+ERROR - 2019-01-04 10:45:07 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 534
+ERROR - 2019-01-04 10:45:07 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 534
+ERROR - 2019-01-04 10:45:07 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 534
+ERROR - 2019-01-04 10:45:07 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 534
+ERROR - 2019-01-04 10:45:07 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 534
+ERROR - 2019-01-04 10:45:07 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 534
+ERROR - 2019-01-04 10:45:07 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 534
+ERROR - 2019-01-04 10:45:07 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 534
+ERROR - 2019-01-04 10:45:07 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 534
+ERROR - 2019-01-04 10:45:07 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 534
+ERROR - 2019-01-04 10:45:07 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 534
+ERROR - 2019-01-04 10:45:08 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 534
+ERROR - 2019-01-04 10:45:08 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 534
+ERROR - 2019-01-04 10:45:08 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 534
+ERROR - 2019-01-04 10:45:08 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 534
+ERROR - 2019-01-04 10:45:08 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 534
+ERROR - 2019-01-04 10:45:08 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 534
+ERROR - 2019-01-04 10:45:08 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 534
+ERROR - 2019-01-04 10:45:08 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 534
+ERROR - 2019-01-04 10:45:08 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 534
+ERROR - 2019-01-04 10:45:08 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 534
+ERROR - 2019-01-04 10:45:08 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 534
+ERROR - 2019-01-04 10:45:08 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 534
+ERROR - 2019-01-04 10:45:08 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 534
+ERROR - 2019-01-04 10:45:09 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 534
+ERROR - 2019-01-04 10:45:09 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 534
+ERROR - 2019-01-04 10:45:09 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 534
+ERROR - 2019-01-04 10:45:09 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 534
+ERROR - 2019-01-04 10:45:09 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 534
+ERROR - 2019-01-04 10:45:09 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 534
+ERROR - 2019-01-04 10:45:09 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 534
+ERROR - 2019-01-04 10:45:09 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 534
+ERROR - 2019-01-04 10:45:09 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 534
+ERROR - 2019-01-04 10:45:09 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 534
+ERROR - 2019-01-04 10:45:09 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 534
+ERROR - 2019-01-04 10:45:09 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 534
+ERROR - 2019-01-04 10:45:09 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 534
+ERROR - 2019-01-04 10:45:09 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 534
+ERROR - 2019-01-04 10:45:10 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 534
+ERROR - 2019-01-04 10:45:10 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 534
+ERROR - 2019-01-04 10:45:10 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 534
+ERROR - 2019-01-04 10:45:10 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 534
+ERROR - 2019-01-04 10:45:10 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 534
+ERROR - 2019-01-04 10:45:10 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 534
+ERROR - 2019-01-04 10:45:10 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 534
+ERROR - 2019-01-04 10:45:10 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 534
+ERROR - 2019-01-04 10:45:10 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 534
+ERROR - 2019-01-04 10:45:10 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 534
+ERROR - 2019-01-04 10:45:10 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 534
+ERROR - 2019-01-04 10:45:10 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 534
+ERROR - 2019-01-04 10:45:11 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 534
+ERROR - 2019-01-04 10:45:11 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 534
+ERROR - 2019-01-04 10:45:11 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 534
+ERROR - 2019-01-04 10:45:11 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 534
+ERROR - 2019-01-04 10:45:11 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 534
+ERROR - 2019-01-04 10:45:11 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 534
+ERROR - 2019-01-04 10:45:11 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 534
+ERROR - 2019-01-04 10:45:11 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 534
+ERROR - 2019-01-04 10:45:11 --> Severity: Notice --> Undefined index: reportdate C:\xampp\htdocs\ria\application\models\cashbook_model.php 392
+ERROR - 2019-01-04 10:45:11 --> Severity: Notice --> Undefined index: Narration C:\xampp\htdocs\ria\application\models\cashbook_model.php 393
+ERROR - 2019-01-04 10:45:11 --> Severity: Notice --> Undefined index: Balance C:\xampp\htdocs\ria\application\models\cashbook_model.php 394
+ERROR - 2019-01-04 10:45:15 --> Severity: Notice --> Undefined variable: fdate C:\xampp\htdocs\ria\application\controllers\cashbook.php 1829
+ERROR - 2019-01-04 10:45:15 --> Severity: Notice --> Undefined variable: tdate C:\xampp\htdocs\ria\application\controllers\cashbook.php 1829
+ERROR - 2019-01-04 10:45:15 --> Severity: Notice --> Undefined variable: fa C:\xampp\htdocs\ria\application\controllers\cashbook.php 1829
+ERROR - 2019-01-04 10:45:15 --> Severity: Notice --> Undefined variable: aa C:\xampp\htdocs\ria\application\controllers\cashbook.php 1829
+ERROR - 2019-01-04 10:45:16 --> Severity: Notice --> Undefined variable: financialyear C:\xampp\htdocs\ria\application\views\bankstatement.php 2
+ERROR - 2019-01-04 10:45:16 --> Severity: Warning --> Invalid argument supplied for foreach() C:\xampp\htdocs\ria\application\views\bankstatement.php 2
+ERROR - 2019-01-04 10:45:16 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 87
+ERROR - 2019-01-04 10:45:16 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 87
+ERROR - 2019-01-04 10:45:16 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 88
+ERROR - 2019-01-04 10:45:16 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 88
+ERROR - 2019-01-04 10:45:16 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 89
+ERROR - 2019-01-04 10:45:16 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 89
+ERROR - 2019-01-04 10:45:16 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 139
+ERROR - 2019-01-04 10:45:16 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 139
+ERROR - 2019-01-04 10:45:16 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 140
+ERROR - 2019-01-04 10:45:16 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 140
+ERROR - 2019-01-04 10:45:16 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 141
+ERROR - 2019-01-04 10:45:16 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 141
+ERROR - 2019-01-04 10:51:45 --> Severity: Notice --> Undefined variable: creditdebit C:\xampp\htdocs\ria\application\views\bankingfile.php 132
+ERROR - 2019-01-04 10:52:23 --> Severity: Notice --> Undefined variable: filename C:\xampp\htdocs\ria\application\controllers\cashbook.php 236
+ERROR - 2019-01-04 10:52:23 --> The upload path does not appear to be valid.
+ERROR - 2019-01-04 10:52:23 --> Severity: Warning --> DOMDocument::loadHTML(): htmlParseStartTag: invalid element name in Entity, line: 13 C:\xampp\htdocs\ria\application\third_party\PHPExcel\Reader\HTML.php 495
+ERROR - 2019-01-04 10:52:23 --> Severity: Warning --> DOMDocument::loadHTML(): ID shLink already defined in Entity, line: 16 C:\xampp\htdocs\ria\application\third_party\PHPExcel\Reader\HTML.php 495
+ERROR - 2019-01-04 10:52:23 --> Severity: Warning --> DOMDocument::loadHTML(): Unexpected end tag : frameset in Entity, line: 57 C:\xampp\htdocs\ria\application\third_party\PHPExcel\Reader\HTML.php 495
+ERROR - 2019-01-04 10:52:23 --> Severity: Warning --> DOMDocument::loadHTML(): Unexpected end tag : frameset in Entity, line: 57 C:\xampp\htdocs\ria\application\third_party\PHPExcel\Reader\HTML.php 495
+ERROR - 2019-01-04 10:52:23 --> Severity: Warning --> DOMDocument::loadHTML(): Unexpected end tag : style in Entity, line: 72 C:\xampp\htdocs\ria\application\third_party\PHPExcel\Reader\HTML.php 495
+ERROR - 2019-01-04 10:52:23 --> Severity: Warning --> DOMDocument::loadHTML(): htmlParseStartTag: misplaced <body> tag in Entity, line: 73 C:\xampp\htdocs\ria\application\third_party\PHPExcel\Reader\HTML.php 495
+ERROR - 2019-01-04 10:52:23 --> Severity: Warning --> DOMDocument::loadHTML(): ID tdScroll already defined in Entity, line: 77 C:\xampp\htdocs\ria\application\third_party\PHPExcel\Reader\HTML.php 495
+ERROR - 2019-01-04 10:52:23 --> Severity: Warning --> DOMDocument::loadHTML(): htmlParseEntityRef: expecting ';' in Entity, line: 77 C:\xampp\htdocs\ria\application\third_party\PHPExcel\Reader\HTML.php 495
+ERROR - 2019-01-04 10:52:23 --> Severity: Warning --> DOMDocument::loadHTML(): ID tdScroll already defined in Entity, line: 78 C:\xampp\htdocs\ria\application\third_party\PHPExcel\Reader\HTML.php 495
+ERROR - 2019-01-04 10:52:24 --> Severity: Warning --> DOMDocument::loadHTML(): htmlParseEntityRef: expecting ';' in Entity, line: 78 C:\xampp\htdocs\ria\application\third_party\PHPExcel\Reader\HTML.php 495
+ERROR - 2019-01-04 10:52:24 --> Severity: Warning --> DOMDocument::loadHTML(): ID tdScroll already defined in Entity, line: 79 C:\xampp\htdocs\ria\application\third_party\PHPExcel\Reader\HTML.php 495
+ERROR - 2019-01-04 10:52:24 --> Severity: Warning --> DOMDocument::loadHTML(): htmlParseStartTag: misplaced <html> tag in Entity, line: 89 C:\xampp\htdocs\ria\application\third_party\PHPExcel\Reader\HTML.php 495
+ERROR - 2019-01-04 10:52:24 --> Severity: Warning --> DOMDocument::loadHTML(): error parsing attribute name in Entity, line: 99 C:\xampp\htdocs\ria\application\third_party\PHPExcel\Reader\HTML.php 495
+ERROR - 2019-01-04 10:52:24 --> Severity: Warning --> DOMDocument::loadHTML(): error parsing attribute name in Entity, line: 100 C:\xampp\htdocs\ria\application\third_party\PHPExcel\Reader\HTML.php 495
+ERROR - 2019-01-04 10:52:24 --> Severity: Warning --> DOMDocument::loadHTML(): Tag icellcount invalid in Entity, line: 100 C:\xampp\htdocs\ria\application\third_party\PHPExcel\Reader\HTML.php 495
+ERROR - 2019-01-04 10:52:24 --> Severity: Warning --> DOMDocument::loadHTML(): htmlParseStartTag: invalid element name in Entity, line: 103 C:\xampp\htdocs\ria\application\third_party\PHPExcel\Reader\HTML.php 495
+ERROR - 2019-01-04 10:52:24 --> Severity: Warning --> DOMDocument::loadHTML(): error parsing attribute name in Entity, line: 111 C:\xampp\htdocs\ria\application\third_party\PHPExcel\Reader\HTML.php 495
+ERROR - 2019-01-04 10:52:24 --> Severity: Warning --> DOMDocument::loadHTML(): error parsing attribute name in Entity, line: 112 C:\xampp\htdocs\ria\application\third_party\PHPExcel\Reader\HTML.php 495
+ERROR - 2019-01-04 10:52:24 --> Severity: Warning --> DOMDocument::loadHTML(): Tag icellcount invalid in Entity, line: 112 C:\xampp\htdocs\ria\application\third_party\PHPExcel\Reader\HTML.php 495
+ERROR - 2019-01-04 10:52:24 --> Severity: Warning --> DOMDocument::loadHTML(): Unexpected end tag : td in Entity, line: 112 C:\xampp\htdocs\ria\application\third_party\PHPExcel\Reader\HTML.php 495
+ERROR - 2019-01-04 10:52:24 --> Severity: Warning --> DOMDocument::loadHTML(): error parsing attribute name in Entity, line: 114 C:\xampp\htdocs\ria\application\third_party\PHPExcel\Reader\HTML.php 495
+ERROR - 2019-01-04 10:52:24 --> Severity: Warning --> DOMDocument::loadHTML(): error parsing attribute name in Entity, line: 114 C:\xampp\htdocs\ria\application\third_party\PHPExcel\Reader\HTML.php 495
+ERROR - 2019-01-04 10:52:24 --> Severity: Warning --> DOMDocument::loadHTML(): error parsing attribute name in Entity, line: 115 C:\xampp\htdocs\ria\application\third_party\PHPExcel\Reader\HTML.php 495
+ERROR - 2019-01-04 10:52:24 --> Severity: Warning --> DOMDocument::loadHTML(): Tag c_ltabs invalid in Entity, line: 115 C:\xampp\htdocs\ria\application\third_party\PHPExcel\Reader\HTML.php 495
+ERROR - 2019-01-04 10:52:24 --> Severity: Warning --> DOMDocument::loadHTML(): Unexpected end tag : td in Entity, line: 115 C:\xampp\htdocs\ria\application\third_party\PHPExcel\Reader\HTML.php 495
+ERROR - 2019-01-04 10:52:24 --> Severity: Warning --> DOMDocument::loadHTML(): ID tdTab already defined in Entity, line: 120 C:\xampp\htdocs\ria\application\third_party\PHPExcel\Reader\HTML.php 495
+ERROR - 2019-01-04 10:52:24 --> Severity: Warning --> DOMDocument::loadHTML(): ID aTab already defined in Entity, line: 120 C:\xampp\htdocs\ria\application\third_party\PHPExcel\Reader\HTML.php 495
+ERROR - 2019-01-04 10:52:24 --> Severity: Warning --> DOMDocument::loadHTML(): error parsing attribute name in Entity, line: 122 C:\xampp\htdocs\ria\application\third_party\PHPExcel\Reader\HTML.php 495
+ERROR - 2019-01-04 10:52:24 --> Severity: Warning --> DOMDocument::loadHTML(): error parsing attribute name in Entity, line: 123 C:\xampp\htdocs\ria\application\third_party\PHPExcel\Reader\HTML.php 495
+ERROR - 2019-01-04 10:52:24 --> Severity: Warning --> DOMDocument::loadHTML(): Tag c_ltabs invalid in Entity, line: 123 C:\xampp\htdocs\ria\application\third_party\PHPExcel\Reader\HTML.php 495
+ERROR - 2019-01-04 10:52:24 --> Severity: Warning --> DOMDocument::loadHTML(): Unexpected end tag : td in Entity, line: 123 C:\xampp\htdocs\ria\application\third_party\PHPExcel\Reader\HTML.php 495
+ERROR - 2019-01-04 10:52:24 --> Severity: Warning --> DOMDocument::loadHTML(): error parsing attribute name in Entity, line: 126 C:\xampp\htdocs\ria\application\third_party\PHPExcel\Reader\HTML.php 495
+ERROR - 2019-01-04 10:52:24 --> Severity: Warning --> DOMDocument::loadHTML(): error parsing attribute name in Entity, line: 127 C:\xampp\htdocs\ria\application\third_party\PHPExcel\Reader\HTML.php 495
+ERROR - 2019-01-04 10:52:24 --> Severity: Warning --> DOMDocument::loadHTML(): Tag icellcount invalid in Entity, line: 127 C:\xampp\htdocs\ria\application\third_party\PHPExcel\Reader\HTML.php 495
+ERROR - 2019-01-04 10:52:25 --> Severity: Warning --> DOMDocument::loadHTML(): Unexpected end tag : td in Entity, line: 127 C:\xampp\htdocs\ria\application\third_party\PHPExcel\Reader\HTML.php 495
+ERROR - 2019-01-04 10:52:25 --> Severity: Warning --> DOMDocument::loadHTML(): error parsing attribute name in Entity, line: 129 C:\xampp\htdocs\ria\application\third_party\PHPExcel\Reader\HTML.php 495
+ERROR - 2019-01-04 10:52:25 --> Severity: Warning --> DOMDocument::loadHTML(): error parsing attribute name in Entity, line: 130 C:\xampp\htdocs\ria\application\third_party\PHPExcel\Reader\HTML.php 495
+ERROR - 2019-01-04 10:52:25 --> Severity: Warning --> DOMDocument::loadHTML(): Tag c_ltabs invalid in Entity, line: 130 C:\xampp\htdocs\ria\application\third_party\PHPExcel\Reader\HTML.php 495
+ERROR - 2019-01-04 10:52:25 --> Severity: Warning --> DOMDocument::loadHTML(): Unexpected end tag : td in Entity, line: 130 C:\xampp\htdocs\ria\application\third_party\PHPExcel\Reader\HTML.php 495
+ERROR - 2019-01-04 10:52:25 --> Severity: Warning --> DOMDocument::loadHTML(): Unexpected end tag : tr in Entity, line: 134 C:\xampp\htdocs\ria\application\third_party\PHPExcel\Reader\HTML.php 495
+ERROR - 2019-01-04 10:52:25 --> Severity: Warning --> DOMDocument::loadHTML(): htmlParseStartTag: invalid element name in Entity, line: 150 C:\xampp\htdocs\ria\application\third_party\PHPExcel\Reader\HTML.php 495
+ERROR - 2019-01-04 10:52:25 --> Severity: Warning --> DOMDocument::loadHTML(): error parsing attribute name in Entity, line: 168 C:\xampp\htdocs\ria\application\third_party\PHPExcel\Reader\HTML.php 495
+ERROR - 2019-01-04 10:52:25 --> Severity: Warning --> DOMDocument::loadHTML(): error parsing attribute name in Entity, line: 169 C:\xampp\htdocs\ria\application\third_party\PHPExcel\Reader\HTML.php 495
+ERROR - 2019-01-04 10:52:25 --> Severity: Warning --> DOMDocument::loadHTML(): error parsing attribute name in Entity, line: 171 C:\xampp\htdocs\ria\application\third_party\PHPExcel\Reader\HTML.php 495
+ERROR - 2019-01-04 10:52:25 --> Severity: Warning --> DOMDocument::loadHTML(): error parsing attribute name in Entity, line: 172 C:\xampp\htdocs\ria\application\third_party\PHPExcel\Reader\HTML.php 495
+ERROR - 2019-01-04 10:52:25 --> Severity: Warning --> DOMDocument::loadHTML(): error parsing attribute name in Entity, line: 172 C:\xampp\htdocs\ria\application\third_party\PHPExcel\Reader\HTML.php 495
+ERROR - 2019-01-04 10:52:25 --> Severity: Warning --> DOMDocument::loadHTML(): Attribute if redefined in Entity, line: 173 C:\xampp\htdocs\ria\application\third_party\PHPExcel\Reader\HTML.php 495
+ERROR - 2019-01-04 10:52:25 --> Severity: Warning --> DOMDocument::loadHTML(): error parsing attribute name in Entity, line: 173 C:\xampp\htdocs\ria\application\third_party\PHPExcel\Reader\HTML.php 495
+ERROR - 2019-01-04 10:52:25 --> Severity: Warning --> DOMDocument::loadHTML(): Tag c_ltabs invalid in Entity, line: 173 C:\xampp\htdocs\ria\application\third_party\PHPExcel\Reader\HTML.php 495
+ERROR - 2019-01-04 10:52:25 --> Severity: Warning --> DOMDocument::loadHTML(): error parsing attribute name in Entity, line: 174 C:\xampp\htdocs\ria\application\third_party\PHPExcel\Reader\HTML.php 495
+ERROR - 2019-01-04 10:52:25 --> Severity: Warning --> DOMDocument::loadHTML(): error parsing attribute name in Entity, line: 175 C:\xampp\htdocs\ria\application\third_party\PHPExcel\Reader\HTML.php 495
+ERROR - 2019-01-04 10:52:25 --> Severity: Warning --> DOMDocument::loadHTML(): error parsing attribute name in Entity, line: 177 C:\xampp\htdocs\ria\application\third_party\PHPExcel\Reader\HTML.php 495
+ERROR - 2019-01-04 10:52:25 --> Severity: Warning --> DOMDocument::loadHTML(): error parsing attribute name in Entity, line: 178 C:\xampp\htdocs\ria\application\third_party\PHPExcel\Reader\HTML.php 495
+ERROR - 2019-01-04 10:52:25 --> Severity: Warning --> DOMDocument::loadHTML(): error parsing attribute name in Entity, line: 179 C:\xampp\htdocs\ria\application\third_party\PHPExcel\Reader\HTML.php 495
+ERROR - 2019-01-04 10:52:25 --> Severity: Warning --> DOMDocument::loadHTML(): Attribute inexttab redefined in Entity, line: 180 C:\xampp\htdocs\ria\application\third_party\PHPExcel\Reader\HTML.php 495
+ERROR - 2019-01-04 10:52:25 --> Severity: Warning --> DOMDocument::loadHTML(): error parsing attribute name in Entity, line: 180 C:\xampp\htdocs\ria\application\third_party\PHPExcel\Reader\HTML.php 495
+ERROR - 2019-01-04 10:52:25 --> Severity: Warning --> DOMDocument::loadHTML(): error parsing attribute name in Entity, line: 181 C:\xampp\htdocs\ria\application\third_party\PHPExcel\Reader\HTML.php 495
+ERROR - 2019-01-04 10:52:25 --> Severity: Warning --> DOMDocument::loadHTML(): error parsing attribute name in Entity, line: 183 C:\xampp\htdocs\ria\application\third_party\PHPExcel\Reader\HTML.php 495
+ERROR - 2019-01-04 10:52:25 --> Severity: Warning --> DOMDocument::loadHTML(): error parsing attribute name in Entity, line: 184 C:\xampp\htdocs\ria\application\third_party\PHPExcel\Reader\HTML.php 495
+ERROR - 2019-01-04 10:52:25 --> Severity: Warning --> DOMDocument::loadHTML(): Attribute inexttab redefined in Entity, line: 185 C:\xampp\htdocs\ria\application\third_party\PHPExcel\Reader\HTML.php 495
+ERROR - 2019-01-04 10:52:26 --> Severity: Warning --> DOMDocument::loadHTML(): Attribute if redefined in Entity, line: 187 C:\xampp\htdocs\ria\application\third_party\PHPExcel\Reader\HTML.php 495
+ERROR - 2019-01-04 10:52:26 --> Severity: Warning --> DOMDocument::loadHTML(): error parsing attribute name in Entity, line: 187 C:\xampp\htdocs\ria\application\third_party\PHPExcel\Reader\HTML.php 495
+ERROR - 2019-01-04 10:52:26 --> Severity: Warning --> DOMDocument::loadHTML(): Tag c_ltabs invalid in Entity, line: 187 C:\xampp\htdocs\ria\application\third_party\PHPExcel\Reader\HTML.php 495
+ERROR - 2019-01-04 10:52:26 --> Severity: Warning --> DOMDocument::loadHTML(): htmlParseStartTag: invalid element name in Entity, line: 210 C:\xampp\htdocs\ria\application\third_party\PHPExcel\Reader\HTML.php 495
+ERROR - 2019-01-04 10:52:26 --> Severity: Warning --> DOMDocument::loadHTML(): htmlParseEntityRef: no name in Entity, line: 214 C:\xampp\htdocs\ria\application\third_party\PHPExcel\Reader\HTML.php 495
+ERROR - 2019-01-04 10:52:26 --> Severity: Warning --> DOMDocument::loadHTML(): htmlParseEntityRef: no name in Entity, line: 214 C:\xampp\htdocs\ria\application\third_party\PHPExcel\Reader\HTML.php 495
+ERROR - 2019-01-04 10:52:26 --> Severity: Warning --> DOMDocument::loadHTML(): htmlParseStartTag: invalid element name in Entity, line: 214 C:\xampp\htdocs\ria\application\third_party\PHPExcel\Reader\HTML.php 495
+ERROR - 2019-01-04 10:52:26 --> Severity: Warning --> DOMDocument::loadHTML(): htmlParseEntityRef: no name in Entity, line: 271 C:\xampp\htdocs\ria\application\third_party\PHPExcel\Reader\HTML.php 495
+ERROR - 2019-01-04 10:52:26 --> Severity: Warning --> DOMDocument::loadHTML(): htmlParseEntityRef: no name in Entity, line: 271 C:\xampp\htdocs\ria\application\third_party\PHPExcel\Reader\HTML.php 495
+ERROR - 2019-01-04 10:52:26 --> Severity: Warning --> DOMDocument::loadHTML(): htmlParseEntityRef: no name in Entity, line: 272 C:\xampp\htdocs\ria\application\third_party\PHPExcel\Reader\HTML.php 495
+ERROR - 2019-01-04 10:52:26 --> Severity: Warning --> DOMDocument::loadHTML(): htmlParseEntityRef: no name in Entity, line: 272 C:\xampp\htdocs\ria\application\third_party\PHPExcel\Reader\HTML.php 495
+ERROR - 2019-01-04 10:52:26 --> Severity: Warning --> DOMDocument::loadHTML(): Unexpected end tag : script in Entity, line: 296 C:\xampp\htdocs\ria\application\third_party\PHPExcel\Reader\HTML.php 495
+ERROR - 2019-01-04 10:52:26 --> Severity: Warning --> DOMDocument::loadHTML(): htmlParseStartTag: invalid element name in Entity, line: 297 C:\xampp\htdocs\ria\application\third_party\PHPExcel\Reader\HTML.php 495
+ERROR - 2019-01-04 10:52:26 --> Severity: Warning --> DOMDocument::loadHTML(): Unexpected end tag : head in Entity, line: 316 C:\xampp\htdocs\ria\application\third_party\PHPExcel\Reader\HTML.php 495
+ERROR - 2019-01-04 10:52:30 --> Severity: Notice --> Undefined variable: fdate C:\xampp\htdocs\ria\application\controllers\cashbook.php 1829
+ERROR - 2019-01-04 10:52:30 --> Severity: Notice --> Undefined variable: tdate C:\xampp\htdocs\ria\application\controllers\cashbook.php 1829
+ERROR - 2019-01-04 10:52:30 --> Severity: Notice --> Undefined variable: fa C:\xampp\htdocs\ria\application\controllers\cashbook.php 1829
+ERROR - 2019-01-04 10:52:30 --> Severity: Notice --> Undefined variable: aa C:\xampp\htdocs\ria\application\controllers\cashbook.php 1829
+ERROR - 2019-01-04 10:52:30 --> Severity: Notice --> Undefined variable: financialyear C:\xampp\htdocs\ria\application\views\bankstatement.php 2
+ERROR - 2019-01-04 10:52:30 --> Severity: Warning --> Invalid argument supplied for foreach() C:\xampp\htdocs\ria\application\views\bankstatement.php 2
+ERROR - 2019-01-04 10:52:30 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 87
+ERROR - 2019-01-04 10:52:30 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 87
+ERROR - 2019-01-04 10:52:30 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 88
+ERROR - 2019-01-04 10:52:30 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 88
+ERROR - 2019-01-04 10:52:30 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 89
+ERROR - 2019-01-04 10:52:30 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 89
+ERROR - 2019-01-04 10:52:31 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 139
+ERROR - 2019-01-04 10:52:31 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 139
+ERROR - 2019-01-04 10:52:31 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 140
+ERROR - 2019-01-04 10:52:31 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 140
+ERROR - 2019-01-04 10:52:31 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 141
+ERROR - 2019-01-04 10:52:31 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 141
+ERROR - 2019-01-04 10:55:01 --> Severity: Notice --> Undefined variable: creditdebit C:\xampp\htdocs\ria\application\views\bankingfile.php 132
+ERROR - 2019-01-04 10:55:34 --> Severity: Notice --> Undefined variable: filename C:\xampp\htdocs\ria\application\controllers\cashbook.php 236
+ERROR - 2019-01-04 10:55:34 --> The upload path does not appear to be valid.
+ERROR - 2019-01-04 10:55:34 --> Severity: Warning --> DOMDocument::loadHTML(): htmlParseStartTag: invalid element name in Entity, line: 13 C:\xampp\htdocs\ria\application\third_party\PHPExcel\Reader\HTML.php 495
+ERROR - 2019-01-04 10:55:34 --> Severity: Warning --> DOMDocument::loadHTML(): ID shLink already defined in Entity, line: 16 C:\xampp\htdocs\ria\application\third_party\PHPExcel\Reader\HTML.php 495
+ERROR - 2019-01-04 10:55:34 --> Severity: Warning --> DOMDocument::loadHTML(): Unexpected end tag : frameset in Entity, line: 57 C:\xampp\htdocs\ria\application\third_party\PHPExcel\Reader\HTML.php 495
+ERROR - 2019-01-04 10:55:34 --> Severity: Warning --> DOMDocument::loadHTML(): Unexpected end tag : frameset in Entity, line: 57 C:\xampp\htdocs\ria\application\third_party\PHPExcel\Reader\HTML.php 495
+ERROR - 2019-01-04 10:55:35 --> Severity: Warning --> DOMDocument::loadHTML(): Unexpected end tag : style in Entity, line: 72 C:\xampp\htdocs\ria\application\third_party\PHPExcel\Reader\HTML.php 495
+ERROR - 2019-01-04 10:55:35 --> Severity: Warning --> DOMDocument::loadHTML(): htmlParseStartTag: misplaced <body> tag in Entity, line: 73 C:\xampp\htdocs\ria\application\third_party\PHPExcel\Reader\HTML.php 495
+ERROR - 2019-01-04 10:55:35 --> Severity: Warning --> DOMDocument::loadHTML(): ID tdScroll already defined in Entity, line: 77 C:\xampp\htdocs\ria\application\third_party\PHPExcel\Reader\HTML.php 495
+ERROR - 2019-01-04 10:55:35 --> Severity: Warning --> DOMDocument::loadHTML(): htmlParseEntityRef: expecting ';' in Entity, line: 77 C:\xampp\htdocs\ria\application\third_party\PHPExcel\Reader\HTML.php 495
+ERROR - 2019-01-04 10:55:35 --> Severity: Warning --> DOMDocument::loadHTML(): ID tdScroll already defined in Entity, line: 78 C:\xampp\htdocs\ria\application\third_party\PHPExcel\Reader\HTML.php 495
+ERROR - 2019-01-04 10:55:35 --> Severity: Warning --> DOMDocument::loadHTML(): htmlParseEntityRef: expecting ';' in Entity, line: 78 C:\xampp\htdocs\ria\application\third_party\PHPExcel\Reader\HTML.php 495
+ERROR - 2019-01-04 10:55:35 --> Severity: Warning --> DOMDocument::loadHTML(): ID tdScroll already defined in Entity, line: 79 C:\xampp\htdocs\ria\application\third_party\PHPExcel\Reader\HTML.php 495
+ERROR - 2019-01-04 10:55:35 --> Severity: Warning --> DOMDocument::loadHTML(): htmlParseStartTag: misplaced <html> tag in Entity, line: 89 C:\xampp\htdocs\ria\application\third_party\PHPExcel\Reader\HTML.php 495
+ERROR - 2019-01-04 10:55:35 --> Severity: Warning --> DOMDocument::loadHTML(): error parsing attribute name in Entity, line: 99 C:\xampp\htdocs\ria\application\third_party\PHPExcel\Reader\HTML.php 495
+ERROR - 2019-01-04 10:55:35 --> Severity: Warning --> DOMDocument::loadHTML(): error parsing attribute name in Entity, line: 100 C:\xampp\htdocs\ria\application\third_party\PHPExcel\Reader\HTML.php 495
+ERROR - 2019-01-04 10:55:35 --> Severity: Warning --> DOMDocument::loadHTML(): Tag icellcount invalid in Entity, line: 100 C:\xampp\htdocs\ria\application\third_party\PHPExcel\Reader\HTML.php 495
+ERROR - 2019-01-04 10:55:35 --> Severity: Warning --> DOMDocument::loadHTML(): htmlParseStartTag: invalid element name in Entity, line: 103 C:\xampp\htdocs\ria\application\third_party\PHPExcel\Reader\HTML.php 495
+ERROR - 2019-01-04 10:55:36 --> Severity: Warning --> DOMDocument::loadHTML(): error parsing attribute name in Entity, line: 111 C:\xampp\htdocs\ria\application\third_party\PHPExcel\Reader\HTML.php 495
+ERROR - 2019-01-04 10:55:36 --> Severity: Warning --> DOMDocument::loadHTML(): error parsing attribute name in Entity, line: 112 C:\xampp\htdocs\ria\application\third_party\PHPExcel\Reader\HTML.php 495
+ERROR - 2019-01-04 10:55:36 --> Severity: Warning --> DOMDocument::loadHTML(): Tag icellcount invalid in Entity, line: 112 C:\xampp\htdocs\ria\application\third_party\PHPExcel\Reader\HTML.php 495
+ERROR - 2019-01-04 10:55:36 --> Severity: Warning --> DOMDocument::loadHTML(): Unexpected end tag : td in Entity, line: 112 C:\xampp\htdocs\ria\application\third_party\PHPExcel\Reader\HTML.php 495
+ERROR - 2019-01-04 10:55:36 --> Severity: Warning --> DOMDocument::loadHTML(): error parsing attribute name in Entity, line: 114 C:\xampp\htdocs\ria\application\third_party\PHPExcel\Reader\HTML.php 495
+ERROR - 2019-01-04 10:55:36 --> Severity: Warning --> DOMDocument::loadHTML(): error parsing attribute name in Entity, line: 114 C:\xampp\htdocs\ria\application\third_party\PHPExcel\Reader\HTML.php 495
+ERROR - 2019-01-04 10:55:36 --> Severity: Warning --> DOMDocument::loadHTML(): error parsing attribute name in Entity, line: 115 C:\xampp\htdocs\ria\application\third_party\PHPExcel\Reader\HTML.php 495
+ERROR - 2019-01-04 10:55:36 --> Severity: Warning --> DOMDocument::loadHTML(): Tag c_ltabs invalid in Entity, line: 115 C:\xampp\htdocs\ria\application\third_party\PHPExcel\Reader\HTML.php 495
+ERROR - 2019-01-04 10:55:36 --> Severity: Warning --> DOMDocument::loadHTML(): Unexpected end tag : td in Entity, line: 115 C:\xampp\htdocs\ria\application\third_party\PHPExcel\Reader\HTML.php 495
+ERROR - 2019-01-04 10:55:36 --> Severity: Warning --> DOMDocument::loadHTML(): ID tdTab already defined in Entity, line: 120 C:\xampp\htdocs\ria\application\third_party\PHPExcel\Reader\HTML.php 495
+ERROR - 2019-01-04 10:55:36 --> Severity: Warning --> DOMDocument::loadHTML(): ID aTab already defined in Entity, line: 120 C:\xampp\htdocs\ria\application\third_party\PHPExcel\Reader\HTML.php 495
+ERROR - 2019-01-04 10:55:36 --> Severity: Warning --> DOMDocument::loadHTML(): error parsing attribute name in Entity, line: 122 C:\xampp\htdocs\ria\application\third_party\PHPExcel\Reader\HTML.php 495
+ERROR - 2019-01-04 10:55:36 --> Severity: Warning --> DOMDocument::loadHTML(): error parsing attribute name in Entity, line: 123 C:\xampp\htdocs\ria\application\third_party\PHPExcel\Reader\HTML.php 495
+ERROR - 2019-01-04 10:55:36 --> Severity: Warning --> DOMDocument::loadHTML(): Tag c_ltabs invalid in Entity, line: 123 C:\xampp\htdocs\ria\application\third_party\PHPExcel\Reader\HTML.php 495
+ERROR - 2019-01-04 10:55:36 --> Severity: Warning --> DOMDocument::loadHTML(): Unexpected end tag : td in Entity, line: 123 C:\xampp\htdocs\ria\application\third_party\PHPExcel\Reader\HTML.php 495
+ERROR - 2019-01-04 10:55:36 --> Severity: Warning --> DOMDocument::loadHTML(): error parsing attribute name in Entity, line: 126 C:\xampp\htdocs\ria\application\third_party\PHPExcel\Reader\HTML.php 495
+ERROR - 2019-01-04 10:55:36 --> Severity: Warning --> DOMDocument::loadHTML(): error parsing attribute name in Entity, line: 127 C:\xampp\htdocs\ria\application\third_party\PHPExcel\Reader\HTML.php 495
+ERROR - 2019-01-04 10:55:36 --> Severity: Warning --> DOMDocument::loadHTML(): Tag icellcount invalid in Entity, line: 127 C:\xampp\htdocs\ria\application\third_party\PHPExcel\Reader\HTML.php 495
+ERROR - 2019-01-04 10:55:36 --> Severity: Warning --> DOMDocument::loadHTML(): Unexpected end tag : td in Entity, line: 127 C:\xampp\htdocs\ria\application\third_party\PHPExcel\Reader\HTML.php 495
+ERROR - 2019-01-04 10:55:36 --> Severity: Warning --> DOMDocument::loadHTML(): error parsing attribute name in Entity, line: 129 C:\xampp\htdocs\ria\application\third_party\PHPExcel\Reader\HTML.php 495
+ERROR - 2019-01-04 10:55:36 --> Severity: Warning --> DOMDocument::loadHTML(): error parsing attribute name in Entity, line: 130 C:\xampp\htdocs\ria\application\third_party\PHPExcel\Reader\HTML.php 495
+ERROR - 2019-01-04 10:55:36 --> Severity: Warning --> DOMDocument::loadHTML(): Tag c_ltabs invalid in Entity, line: 130 C:\xampp\htdocs\ria\application\third_party\PHPExcel\Reader\HTML.php 495
+ERROR - 2019-01-04 10:55:36 --> Severity: Warning --> DOMDocument::loadHTML(): Unexpected end tag : td in Entity, line: 130 C:\xampp\htdocs\ria\application\third_party\PHPExcel\Reader\HTML.php 495
+ERROR - 2019-01-04 10:55:37 --> Severity: Warning --> DOMDocument::loadHTML(): Unexpected end tag : tr in Entity, line: 134 C:\xampp\htdocs\ria\application\third_party\PHPExcel\Reader\HTML.php 495
+ERROR - 2019-01-04 10:55:37 --> Severity: Warning --> DOMDocument::loadHTML(): htmlParseStartTag: invalid element name in Entity, line: 150 C:\xampp\htdocs\ria\application\third_party\PHPExcel\Reader\HTML.php 495
+ERROR - 2019-01-04 10:55:37 --> Severity: Warning --> DOMDocument::loadHTML(): error parsing attribute name in Entity, line: 168 C:\xampp\htdocs\ria\application\third_party\PHPExcel\Reader\HTML.php 495
+ERROR - 2019-01-04 10:55:37 --> Severity: Warning --> DOMDocument::loadHTML(): error parsing attribute name in Entity, line: 169 C:\xampp\htdocs\ria\application\third_party\PHPExcel\Reader\HTML.php 495
+ERROR - 2019-01-04 10:55:37 --> Severity: Warning --> DOMDocument::loadHTML(): error parsing attribute name in Entity, line: 171 C:\xampp\htdocs\ria\application\third_party\PHPExcel\Reader\HTML.php 495
+ERROR - 2019-01-04 10:55:37 --> Severity: Warning --> DOMDocument::loadHTML(): error parsing attribute name in Entity, line: 172 C:\xampp\htdocs\ria\application\third_party\PHPExcel\Reader\HTML.php 495
+ERROR - 2019-01-04 10:55:37 --> Severity: Warning --> DOMDocument::loadHTML(): error parsing attribute name in Entity, line: 172 C:\xampp\htdocs\ria\application\third_party\PHPExcel\Reader\HTML.php 495
+ERROR - 2019-01-04 10:55:37 --> Severity: Warning --> DOMDocument::loadHTML(): Attribute if redefined in Entity, line: 173 C:\xampp\htdocs\ria\application\third_party\PHPExcel\Reader\HTML.php 495
+ERROR - 2019-01-04 10:55:37 --> Severity: Warning --> DOMDocument::loadHTML(): error parsing attribute name in Entity, line: 173 C:\xampp\htdocs\ria\application\third_party\PHPExcel\Reader\HTML.php 495
+ERROR - 2019-01-04 10:55:37 --> Severity: Warning --> DOMDocument::loadHTML(): Tag c_ltabs invalid in Entity, line: 173 C:\xampp\htdocs\ria\application\third_party\PHPExcel\Reader\HTML.php 495
+ERROR - 2019-01-04 10:55:37 --> Severity: Warning --> DOMDocument::loadHTML(): error parsing attribute name in Entity, line: 174 C:\xampp\htdocs\ria\application\third_party\PHPExcel\Reader\HTML.php 495
+ERROR - 2019-01-04 10:55:37 --> Severity: Warning --> DOMDocument::loadHTML(): error parsing attribute name in Entity, line: 175 C:\xampp\htdocs\ria\application\third_party\PHPExcel\Reader\HTML.php 495
+ERROR - 2019-01-04 10:55:37 --> Severity: Warning --> DOMDocument::loadHTML(): error parsing attribute name in Entity, line: 177 C:\xampp\htdocs\ria\application\third_party\PHPExcel\Reader\HTML.php 495
+ERROR - 2019-01-04 10:55:37 --> Severity: Warning --> DOMDocument::loadHTML(): error parsing attribute name in Entity, line: 178 C:\xampp\htdocs\ria\application\third_party\PHPExcel\Reader\HTML.php 495
+ERROR - 2019-01-04 10:55:37 --> Severity: Warning --> DOMDocument::loadHTML(): error parsing attribute name in Entity, line: 179 C:\xampp\htdocs\ria\application\third_party\PHPExcel\Reader\HTML.php 495
+ERROR - 2019-01-04 10:55:37 --> Severity: Warning --> DOMDocument::loadHTML(): Attribute inexttab redefined in Entity, line: 180 C:\xampp\htdocs\ria\application\third_party\PHPExcel\Reader\HTML.php 495
+ERROR - 2019-01-04 10:55:37 --> Severity: Warning --> DOMDocument::loadHTML(): error parsing attribute name in Entity, line: 180 C:\xampp\htdocs\ria\application\third_party\PHPExcel\Reader\HTML.php 495
+ERROR - 2019-01-04 10:55:37 --> Severity: Warning --> DOMDocument::loadHTML(): error parsing attribute name in Entity, line: 181 C:\xampp\htdocs\ria\application\third_party\PHPExcel\Reader\HTML.php 495
+ERROR - 2019-01-04 10:55:37 --> Severity: Warning --> DOMDocument::loadHTML(): error parsing attribute name in Entity, line: 183 C:\xampp\htdocs\ria\application\third_party\PHPExcel\Reader\HTML.php 495
+ERROR - 2019-01-04 10:55:37 --> Severity: Warning --> DOMDocument::loadHTML(): error parsing attribute name in Entity, line: 184 C:\xampp\htdocs\ria\application\third_party\PHPExcel\Reader\HTML.php 495
+ERROR - 2019-01-04 10:55:37 --> Severity: Warning --> DOMDocument::loadHTML(): Attribute inexttab redefined in Entity, line: 185 C:\xampp\htdocs\ria\application\third_party\PHPExcel\Reader\HTML.php 495
+ERROR - 2019-01-04 10:55:37 --> Severity: Warning --> DOMDocument::loadHTML(): Attribute if redefined in Entity, line: 187 C:\xampp\htdocs\ria\application\third_party\PHPExcel\Reader\HTML.php 495
+ERROR - 2019-01-04 10:55:37 --> Severity: Warning --> DOMDocument::loadHTML(): error parsing attribute name in Entity, line: 187 C:\xampp\htdocs\ria\application\third_party\PHPExcel\Reader\HTML.php 495
+ERROR - 2019-01-04 10:55:37 --> Severity: Warning --> DOMDocument::loadHTML(): Tag c_ltabs invalid in Entity, line: 187 C:\xampp\htdocs\ria\application\third_party\PHPExcel\Reader\HTML.php 495
+ERROR - 2019-01-04 10:55:37 --> Severity: Warning --> DOMDocument::loadHTML(): htmlParseStartTag: invalid element name in Entity, line: 210 C:\xampp\htdocs\ria\application\third_party\PHPExcel\Reader\HTML.php 495
+ERROR - 2019-01-04 10:55:38 --> Severity: Warning --> DOMDocument::loadHTML(): htmlParseEntityRef: no name in Entity, line: 214 C:\xampp\htdocs\ria\application\third_party\PHPExcel\Reader\HTML.php 495
+ERROR - 2019-01-04 10:55:38 --> Severity: Warning --> DOMDocument::loadHTML(): htmlParseEntityRef: no name in Entity, line: 214 C:\xampp\htdocs\ria\application\third_party\PHPExcel\Reader\HTML.php 495
+ERROR - 2019-01-04 10:55:38 --> Severity: Warning --> DOMDocument::loadHTML(): htmlParseStartTag: invalid element name in Entity, line: 214 C:\xampp\htdocs\ria\application\third_party\PHPExcel\Reader\HTML.php 495
+ERROR - 2019-01-04 10:55:38 --> Severity: Warning --> DOMDocument::loadHTML(): htmlParseEntityRef: no name in Entity, line: 271 C:\xampp\htdocs\ria\application\third_party\PHPExcel\Reader\HTML.php 495
+ERROR - 2019-01-04 10:55:38 --> Severity: Warning --> DOMDocument::loadHTML(): htmlParseEntityRef: no name in Entity, line: 271 C:\xampp\htdocs\ria\application\third_party\PHPExcel\Reader\HTML.php 495
+ERROR - 2019-01-04 10:55:38 --> Severity: Warning --> DOMDocument::loadHTML(): htmlParseEntityRef: no name in Entity, line: 272 C:\xampp\htdocs\ria\application\third_party\PHPExcel\Reader\HTML.php 495
+ERROR - 2019-01-04 10:55:38 --> Severity: Warning --> DOMDocument::loadHTML(): htmlParseEntityRef: no name in Entity, line: 272 C:\xampp\htdocs\ria\application\third_party\PHPExcel\Reader\HTML.php 495
+ERROR - 2019-01-04 10:55:38 --> Severity: Warning --> DOMDocument::loadHTML(): Unexpected end tag : script in Entity, line: 296 C:\xampp\htdocs\ria\application\third_party\PHPExcel\Reader\HTML.php 495
+ERROR - 2019-01-04 10:55:38 --> Severity: Warning --> DOMDocument::loadHTML(): htmlParseStartTag: invalid element name in Entity, line: 297 C:\xampp\htdocs\ria\application\third_party\PHPExcel\Reader\HTML.php 495
+ERROR - 2019-01-04 10:55:38 --> Severity: Warning --> DOMDocument::loadHTML(): Unexpected end tag : head in Entity, line: 316 C:\xampp\htdocs\ria\application\third_party\PHPExcel\Reader\HTML.php 495
+ERROR - 2019-01-04 10:55:50 --> Severity: Notice --> Undefined variable: fdate C:\xampp\htdocs\ria\application\controllers\cashbook.php 1833
+ERROR - 2019-01-04 10:55:50 --> Severity: Notice --> Undefined variable: tdate C:\xampp\htdocs\ria\application\controllers\cashbook.php 1833
+ERROR - 2019-01-04 10:55:50 --> Severity: Notice --> Undefined variable: fa C:\xampp\htdocs\ria\application\controllers\cashbook.php 1833
+ERROR - 2019-01-04 10:55:50 --> Severity: Notice --> Undefined variable: aa C:\xampp\htdocs\ria\application\controllers\cashbook.php 1833
+ERROR - 2019-01-04 10:55:50 --> Severity: Notice --> Undefined variable: financialyear C:\xampp\htdocs\ria\application\views\bankstatement.php 2
+ERROR - 2019-01-04 10:55:50 --> Severity: Warning --> Invalid argument supplied for foreach() C:\xampp\htdocs\ria\application\views\bankstatement.php 2
+ERROR - 2019-01-04 10:55:50 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 87
+ERROR - 2019-01-04 10:55:51 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 87
+ERROR - 2019-01-04 10:55:51 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 88
+ERROR - 2019-01-04 10:55:51 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 88
+ERROR - 2019-01-04 10:55:51 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 89
+ERROR - 2019-01-04 10:55:51 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 89
+ERROR - 2019-01-04 10:55:51 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 139
+ERROR - 2019-01-04 10:55:51 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 139
+ERROR - 2019-01-04 10:55:51 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 140
+ERROR - 2019-01-04 10:55:51 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 140
+ERROR - 2019-01-04 10:55:51 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 141
+ERROR - 2019-01-04 10:55:51 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 141
+ERROR - 2019-01-04 11:00:41 --> Severity: Notice --> Undefined variable: creditdebit C:\xampp\htdocs\ria\application\views\bankingfile.php 132
+ERROR - 2019-01-04 11:00:41 --> Severity: Notice --> Undefined variable: creditdebit C:\xampp\htdocs\ria\application\views\bankingfile.php 132
+ERROR - 2019-01-04 11:01:09 --> Severity: Notice --> Undefined variable: filename C:\xampp\htdocs\ria\application\controllers\cashbook.php 236
+ERROR - 2019-01-04 11:01:09 --> The upload path does not appear to be valid.
+ERROR - 2019-01-04 11:01:09 --> Severity: Warning --> DOMDocument::loadHTML(): htmlParseStartTag: invalid element name in Entity, line: 13 C:\xampp\htdocs\ria\application\third_party\PHPExcel\Reader\HTML.php 495
+ERROR - 2019-01-04 11:01:09 --> Severity: Warning --> DOMDocument::loadHTML(): ID shLink already defined in Entity, line: 16 C:\xampp\htdocs\ria\application\third_party\PHPExcel\Reader\HTML.php 495
+ERROR - 2019-01-04 11:01:09 --> Severity: Warning --> DOMDocument::loadHTML(): Unexpected end tag : frameset in Entity, line: 57 C:\xampp\htdocs\ria\application\third_party\PHPExcel\Reader\HTML.php 495
+ERROR - 2019-01-04 11:01:09 --> Severity: Warning --> DOMDocument::loadHTML(): Unexpected end tag : frameset in Entity, line: 57 C:\xampp\htdocs\ria\application\third_party\PHPExcel\Reader\HTML.php 495
+ERROR - 2019-01-04 11:01:09 --> Severity: Warning --> DOMDocument::loadHTML(): Unexpected end tag : style in Entity, line: 72 C:\xampp\htdocs\ria\application\third_party\PHPExcel\Reader\HTML.php 495
+ERROR - 2019-01-04 11:01:09 --> Severity: Warning --> DOMDocument::loadHTML(): htmlParseStartTag: misplaced <body> tag in Entity, line: 73 C:\xampp\htdocs\ria\application\third_party\PHPExcel\Reader\HTML.php 495
+ERROR - 2019-01-04 11:01:09 --> Severity: Warning --> DOMDocument::loadHTML(): ID tdScroll already defined in Entity, line: 77 C:\xampp\htdocs\ria\application\third_party\PHPExcel\Reader\HTML.php 495
+ERROR - 2019-01-04 11:01:09 --> Severity: Warning --> DOMDocument::loadHTML(): htmlParseEntityRef: expecting ';' in Entity, line: 77 C:\xampp\htdocs\ria\application\third_party\PHPExcel\Reader\HTML.php 495
+ERROR - 2019-01-04 11:01:09 --> Severity: Warning --> DOMDocument::loadHTML(): ID tdScroll already defined in Entity, line: 78 C:\xampp\htdocs\ria\application\third_party\PHPExcel\Reader\HTML.php 495
+ERROR - 2019-01-04 11:01:09 --> Severity: Warning --> DOMDocument::loadHTML(): htmlParseEntityRef: expecting ';' in Entity, line: 78 C:\xampp\htdocs\ria\application\third_party\PHPExcel\Reader\HTML.php 495
+ERROR - 2019-01-04 11:01:09 --> Severity: Warning --> DOMDocument::loadHTML(): ID tdScroll already defined in Entity, line: 79 C:\xampp\htdocs\ria\application\third_party\PHPExcel\Reader\HTML.php 495
+ERROR - 2019-01-04 11:01:10 --> Severity: Warning --> DOMDocument::loadHTML(): htmlParseStartTag: misplaced <html> tag in Entity, line: 89 C:\xampp\htdocs\ria\application\third_party\PHPExcel\Reader\HTML.php 495
+ERROR - 2019-01-04 11:01:10 --> Severity: Warning --> DOMDocument::loadHTML(): error parsing attribute name in Entity, line: 99 C:\xampp\htdocs\ria\application\third_party\PHPExcel\Reader\HTML.php 495
+ERROR - 2019-01-04 11:01:10 --> Severity: Warning --> DOMDocument::loadHTML(): error parsing attribute name in Entity, line: 100 C:\xampp\htdocs\ria\application\third_party\PHPExcel\Reader\HTML.php 495
+ERROR - 2019-01-04 11:01:10 --> Severity: Warning --> DOMDocument::loadHTML(): Tag icellcount invalid in Entity, line: 100 C:\xampp\htdocs\ria\application\third_party\PHPExcel\Reader\HTML.php 495
+ERROR - 2019-01-04 11:01:10 --> Severity: Warning --> DOMDocument::loadHTML(): htmlParseStartTag: invalid element name in Entity, line: 103 C:\xampp\htdocs\ria\application\third_party\PHPExcel\Reader\HTML.php 495
+ERROR - 2019-01-04 11:01:10 --> Severity: Warning --> DOMDocument::loadHTML(): error parsing attribute name in Entity, line: 111 C:\xampp\htdocs\ria\application\third_party\PHPExcel\Reader\HTML.php 495
+ERROR - 2019-01-04 11:01:10 --> Severity: Warning --> DOMDocument::loadHTML(): error parsing attribute name in Entity, line: 112 C:\xampp\htdocs\ria\application\third_party\PHPExcel\Reader\HTML.php 495
+ERROR - 2019-01-04 11:01:10 --> Severity: Warning --> DOMDocument::loadHTML(): Tag icellcount invalid in Entity, line: 112 C:\xampp\htdocs\ria\application\third_party\PHPExcel\Reader\HTML.php 495
+ERROR - 2019-01-04 11:01:10 --> Severity: Warning --> DOMDocument::loadHTML(): Unexpected end tag : td in Entity, line: 112 C:\xampp\htdocs\ria\application\third_party\PHPExcel\Reader\HTML.php 495
+ERROR - 2019-01-04 11:01:10 --> Severity: Warning --> DOMDocument::loadHTML(): error parsing attribute name in Entity, line: 114 C:\xampp\htdocs\ria\application\third_party\PHPExcel\Reader\HTML.php 495
+ERROR - 2019-01-04 11:01:10 --> Severity: Warning --> DOMDocument::loadHTML(): error parsing attribute name in Entity, line: 114 C:\xampp\htdocs\ria\application\third_party\PHPExcel\Reader\HTML.php 495
+ERROR - 2019-01-04 11:01:10 --> Severity: Warning --> DOMDocument::loadHTML(): error parsing attribute name in Entity, line: 115 C:\xampp\htdocs\ria\application\third_party\PHPExcel\Reader\HTML.php 495
+ERROR - 2019-01-04 11:01:10 --> Severity: Warning --> DOMDocument::loadHTML(): Tag c_ltabs invalid in Entity, line: 115 C:\xampp\htdocs\ria\application\third_party\PHPExcel\Reader\HTML.php 495
+ERROR - 2019-01-04 11:01:10 --> Severity: Warning --> DOMDocument::loadHTML(): Unexpected end tag : td in Entity, line: 115 C:\xampp\htdocs\ria\application\third_party\PHPExcel\Reader\HTML.php 495
+ERROR - 2019-01-04 11:01:10 --> Severity: Warning --> DOMDocument::loadHTML(): ID tdTab already defined in Entity, line: 120 C:\xampp\htdocs\ria\application\third_party\PHPExcel\Reader\HTML.php 495
+ERROR - 2019-01-04 11:01:10 --> Severity: Warning --> DOMDocument::loadHTML(): ID aTab already defined in Entity, line: 120 C:\xampp\htdocs\ria\application\third_party\PHPExcel\Reader\HTML.php 495
+ERROR - 2019-01-04 11:01:10 --> Severity: Warning --> DOMDocument::loadHTML(): error parsing attribute name in Entity, line: 122 C:\xampp\htdocs\ria\application\third_party\PHPExcel\Reader\HTML.php 495
+ERROR - 2019-01-04 11:01:10 --> Severity: Warning --> DOMDocument::loadHTML(): error parsing attribute name in Entity, line: 123 C:\xampp\htdocs\ria\application\third_party\PHPExcel\Reader\HTML.php 495
+ERROR - 2019-01-04 11:01:10 --> Severity: Warning --> DOMDocument::loadHTML(): Tag c_ltabs invalid in Entity, line: 123 C:\xampp\htdocs\ria\application\third_party\PHPExcel\Reader\HTML.php 495
+ERROR - 2019-01-04 11:01:10 --> Severity: Warning --> DOMDocument::loadHTML(): Unexpected end tag : td in Entity, line: 123 C:\xampp\htdocs\ria\application\third_party\PHPExcel\Reader\HTML.php 495
+ERROR - 2019-01-04 11:01:10 --> Severity: Warning --> DOMDocument::loadHTML(): error parsing attribute name in Entity, line: 126 C:\xampp\htdocs\ria\application\third_party\PHPExcel\Reader\HTML.php 495
+ERROR - 2019-01-04 11:01:10 --> Severity: Warning --> DOMDocument::loadHTML(): error parsing attribute name in Entity, line: 127 C:\xampp\htdocs\ria\application\third_party\PHPExcel\Reader\HTML.php 495
+ERROR - 2019-01-04 11:01:11 --> Severity: Warning --> DOMDocument::loadHTML(): Tag icellcount invalid in Entity, line: 127 C:\xampp\htdocs\ria\application\third_party\PHPExcel\Reader\HTML.php 495
+ERROR - 2019-01-04 11:01:11 --> Severity: Warning --> DOMDocument::loadHTML(): Unexpected end tag : td in Entity, line: 127 C:\xampp\htdocs\ria\application\third_party\PHPExcel\Reader\HTML.php 495
+ERROR - 2019-01-04 11:01:11 --> Severity: Warning --> DOMDocument::loadHTML(): error parsing attribute name in Entity, line: 129 C:\xampp\htdocs\ria\application\third_party\PHPExcel\Reader\HTML.php 495
+ERROR - 2019-01-04 11:01:11 --> Severity: Warning --> DOMDocument::loadHTML(): error parsing attribute name in Entity, line: 130 C:\xampp\htdocs\ria\application\third_party\PHPExcel\Reader\HTML.php 495
+ERROR - 2019-01-04 11:01:11 --> Severity: Warning --> DOMDocument::loadHTML(): Tag c_ltabs invalid in Entity, line: 130 C:\xampp\htdocs\ria\application\third_party\PHPExcel\Reader\HTML.php 495
+ERROR - 2019-01-04 11:01:11 --> Severity: Warning --> DOMDocument::loadHTML(): Unexpected end tag : td in Entity, line: 130 C:\xampp\htdocs\ria\application\third_party\PHPExcel\Reader\HTML.php 495
+ERROR - 2019-01-04 11:01:11 --> Severity: Warning --> DOMDocument::loadHTML(): Unexpected end tag : tr in Entity, line: 134 C:\xampp\htdocs\ria\application\third_party\PHPExcel\Reader\HTML.php 495
+ERROR - 2019-01-04 11:01:11 --> Severity: Warning --> DOMDocument::loadHTML(): htmlParseStartTag: invalid element name in Entity, line: 150 C:\xampp\htdocs\ria\application\third_party\PHPExcel\Reader\HTML.php 495
+ERROR - 2019-01-04 11:01:11 --> Severity: Warning --> DOMDocument::loadHTML(): error parsing attribute name in Entity, line: 168 C:\xampp\htdocs\ria\application\third_party\PHPExcel\Reader\HTML.php 495
+ERROR - 2019-01-04 11:01:11 --> Severity: Warning --> DOMDocument::loadHTML(): error parsing attribute name in Entity, line: 169 C:\xampp\htdocs\ria\application\third_party\PHPExcel\Reader\HTML.php 495
+ERROR - 2019-01-04 11:01:11 --> Severity: Warning --> DOMDocument::loadHTML(): error parsing attribute name in Entity, line: 171 C:\xampp\htdocs\ria\application\third_party\PHPExcel\Reader\HTML.php 495
+ERROR - 2019-01-04 11:01:11 --> Severity: Warning --> DOMDocument::loadHTML(): error parsing attribute name in Entity, line: 172 C:\xampp\htdocs\ria\application\third_party\PHPExcel\Reader\HTML.php 495
+ERROR - 2019-01-04 11:01:11 --> Severity: Warning --> DOMDocument::loadHTML(): error parsing attribute name in Entity, line: 172 C:\xampp\htdocs\ria\application\third_party\PHPExcel\Reader\HTML.php 495
+ERROR - 2019-01-04 11:01:11 --> Severity: Warning --> DOMDocument::loadHTML(): Attribute if redefined in Entity, line: 173 C:\xampp\htdocs\ria\application\third_party\PHPExcel\Reader\HTML.php 495
+ERROR - 2019-01-04 11:01:11 --> Severity: Warning --> DOMDocument::loadHTML(): error parsing attribute name in Entity, line: 173 C:\xampp\htdocs\ria\application\third_party\PHPExcel\Reader\HTML.php 495
+ERROR - 2019-01-04 11:01:11 --> Severity: Warning --> DOMDocument::loadHTML(): Tag c_ltabs invalid in Entity, line: 173 C:\xampp\htdocs\ria\application\third_party\PHPExcel\Reader\HTML.php 495
+ERROR - 2019-01-04 11:01:11 --> Severity: Warning --> DOMDocument::loadHTML(): error parsing attribute name in Entity, line: 174 C:\xampp\htdocs\ria\application\third_party\PHPExcel\Reader\HTML.php 495
+ERROR - 2019-01-04 11:01:11 --> Severity: Warning --> DOMDocument::loadHTML(): error parsing attribute name in Entity, line: 175 C:\xampp\htdocs\ria\application\third_party\PHPExcel\Reader\HTML.php 495
+ERROR - 2019-01-04 11:01:11 --> Severity: Warning --> DOMDocument::loadHTML(): error parsing attribute name in Entity, line: 177 C:\xampp\htdocs\ria\application\third_party\PHPExcel\Reader\HTML.php 495
+ERROR - 2019-01-04 11:01:12 --> Severity: Warning --> DOMDocument::loadHTML(): error parsing attribute name in Entity, line: 178 C:\xampp\htdocs\ria\application\third_party\PHPExcel\Reader\HTML.php 495
+ERROR - 2019-01-04 11:01:12 --> Severity: Warning --> DOMDocument::loadHTML(): error parsing attribute name in Entity, line: 179 C:\xampp\htdocs\ria\application\third_party\PHPExcel\Reader\HTML.php 495
+ERROR - 2019-01-04 11:01:12 --> Severity: Warning --> DOMDocument::loadHTML(): Attribute inexttab redefined in Entity, line: 180 C:\xampp\htdocs\ria\application\third_party\PHPExcel\Reader\HTML.php 495
+ERROR - 2019-01-04 11:01:12 --> Severity: Warning --> DOMDocument::loadHTML(): error parsing attribute name in Entity, line: 180 C:\xampp\htdocs\ria\application\third_party\PHPExcel\Reader\HTML.php 495
+ERROR - 2019-01-04 11:01:12 --> Severity: Warning --> DOMDocument::loadHTML(): error parsing attribute name in Entity, line: 181 C:\xampp\htdocs\ria\application\third_party\PHPExcel\Reader\HTML.php 495
+ERROR - 2019-01-04 11:01:12 --> Severity: Warning --> DOMDocument::loadHTML(): error parsing attribute name in Entity, line: 183 C:\xampp\htdocs\ria\application\third_party\PHPExcel\Reader\HTML.php 495
+ERROR - 2019-01-04 11:01:12 --> Severity: Warning --> DOMDocument::loadHTML(): error parsing attribute name in Entity, line: 184 C:\xampp\htdocs\ria\application\third_party\PHPExcel\Reader\HTML.php 495
+ERROR - 2019-01-04 11:01:12 --> Severity: Warning --> DOMDocument::loadHTML(): Attribute inexttab redefined in Entity, line: 185 C:\xampp\htdocs\ria\application\third_party\PHPExcel\Reader\HTML.php 495
+ERROR - 2019-01-04 11:01:12 --> Severity: Warning --> DOMDocument::loadHTML(): Attribute if redefined in Entity, line: 187 C:\xampp\htdocs\ria\application\third_party\PHPExcel\Reader\HTML.php 495
+ERROR - 2019-01-04 11:01:12 --> Severity: Warning --> DOMDocument::loadHTML(): error parsing attribute name in Entity, line: 187 C:\xampp\htdocs\ria\application\third_party\PHPExcel\Reader\HTML.php 495
+ERROR - 2019-01-04 11:01:12 --> Severity: Warning --> DOMDocument::loadHTML(): Tag c_ltabs invalid in Entity, line: 187 C:\xampp\htdocs\ria\application\third_party\PHPExcel\Reader\HTML.php 495
+ERROR - 2019-01-04 11:01:12 --> Severity: Warning --> DOMDocument::loadHTML(): htmlParseStartTag: invalid element name in Entity, line: 210 C:\xampp\htdocs\ria\application\third_party\PHPExcel\Reader\HTML.php 495
+ERROR - 2019-01-04 11:01:12 --> Severity: Warning --> DOMDocument::loadHTML(): htmlParseEntityRef: no name in Entity, line: 214 C:\xampp\htdocs\ria\application\third_party\PHPExcel\Reader\HTML.php 495
+ERROR - 2019-01-04 11:01:12 --> Severity: Warning --> DOMDocument::loadHTML(): htmlParseEntityRef: no name in Entity, line: 214 C:\xampp\htdocs\ria\application\third_party\PHPExcel\Reader\HTML.php 495
+ERROR - 2019-01-04 11:01:12 --> Severity: Warning --> DOMDocument::loadHTML(): htmlParseStartTag: invalid element name in Entity, line: 214 C:\xampp\htdocs\ria\application\third_party\PHPExcel\Reader\HTML.php 495
+ERROR - 2019-01-04 11:01:12 --> Severity: Warning --> DOMDocument::loadHTML(): htmlParseEntityRef: no name in Entity, line: 271 C:\xampp\htdocs\ria\application\third_party\PHPExcel\Reader\HTML.php 495
+ERROR - 2019-01-04 11:01:12 --> Severity: Warning --> DOMDocument::loadHTML(): htmlParseEntityRef: no name in Entity, line: 271 C:\xampp\htdocs\ria\application\third_party\PHPExcel\Reader\HTML.php 495
+ERROR - 2019-01-04 11:01:12 --> Severity: Warning --> DOMDocument::loadHTML(): htmlParseEntityRef: no name in Entity, line: 272 C:\xampp\htdocs\ria\application\third_party\PHPExcel\Reader\HTML.php 495
+ERROR - 2019-01-04 11:01:12 --> Severity: Warning --> DOMDocument::loadHTML(): htmlParseEntityRef: no name in Entity, line: 272 C:\xampp\htdocs\ria\application\third_party\PHPExcel\Reader\HTML.php 495
+ERROR - 2019-01-04 11:01:12 --> Severity: Warning --> DOMDocument::loadHTML(): Unexpected end tag : script in Entity, line: 296 C:\xampp\htdocs\ria\application\third_party\PHPExcel\Reader\HTML.php 495
+ERROR - 2019-01-04 11:01:12 --> Severity: Warning --> DOMDocument::loadHTML(): htmlParseStartTag: invalid element name in Entity, line: 297 C:\xampp\htdocs\ria\application\third_party\PHPExcel\Reader\HTML.php 495
+ERROR - 2019-01-04 11:01:13 --> Severity: Warning --> DOMDocument::loadHTML(): Unexpected end tag : head in Entity, line: 316 C:\xampp\htdocs\ria\application\third_party\PHPExcel\Reader\HTML.php 495
+ERROR - 2019-01-04 11:05:51 --> Severity: Notice --> Undefined variable: creditdebit C:\xampp\htdocs\ria\application\views\bankingfile.php 132
+ERROR - 2019-01-04 11:05:54 --> Severity: Notice --> Undefined variable: fdate C:\xampp\htdocs\ria\application\controllers\cashbook.php 1832
+ERROR - 2019-01-04 11:05:54 --> Severity: Notice --> Undefined variable: tdate C:\xampp\htdocs\ria\application\controllers\cashbook.php 1832
+ERROR - 2019-01-04 11:05:55 --> Severity: Notice --> Undefined variable: fa C:\xampp\htdocs\ria\application\controllers\cashbook.php 1832
+ERROR - 2019-01-04 11:05:55 --> Severity: Notice --> Undefined variable: aa C:\xampp\htdocs\ria\application\controllers\cashbook.php 1832
+ERROR - 2019-01-04 11:05:55 --> Severity: Notice --> Undefined variable: financialyear C:\xampp\htdocs\ria\application\views\bankstatement.php 2
+ERROR - 2019-01-04 11:05:55 --> Severity: Warning --> Invalid argument supplied for foreach() C:\xampp\htdocs\ria\application\views\bankstatement.php 2
+ERROR - 2019-01-04 11:05:55 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 87
+ERROR - 2019-01-04 11:05:55 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 87
+ERROR - 2019-01-04 11:05:55 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 88
+ERROR - 2019-01-04 11:05:55 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 88
+ERROR - 2019-01-04 11:05:55 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 89
+ERROR - 2019-01-04 11:05:55 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 89
+ERROR - 2019-01-04 11:05:55 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 139
+ERROR - 2019-01-04 11:05:56 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 139
+ERROR - 2019-01-04 11:05:56 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 140
+ERROR - 2019-01-04 11:05:56 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 140
+ERROR - 2019-01-04 11:05:56 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 141
+ERROR - 2019-01-04 11:05:56 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 141
+ERROR - 2019-01-04 11:06:01 --> Severity: Notice --> Undefined variable: fdate C:\xampp\htdocs\ria\application\controllers\cashbook.php 1832
+ERROR - 2019-01-04 11:06:01 --> Severity: Notice --> Undefined variable: tdate C:\xampp\htdocs\ria\application\controllers\cashbook.php 1832
+ERROR - 2019-01-04 11:06:01 --> Severity: Notice --> Undefined variable: fa C:\xampp\htdocs\ria\application\controllers\cashbook.php 1832
+ERROR - 2019-01-04 11:06:01 --> Severity: Notice --> Undefined variable: aa C:\xampp\htdocs\ria\application\controllers\cashbook.php 1832
+ERROR - 2019-01-04 11:06:01 --> Severity: Notice --> Undefined variable: fdate C:\xampp\htdocs\ria\application\controllers\cashbook.php 1832
+ERROR - 2019-01-04 11:06:01 --> Severity: Notice --> Undefined variable: financialyear C:\xampp\htdocs\ria\application\views\bankstatement.php 2
+ERROR - 2019-01-04 11:06:01 --> Severity: Notice --> Undefined variable: tdate C:\xampp\htdocs\ria\application\controllers\cashbook.php 1832
+ERROR - 2019-01-04 11:06:01 --> Severity: Warning --> Invalid argument supplied for foreach() C:\xampp\htdocs\ria\application\views\bankstatement.php 2
+ERROR - 2019-01-04 11:06:01 --> Severity: Notice --> Undefined variable: fa C:\xampp\htdocs\ria\application\controllers\cashbook.php 1832
+ERROR - 2019-01-04 11:06:02 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 87
+ERROR - 2019-01-04 11:06:02 --> Severity: Notice --> Undefined variable: aa C:\xampp\htdocs\ria\application\controllers\cashbook.php 1832
+ERROR - 2019-01-04 11:06:02 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 87
+ERROR - 2019-01-04 11:06:02 --> Severity: Notice --> Undefined variable: fdate C:\xampp\htdocs\ria\application\controllers\cashbook.php 1832
+ERROR - 2019-01-04 11:06:02 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 88
+ERROR - 2019-01-04 11:06:02 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 88
+ERROR - 2019-01-04 11:06:02 --> Severity: Notice --> Undefined variable: tdate C:\xampp\htdocs\ria\application\controllers\cashbook.php 1832
+ERROR - 2019-01-04 11:06:02 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 89
+ERROR - 2019-01-04 11:06:02 --> Severity: Notice --> Undefined variable: fa C:\xampp\htdocs\ria\application\controllers\cashbook.php 1832
+ERROR - 2019-01-04 11:06:02 --> Severity: Notice --> Undefined variable: aa C:\xampp\htdocs\ria\application\controllers\cashbook.php 1832
+ERROR - 2019-01-04 11:06:02 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 89
+ERROR - 2019-01-04 11:06:02 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 139
+ERROR - 2019-01-04 11:06:02 --> Severity: Notice --> Undefined variable: financialyear C:\xampp\htdocs\ria\application\views\bankstatement.php 2
+ERROR - 2019-01-04 11:06:02 --> Severity: Warning --> Invalid argument supplied for foreach() C:\xampp\htdocs\ria\application\views\bankstatement.php 2
+ERROR - 2019-01-04 11:06:02 --> Severity: Notice --> Undefined variable: financialyear C:\xampp\htdocs\ria\application\views\bankstatement.php 2
+ERROR - 2019-01-04 11:06:02 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 87
+ERROR - 2019-01-04 11:06:02 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 139
+ERROR - 2019-01-04 11:06:02 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 140
+ERROR - 2019-01-04 11:06:02 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 87
+ERROR - 2019-01-04 11:06:02 --> Severity: Warning --> Invalid argument supplied for foreach() C:\xampp\htdocs\ria\application\views\bankstatement.php 2
+ERROR - 2019-01-04 11:06:02 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 140
+ERROR - 2019-01-04 11:06:02 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 141
+ERROR - 2019-01-04 11:06:02 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 141
+ERROR - 2019-01-04 11:06:03 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 88
+ERROR - 2019-01-04 11:06:03 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 88
+ERROR - 2019-01-04 11:06:03 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 89
+ERROR - 2019-01-04 11:06:03 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 89
+ERROR - 2019-01-04 11:06:03 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 139
+ERROR - 2019-01-04 11:06:03 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 139
+ERROR - 2019-01-04 11:06:03 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 87
+ERROR - 2019-01-04 11:06:03 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 140
+ERROR - 2019-01-04 11:06:03 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 140
+ERROR - 2019-01-04 11:06:03 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 141
+ERROR - 2019-01-04 11:06:03 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 141
+ERROR - 2019-01-04 11:06:03 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 87
+ERROR - 2019-01-04 11:06:03 --> Severity: Notice --> Undefined variable: fdate C:\xampp\htdocs\ria\application\controllers\cashbook.php 1832
+ERROR - 2019-01-04 11:06:04 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 88
+ERROR - 2019-01-04 11:06:04 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 88
+ERROR - 2019-01-04 11:06:04 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 89
+ERROR - 2019-01-04 11:06:04 --> Severity: Notice --> Undefined variable: tdate C:\xampp\htdocs\ria\application\controllers\cashbook.php 1832
+ERROR - 2019-01-04 11:06:04 --> Severity: Notice --> Undefined variable: fa C:\xampp\htdocs\ria\application\controllers\cashbook.php 1832
+ERROR - 2019-01-04 11:06:04 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 89
+ERROR - 2019-01-04 11:06:04 --> Severity: Notice --> Undefined variable: aa C:\xampp\htdocs\ria\application\controllers\cashbook.php 1832
+ERROR - 2019-01-04 11:06:04 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 139
+ERROR - 2019-01-04 11:06:04 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 139
+ERROR - 2019-01-04 11:06:04 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 140
+ERROR - 2019-01-04 11:06:04 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 140
+ERROR - 2019-01-04 11:06:04 --> Severity: Notice --> Undefined variable: fdate C:\xampp\htdocs\ria\application\controllers\cashbook.php 1832
+ERROR - 2019-01-04 11:06:04 --> Severity: Notice --> Undefined variable: financialyear C:\xampp\htdocs\ria\application\views\bankstatement.php 2
+ERROR - 2019-01-04 11:06:04 --> Severity: Notice --> Undefined variable: tdate C:\xampp\htdocs\ria\application\controllers\cashbook.php 1832
+ERROR - 2019-01-04 11:06:04 --> Severity: Warning --> Invalid argument supplied for foreach() C:\xampp\htdocs\ria\application\views\bankstatement.php 2
+ERROR - 2019-01-04 11:06:04 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 87
+ERROR - 2019-01-04 11:06:04 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 87
+ERROR - 2019-01-04 11:06:05 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 141
+ERROR - 2019-01-04 11:06:05 --> Severity: Notice --> Undefined variable: fa C:\xampp\htdocs\ria\application\controllers\cashbook.php 1832
+ERROR - 2019-01-04 11:06:05 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 141
+ERROR - 2019-01-04 11:06:05 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 88
+ERROR - 2019-01-04 11:06:05 --> Severity: Notice --> Undefined variable: aa C:\xampp\htdocs\ria\application\controllers\cashbook.php 1832
+ERROR - 2019-01-04 11:06:05 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 88
+ERROR - 2019-01-04 11:06:05 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 89
+ERROR - 2019-01-04 11:06:05 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 89
+ERROR - 2019-01-04 11:06:05 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 139
+ERROR - 2019-01-04 11:06:05 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 139
+ERROR - 2019-01-04 11:06:05 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 140
+ERROR - 2019-01-04 11:06:05 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 140
+ERROR - 2019-01-04 11:06:05 --> Severity: Notice --> Undefined variable: financialyear C:\xampp\htdocs\ria\application\views\bankstatement.php 2
+ERROR - 2019-01-04 11:06:05 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 141
+ERROR - 2019-01-04 11:06:05 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 141
+ERROR - 2019-01-04 11:06:05 --> Severity: Warning --> Invalid argument supplied for foreach() C:\xampp\htdocs\ria\application\views\bankstatement.php 2
+ERROR - 2019-01-04 11:06:05 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 87
+ERROR - 2019-01-04 11:06:05 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 87
+ERROR - 2019-01-04 11:06:05 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 88
+ERROR - 2019-01-04 11:06:05 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 88
+ERROR - 2019-01-04 11:06:05 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 89
+ERROR - 2019-01-04 11:06:06 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 89
+ERROR - 2019-01-04 11:06:06 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 139
+ERROR - 2019-01-04 11:06:06 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 139
+ERROR - 2019-01-04 11:06:06 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 140
+ERROR - 2019-01-04 11:06:06 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 140
+ERROR - 2019-01-04 11:06:06 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 141
+ERROR - 2019-01-04 11:06:06 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 141
+ERROR - 2019-01-04 11:06:14 --> Severity: Notice --> Undefined variable: creditdebit C:\xampp\htdocs\ria\application\views\bankingfile.php 132
+ERROR - 2019-01-04 11:06:49 --> Severity: Notice --> Undefined variable: filename C:\xampp\htdocs\ria\application\controllers\cashbook.php 236
+ERROR - 2019-01-04 11:06:49 --> The upload path does not appear to be valid.
+ERROR - 2019-01-04 11:06:50 --> Severity: Warning --> DOMDocument::loadHTML(): htmlParseStartTag: invalid element name in Entity, line: 13 C:\xampp\htdocs\ria\application\third_party\PHPExcel\Reader\HTML.php 495
+ERROR - 2019-01-04 11:06:50 --> Severity: Warning --> DOMDocument::loadHTML(): ID shLink already defined in Entity, line: 16 C:\xampp\htdocs\ria\application\third_party\PHPExcel\Reader\HTML.php 495
+ERROR - 2019-01-04 11:06:50 --> Severity: Warning --> DOMDocument::loadHTML(): Unexpected end tag : frameset in Entity, line: 57 C:\xampp\htdocs\ria\application\third_party\PHPExcel\Reader\HTML.php 495
+ERROR - 2019-01-04 11:06:50 --> Severity: Warning --> DOMDocument::loadHTML(): Unexpected end tag : frameset in Entity, line: 57 C:\xampp\htdocs\ria\application\third_party\PHPExcel\Reader\HTML.php 495
+ERROR - 2019-01-04 11:06:50 --> Severity: Warning --> DOMDocument::loadHTML(): Unexpected end tag : style in Entity, line: 72 C:\xampp\htdocs\ria\application\third_party\PHPExcel\Reader\HTML.php 495
+ERROR - 2019-01-04 11:06:50 --> Severity: Warning --> DOMDocument::loadHTML(): htmlParseStartTag: misplaced <body> tag in Entity, line: 73 C:\xampp\htdocs\ria\application\third_party\PHPExcel\Reader\HTML.php 495
+ERROR - 2019-01-04 11:06:50 --> Severity: Warning --> DOMDocument::loadHTML(): ID tdScroll already defined in Entity, line: 77 C:\xampp\htdocs\ria\application\third_party\PHPExcel\Reader\HTML.php 495
+ERROR - 2019-01-04 11:06:50 --> Severity: Warning --> DOMDocument::loadHTML(): htmlParseEntityRef: expecting ';' in Entity, line: 77 C:\xampp\htdocs\ria\application\third_party\PHPExcel\Reader\HTML.php 495
+ERROR - 2019-01-04 11:06:50 --> Severity: Warning --> DOMDocument::loadHTML(): ID tdScroll already defined in Entity, line: 78 C:\xampp\htdocs\ria\application\third_party\PHPExcel\Reader\HTML.php 495
+ERROR - 2019-01-04 11:06:50 --> Severity: Warning --> DOMDocument::loadHTML(): htmlParseEntityRef: expecting ';' in Entity, line: 78 C:\xampp\htdocs\ria\application\third_party\PHPExcel\Reader\HTML.php 495
+ERROR - 2019-01-04 11:06:50 --> Severity: Warning --> DOMDocument::loadHTML(): ID tdScroll already defined in Entity, line: 79 C:\xampp\htdocs\ria\application\third_party\PHPExcel\Reader\HTML.php 495
+ERROR - 2019-01-04 11:06:50 --> Severity: Warning --> DOMDocument::loadHTML(): htmlParseStartTag: misplaced <html> tag in Entity, line: 89 C:\xampp\htdocs\ria\application\third_party\PHPExcel\Reader\HTML.php 495
+ERROR - 2019-01-04 11:06:50 --> Severity: Warning --> DOMDocument::loadHTML(): error parsing attribute name in Entity, line: 99 C:\xampp\htdocs\ria\application\third_party\PHPExcel\Reader\HTML.php 495
+ERROR - 2019-01-04 11:06:50 --> Severity: Warning --> DOMDocument::loadHTML(): error parsing attribute name in Entity, line: 100 C:\xampp\htdocs\ria\application\third_party\PHPExcel\Reader\HTML.php 495
+ERROR - 2019-01-04 11:06:50 --> Severity: Warning --> DOMDocument::loadHTML(): Tag icellcount invalid in Entity, line: 100 C:\xampp\htdocs\ria\application\third_party\PHPExcel\Reader\HTML.php 495
+ERROR - 2019-01-04 11:06:50 --> Severity: Warning --> DOMDocument::loadHTML(): htmlParseStartTag: invalid element name in Entity, line: 103 C:\xampp\htdocs\ria\application\third_party\PHPExcel\Reader\HTML.php 495
+ERROR - 2019-01-04 11:06:51 --> Severity: Warning --> DOMDocument::loadHTML(): error parsing attribute name in Entity, line: 111 C:\xampp\htdocs\ria\application\third_party\PHPExcel\Reader\HTML.php 495
+ERROR - 2019-01-04 11:06:51 --> Severity: Warning --> DOMDocument::loadHTML(): error parsing attribute name in Entity, line: 112 C:\xampp\htdocs\ria\application\third_party\PHPExcel\Reader\HTML.php 495
+ERROR - 2019-01-04 11:06:51 --> Severity: Warning --> DOMDocument::loadHTML(): Tag icellcount invalid in Entity, line: 112 C:\xampp\htdocs\ria\application\third_party\PHPExcel\Reader\HTML.php 495
+ERROR - 2019-01-04 11:06:51 --> Severity: Warning --> DOMDocument::loadHTML(): Unexpected end tag : td in Entity, line: 112 C:\xampp\htdocs\ria\application\third_party\PHPExcel\Reader\HTML.php 495
+ERROR - 2019-01-04 11:06:51 --> Severity: Warning --> DOMDocument::loadHTML(): error parsing attribute name in Entity, line: 114 C:\xampp\htdocs\ria\application\third_party\PHPExcel\Reader\HTML.php 495
+ERROR - 2019-01-04 11:06:51 --> Severity: Warning --> DOMDocument::loadHTML(): error parsing attribute name in Entity, line: 114 C:\xampp\htdocs\ria\application\third_party\PHPExcel\Reader\HTML.php 495
+ERROR - 2019-01-04 11:06:51 --> Severity: Warning --> DOMDocument::loadHTML(): error parsing attribute name in Entity, line: 115 C:\xampp\htdocs\ria\application\third_party\PHPExcel\Reader\HTML.php 495
+ERROR - 2019-01-04 11:06:51 --> Severity: Warning --> DOMDocument::loadHTML(): Tag c_ltabs invalid in Entity, line: 115 C:\xampp\htdocs\ria\application\third_party\PHPExcel\Reader\HTML.php 495
+ERROR - 2019-01-04 11:06:51 --> Severity: Warning --> DOMDocument::loadHTML(): Unexpected end tag : td in Entity, line: 115 C:\xampp\htdocs\ria\application\third_party\PHPExcel\Reader\HTML.php 495
+ERROR - 2019-01-04 11:06:51 --> Severity: Warning --> DOMDocument::loadHTML(): ID tdTab already defined in Entity, line: 120 C:\xampp\htdocs\ria\application\third_party\PHPExcel\Reader\HTML.php 495
+ERROR - 2019-01-04 11:06:51 --> Severity: Warning --> DOMDocument::loadHTML(): ID aTab already defined in Entity, line: 120 C:\xampp\htdocs\ria\application\third_party\PHPExcel\Reader\HTML.php 495
+ERROR - 2019-01-04 11:06:51 --> Severity: Warning --> DOMDocument::loadHTML(): error parsing attribute name in Entity, line: 122 C:\xampp\htdocs\ria\application\third_party\PHPExcel\Reader\HTML.php 495
+ERROR - 2019-01-04 11:06:51 --> Severity: Warning --> DOMDocument::loadHTML(): error parsing attribute name in Entity, line: 123 C:\xampp\htdocs\ria\application\third_party\PHPExcel\Reader\HTML.php 495
+ERROR - 2019-01-04 11:06:51 --> Severity: Warning --> DOMDocument::loadHTML(): Tag c_ltabs invalid in Entity, line: 123 C:\xampp\htdocs\ria\application\third_party\PHPExcel\Reader\HTML.php 495
+ERROR - 2019-01-04 11:06:51 --> Severity: Warning --> DOMDocument::loadHTML(): Unexpected end tag : td in Entity, line: 123 C:\xampp\htdocs\ria\application\third_party\PHPExcel\Reader\HTML.php 495
+ERROR - 2019-01-04 11:06:51 --> Severity: Warning --> DOMDocument::loadHTML(): error parsing attribute name in Entity, line: 126 C:\xampp\htdocs\ria\application\third_party\PHPExcel\Reader\HTML.php 495
+ERROR - 2019-01-04 11:06:51 --> Severity: Warning --> DOMDocument::loadHTML(): error parsing attribute name in Entity, line: 127 C:\xampp\htdocs\ria\application\third_party\PHPExcel\Reader\HTML.php 495
+ERROR - 2019-01-04 11:06:51 --> Severity: Warning --> DOMDocument::loadHTML(): Tag icellcount invalid in Entity, line: 127 C:\xampp\htdocs\ria\application\third_party\PHPExcel\Reader\HTML.php 495
+ERROR - 2019-01-04 11:06:51 --> Severity: Warning --> DOMDocument::loadHTML(): Unexpected end tag : td in Entity, line: 127 C:\xampp\htdocs\ria\application\third_party\PHPExcel\Reader\HTML.php 495
+ERROR - 2019-01-04 11:06:51 --> Severity: Warning --> DOMDocument::loadHTML(): error parsing attribute name in Entity, line: 129 C:\xampp\htdocs\ria\application\third_party\PHPExcel\Reader\HTML.php 495
+ERROR - 2019-01-04 11:06:52 --> Severity: Warning --> DOMDocument::loadHTML(): error parsing attribute name in Entity, line: 130 C:\xampp\htdocs\ria\application\third_party\PHPExcel\Reader\HTML.php 495
+ERROR - 2019-01-04 11:06:52 --> Severity: Warning --> DOMDocument::loadHTML(): Tag c_ltabs invalid in Entity, line: 130 C:\xampp\htdocs\ria\application\third_party\PHPExcel\Reader\HTML.php 495
+ERROR - 2019-01-04 11:06:52 --> Severity: Warning --> DOMDocument::loadHTML(): Unexpected end tag : td in Entity, line: 130 C:\xampp\htdocs\ria\application\third_party\PHPExcel\Reader\HTML.php 495
+ERROR - 2019-01-04 11:06:52 --> Severity: Warning --> DOMDocument::loadHTML(): Unexpected end tag : tr in Entity, line: 134 C:\xampp\htdocs\ria\application\third_party\PHPExcel\Reader\HTML.php 495
+ERROR - 2019-01-04 11:06:52 --> Severity: Warning --> DOMDocument::loadHTML(): htmlParseStartTag: invalid element name in Entity, line: 150 C:\xampp\htdocs\ria\application\third_party\PHPExcel\Reader\HTML.php 495
+ERROR - 2019-01-04 11:06:52 --> Severity: Warning --> DOMDocument::loadHTML(): error parsing attribute name in Entity, line: 168 C:\xampp\htdocs\ria\application\third_party\PHPExcel\Reader\HTML.php 495
+ERROR - 2019-01-04 11:06:52 --> Severity: Warning --> DOMDocument::loadHTML(): error parsing attribute name in Entity, line: 169 C:\xampp\htdocs\ria\application\third_party\PHPExcel\Reader\HTML.php 495
+ERROR - 2019-01-04 11:06:52 --> Severity: Warning --> DOMDocument::loadHTML(): error parsing attribute name in Entity, line: 171 C:\xampp\htdocs\ria\application\third_party\PHPExcel\Reader\HTML.php 495
+ERROR - 2019-01-04 11:06:52 --> Severity: Warning --> DOMDocument::loadHTML(): error parsing attribute name in Entity, line: 172 C:\xampp\htdocs\ria\application\third_party\PHPExcel\Reader\HTML.php 495
+ERROR - 2019-01-04 11:06:52 --> Severity: Warning --> DOMDocument::loadHTML(): error parsing attribute name in Entity, line: 172 C:\xampp\htdocs\ria\application\third_party\PHPExcel\Reader\HTML.php 495
+ERROR - 2019-01-04 11:06:52 --> Severity: Warning --> DOMDocument::loadHTML(): Attribute if redefined in Entity, line: 173 C:\xampp\htdocs\ria\application\third_party\PHPExcel\Reader\HTML.php 495
+ERROR - 2019-01-04 11:06:52 --> Severity: Warning --> DOMDocument::loadHTML(): error parsing attribute name in Entity, line: 173 C:\xampp\htdocs\ria\application\third_party\PHPExcel\Reader\HTML.php 495
+ERROR - 2019-01-04 11:06:52 --> Severity: Warning --> DOMDocument::loadHTML(): Tag c_ltabs invalid in Entity, line: 173 C:\xampp\htdocs\ria\application\third_party\PHPExcel\Reader\HTML.php 495
+ERROR - 2019-01-04 11:06:53 --> Severity: Warning --> DOMDocument::loadHTML(): error parsing attribute name in Entity, line: 174 C:\xampp\htdocs\ria\application\third_party\PHPExcel\Reader\HTML.php 495
+ERROR - 2019-01-04 11:06:53 --> Severity: Warning --> DOMDocument::loadHTML(): error parsing attribute name in Entity, line: 175 C:\xampp\htdocs\ria\application\third_party\PHPExcel\Reader\HTML.php 495
+ERROR - 2019-01-04 11:06:53 --> Severity: Warning --> DOMDocument::loadHTML(): error parsing attribute name in Entity, line: 177 C:\xampp\htdocs\ria\application\third_party\PHPExcel\Reader\HTML.php 495
+ERROR - 2019-01-04 11:06:53 --> Severity: Warning --> DOMDocument::loadHTML(): error parsing attribute name in Entity, line: 178 C:\xampp\htdocs\ria\application\third_party\PHPExcel\Reader\HTML.php 495
+ERROR - 2019-01-04 11:06:53 --> Severity: Warning --> DOMDocument::loadHTML(): error parsing attribute name in Entity, line: 179 C:\xampp\htdocs\ria\application\third_party\PHPExcel\Reader\HTML.php 495
+ERROR - 2019-01-04 11:06:53 --> Severity: Warning --> DOMDocument::loadHTML(): Attribute inexttab redefined in Entity, line: 180 C:\xampp\htdocs\ria\application\third_party\PHPExcel\Reader\HTML.php 495
+ERROR - 2019-01-04 11:06:53 --> Severity: Warning --> DOMDocument::loadHTML(): error parsing attribute name in Entity, line: 180 C:\xampp\htdocs\ria\application\third_party\PHPExcel\Reader\HTML.php 495
+ERROR - 2019-01-04 11:06:53 --> Severity: Warning --> DOMDocument::loadHTML(): error parsing attribute name in Entity, line: 181 C:\xampp\htdocs\ria\application\third_party\PHPExcel\Reader\HTML.php 495
+ERROR - 2019-01-04 11:06:53 --> Severity: Warning --> DOMDocument::loadHTML(): error parsing attribute name in Entity, line: 183 C:\xampp\htdocs\ria\application\third_party\PHPExcel\Reader\HTML.php 495
+ERROR - 2019-01-04 11:06:53 --> Severity: Warning --> DOMDocument::loadHTML(): error parsing attribute name in Entity, line: 184 C:\xampp\htdocs\ria\application\third_party\PHPExcel\Reader\HTML.php 495
+ERROR - 2019-01-04 11:06:53 --> Severity: Warning --> DOMDocument::loadHTML(): Attribute inexttab redefined in Entity, line: 185 C:\xampp\htdocs\ria\application\third_party\PHPExcel\Reader\HTML.php 495
+ERROR - 2019-01-04 11:06:53 --> Severity: Warning --> DOMDocument::loadHTML(): Attribute if redefined in Entity, line: 187 C:\xampp\htdocs\ria\application\third_party\PHPExcel\Reader\HTML.php 495
+ERROR - 2019-01-04 11:06:53 --> Severity: Warning --> DOMDocument::loadHTML(): error parsing attribute name in Entity, line: 187 C:\xampp\htdocs\ria\application\third_party\PHPExcel\Reader\HTML.php 495
+ERROR - 2019-01-04 11:06:53 --> Severity: Warning --> DOMDocument::loadHTML(): Tag c_ltabs invalid in Entity, line: 187 C:\xampp\htdocs\ria\application\third_party\PHPExcel\Reader\HTML.php 495
+ERROR - 2019-01-04 11:06:53 --> Severity: Warning --> DOMDocument::loadHTML(): htmlParseStartTag: invalid element name in Entity, line: 210 C:\xampp\htdocs\ria\application\third_party\PHPExcel\Reader\HTML.php 495
+ERROR - 2019-01-04 11:06:54 --> Severity: Warning --> DOMDocument::loadHTML(): htmlParseEntityRef: no name in Entity, line: 214 C:\xampp\htdocs\ria\application\third_party\PHPExcel\Reader\HTML.php 495
+ERROR - 2019-01-04 11:06:54 --> Severity: Warning --> DOMDocument::loadHTML(): htmlParseEntityRef: no name in Entity, line: 214 C:\xampp\htdocs\ria\application\third_party\PHPExcel\Reader\HTML.php 495
+ERROR - 2019-01-04 11:06:54 --> Severity: Warning --> DOMDocument::loadHTML(): htmlParseStartTag: invalid element name in Entity, line: 214 C:\xampp\htdocs\ria\application\third_party\PHPExcel\Reader\HTML.php 495
+ERROR - 2019-01-04 11:06:54 --> Severity: Warning --> DOMDocument::loadHTML(): htmlParseEntityRef: no name in Entity, line: 271 C:\xampp\htdocs\ria\application\third_party\PHPExcel\Reader\HTML.php 495
+ERROR - 2019-01-04 11:06:54 --> Severity: Warning --> DOMDocument::loadHTML(): htmlParseEntityRef: no name in Entity, line: 271 C:\xampp\htdocs\ria\application\third_party\PHPExcel\Reader\HTML.php 495
+ERROR - 2019-01-04 11:06:54 --> Severity: Warning --> DOMDocument::loadHTML(): htmlParseEntityRef: no name in Entity, line: 272 C:\xampp\htdocs\ria\application\third_party\PHPExcel\Reader\HTML.php 495
+ERROR - 2019-01-04 11:06:54 --> Severity: Warning --> DOMDocument::loadHTML(): htmlParseEntityRef: no name in Entity, line: 272 C:\xampp\htdocs\ria\application\third_party\PHPExcel\Reader\HTML.php 495
+ERROR - 2019-01-04 11:06:54 --> Severity: Warning --> DOMDocument::loadHTML(): Unexpected end tag : script in Entity, line: 296 C:\xampp\htdocs\ria\application\third_party\PHPExcel\Reader\HTML.php 495
+ERROR - 2019-01-04 11:06:54 --> Severity: Warning --> DOMDocument::loadHTML(): htmlParseStartTag: invalid element name in Entity, line: 297 C:\xampp\htdocs\ria\application\third_party\PHPExcel\Reader\HTML.php 495
+ERROR - 2019-01-04 11:06:54 --> Severity: Warning --> DOMDocument::loadHTML(): Unexpected end tag : head in Entity, line: 316 C:\xampp\htdocs\ria\application\third_party\PHPExcel\Reader\HTML.php 495
+ERROR - 2019-01-04 11:23:14 --> Severity: Notice --> Undefined variable: creditdebit C:\xampp\htdocs\ria\application\views\bankingfile.php 132
+ERROR - 2019-01-04 11:23:41 --> Severity: Notice --> Undefined variable: filename C:\xampp\htdocs\ria\application\controllers\cashbook.php 236
+ERROR - 2019-01-04 11:23:42 --> The upload path does not appear to be valid.
+ERROR - 2019-01-04 11:23:46 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 529
+ERROR - 2019-01-04 11:23:47 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 529
+ERROR - 2019-01-04 11:23:47 --> Severity: Notice --> Undefined index: reportdate C:\xampp\htdocs\ria\application\models\cashbook_model.php 392
+ERROR - 2019-01-04 11:23:47 --> Severity: Notice --> Undefined index: Narration C:\xampp\htdocs\ria\application\models\cashbook_model.php 393
+ERROR - 2019-01-04 11:23:47 --> Severity: Notice --> Undefined index: Balance C:\xampp\htdocs\ria\application\models\cashbook_model.php 394
+ERROR - 2019-01-04 11:23:47 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 529
+ERROR - 2019-01-04 11:23:47 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 529
+ERROR - 2019-01-04 11:23:47 --> Severity: Notice --> Undefined index: reportdate C:\xampp\htdocs\ria\application\models\cashbook_model.php 392
+ERROR - 2019-01-04 11:23:47 --> Severity: Notice --> Undefined index: Narration C:\xampp\htdocs\ria\application\models\cashbook_model.php 393
+ERROR - 2019-01-04 11:23:47 --> Severity: Notice --> Undefined index: Balance C:\xampp\htdocs\ria\application\models\cashbook_model.php 394
+ERROR - 2019-01-04 11:23:47 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 529
+ERROR - 2019-01-04 11:23:47 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 529
+ERROR - 2019-01-04 11:23:47 --> Severity: Notice --> Undefined index: reportdate C:\xampp\htdocs\ria\application\models\cashbook_model.php 392
+ERROR - 2019-01-04 11:23:47 --> Severity: Notice --> Undefined index: Narration C:\xampp\htdocs\ria\application\models\cashbook_model.php 393
+ERROR - 2019-01-04 11:23:47 --> Severity: Notice --> Undefined index: Balance C:\xampp\htdocs\ria\application\models\cashbook_model.php 394
+ERROR - 2019-01-04 11:23:47 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 529
+ERROR - 2019-01-04 11:23:47 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 529
+ERROR - 2019-01-04 11:23:48 --> Severity: Notice --> Undefined index: reportdate C:\xampp\htdocs\ria\application\models\cashbook_model.php 392
+ERROR - 2019-01-04 11:23:48 --> Severity: Notice --> Undefined index: Narration C:\xampp\htdocs\ria\application\models\cashbook_model.php 393
+ERROR - 2019-01-04 11:23:48 --> Severity: Notice --> Undefined index: Balance C:\xampp\htdocs\ria\application\models\cashbook_model.php 394
+ERROR - 2019-01-04 11:23:48 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 529
+ERROR - 2019-01-04 11:23:48 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 529
+ERROR - 2019-01-04 11:23:48 --> Severity: Notice --> Undefined index: reportdate C:\xampp\htdocs\ria\application\models\cashbook_model.php 392
+ERROR - 2019-01-04 11:23:48 --> Severity: Notice --> Undefined index: Narration C:\xampp\htdocs\ria\application\models\cashbook_model.php 393
+ERROR - 2019-01-04 11:23:48 --> Severity: Notice --> Undefined index: Balance C:\xampp\htdocs\ria\application\models\cashbook_model.php 394
+ERROR - 2019-01-04 11:23:48 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 529
+ERROR - 2019-01-04 11:23:48 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 529
+ERROR - 2019-01-04 11:23:48 --> Severity: Notice --> Undefined index: reportdate C:\xampp\htdocs\ria\application\models\cashbook_model.php 392
+ERROR - 2019-01-04 11:23:48 --> Severity: Notice --> Undefined index: Narration C:\xampp\htdocs\ria\application\models\cashbook_model.php 393
+ERROR - 2019-01-04 11:23:48 --> Severity: Notice --> Undefined index: Balance C:\xampp\htdocs\ria\application\models\cashbook_model.php 394
+ERROR - 2019-01-04 11:23:48 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 529
+ERROR - 2019-01-04 11:23:48 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 529
+ERROR - 2019-01-04 11:23:48 --> Severity: Notice --> Undefined index: reportdate C:\xampp\htdocs\ria\application\models\cashbook_model.php 392
+ERROR - 2019-01-04 11:23:48 --> Severity: Notice --> Undefined index: Narration C:\xampp\htdocs\ria\application\models\cashbook_model.php 393
+ERROR - 2019-01-04 11:23:48 --> Severity: Notice --> Undefined index: Balance C:\xampp\htdocs\ria\application\models\cashbook_model.php 394
+ERROR - 2019-01-04 11:23:49 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 529
+ERROR - 2019-01-04 11:23:49 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 529
+ERROR - 2019-01-04 11:23:49 --> Severity: Notice --> Undefined index: reportdate C:\xampp\htdocs\ria\application\models\cashbook_model.php 392
+ERROR - 2019-01-04 11:23:49 --> Severity: Notice --> Undefined index: Narration C:\xampp\htdocs\ria\application\models\cashbook_model.php 393
+ERROR - 2019-01-04 11:23:49 --> Severity: Notice --> Undefined index: Balance C:\xampp\htdocs\ria\application\models\cashbook_model.php 394
+ERROR - 2019-01-04 11:23:49 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 529
+ERROR - 2019-01-04 11:23:49 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 529
+ERROR - 2019-01-04 11:23:49 --> Severity: Notice --> Undefined index: reportdate C:\xampp\htdocs\ria\application\models\cashbook_model.php 392
+ERROR - 2019-01-04 11:23:49 --> Severity: Notice --> Undefined index: Narration C:\xampp\htdocs\ria\application\models\cashbook_model.php 393
+ERROR - 2019-01-04 11:23:49 --> Severity: Notice --> Undefined index: Balance C:\xampp\htdocs\ria\application\models\cashbook_model.php 394
+ERROR - 2019-01-04 11:23:53 --> Severity: Notice --> Undefined variable: fdate C:\xampp\htdocs\ria\application\controllers\cashbook.php 1825
+ERROR - 2019-01-04 11:23:53 --> Severity: Notice --> Undefined variable: tdate C:\xampp\htdocs\ria\application\controllers\cashbook.php 1825
+ERROR - 2019-01-04 11:23:53 --> Severity: Notice --> Undefined variable: fa C:\xampp\htdocs\ria\application\controllers\cashbook.php 1825
+ERROR - 2019-01-04 11:23:54 --> Severity: Notice --> Undefined variable: aa C:\xampp\htdocs\ria\application\controllers\cashbook.php 1825
+ERROR - 2019-01-04 11:23:54 --> Severity: Notice --> Undefined variable: financialyear C:\xampp\htdocs\ria\application\views\bankstatement.php 2
+ERROR - 2019-01-04 11:23:54 --> Severity: Warning --> Invalid argument supplied for foreach() C:\xampp\htdocs\ria\application\views\bankstatement.php 2
+ERROR - 2019-01-04 11:23:54 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 87
+ERROR - 2019-01-04 11:23:54 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 87
+ERROR - 2019-01-04 11:23:54 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 88
+ERROR - 2019-01-04 11:23:54 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 88
+ERROR - 2019-01-04 11:23:54 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 89
+ERROR - 2019-01-04 11:23:54 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 89
+ERROR - 2019-01-04 11:23:54 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 139
+ERROR - 2019-01-04 11:23:54 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 139
+ERROR - 2019-01-04 11:23:55 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 140
+ERROR - 2019-01-04 11:23:55 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 140
+ERROR - 2019-01-04 11:23:55 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 141
+ERROR - 2019-01-04 11:23:55 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 141
+ERROR - 2019-01-04 11:23:55 --> Severity: Notice --> Undefined variable: Bankname C:\xampp\htdocs\ria\application\views\bankstatement.php 237
+ERROR - 2019-01-04 11:27:10 --> Severity: Notice --> Undefined variable: creditdebit C:\xampp\htdocs\ria\application\views\bankingfile.php 132
+ERROR - 2019-01-04 11:27:43 --> Severity: Notice --> Undefined variable: filename C:\xampp\htdocs\ria\application\controllers\cashbook.php 236
+ERROR - 2019-01-04 11:27:43 --> The upload path does not appear to be valid.
+ERROR - 2019-01-04 11:27:43 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 529
+ERROR - 2019-01-04 11:27:43 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 529
+ERROR - 2019-01-04 11:27:43 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 529
+ERROR - 2019-01-04 11:27:43 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 529
+ERROR - 2019-01-04 11:27:44 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 529
+ERROR - 2019-01-04 11:27:44 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 529
+ERROR - 2019-01-04 11:27:44 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 529
+ERROR - 2019-01-04 11:27:44 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 529
+ERROR - 2019-01-04 11:27:44 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 529
+ERROR - 2019-01-04 11:27:44 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 529
+ERROR - 2019-01-04 11:27:44 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 529
+ERROR - 2019-01-04 11:27:44 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 529
+ERROR - 2019-01-04 11:27:44 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 529
+ERROR - 2019-01-04 11:27:44 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 529
+ERROR - 2019-01-04 11:27:44 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 529
+ERROR - 2019-01-04 11:27:44 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 529
+ERROR - 2019-01-04 11:27:45 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 529
+ERROR - 2019-01-04 11:27:45 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 529
+ERROR - 2019-01-04 11:27:45 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 529
+ERROR - 2019-01-04 11:27:45 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 529
+ERROR - 2019-01-04 11:27:45 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 529
+ERROR - 2019-01-04 11:27:45 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 529
+ERROR - 2019-01-04 11:27:45 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 529
+ERROR - 2019-01-04 11:27:45 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 529
+ERROR - 2019-01-04 11:27:45 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 529
+ERROR - 2019-01-04 11:27:45 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 529
+ERROR - 2019-01-04 11:27:45 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 529
+ERROR - 2019-01-04 11:27:45 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 529
+ERROR - 2019-01-04 11:27:45 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 529
+ERROR - 2019-01-04 11:27:46 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 529
+ERROR - 2019-01-04 11:27:46 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 529
+ERROR - 2019-01-04 11:27:46 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 529
+ERROR - 2019-01-04 11:27:46 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 529
+ERROR - 2019-01-04 11:27:46 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 529
+ERROR - 2019-01-04 11:27:46 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 529
+ERROR - 2019-01-04 11:27:46 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 529
+ERROR - 2019-01-04 11:27:46 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 529
+ERROR - 2019-01-04 11:27:46 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 529
+ERROR - 2019-01-04 11:27:46 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 529
+ERROR - 2019-01-04 11:27:46 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 529
+ERROR - 2019-01-04 11:27:46 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 529
+ERROR - 2019-01-04 11:27:47 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 529
+ERROR - 2019-01-04 11:27:47 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 529
+ERROR - 2019-01-04 11:27:47 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 529
+ERROR - 2019-01-04 11:27:47 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 529
+ERROR - 2019-01-04 11:27:47 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 529
+ERROR - 2019-01-04 11:27:47 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 529
+ERROR - 2019-01-04 11:27:47 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 529
+ERROR - 2019-01-04 11:27:47 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 529
+ERROR - 2019-01-04 11:27:47 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 529
+ERROR - 2019-01-04 11:27:47 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 529
+ERROR - 2019-01-04 11:27:47 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 529
+ERROR - 2019-01-04 11:27:47 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 529
+ERROR - 2019-01-04 11:27:48 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 529
+ERROR - 2019-01-04 11:27:48 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 529
+ERROR - 2019-01-04 11:27:48 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 529
+ERROR - 2019-01-04 11:27:48 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 529
+ERROR - 2019-01-04 11:27:48 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 529
+ERROR - 2019-01-04 11:27:48 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 529
+ERROR - 2019-01-04 11:27:48 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 529
+ERROR - 2019-01-04 11:27:48 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 529
+ERROR - 2019-01-04 11:27:48 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 529
+ERROR - 2019-01-04 11:27:48 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 529
+ERROR - 2019-01-04 11:27:48 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 529
+ERROR - 2019-01-04 11:27:48 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 529
+ERROR - 2019-01-04 11:27:49 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 529
+ERROR - 2019-01-04 11:27:49 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 529
+ERROR - 2019-01-04 11:27:49 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 529
+ERROR - 2019-01-04 11:27:49 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 529
+ERROR - 2019-01-04 11:27:49 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 529
+ERROR - 2019-01-04 11:27:49 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 529
+ERROR - 2019-01-04 11:27:49 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 529
+ERROR - 2019-01-04 11:27:49 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 529
+ERROR - 2019-01-04 11:27:49 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 529
+ERROR - 2019-01-04 11:27:49 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 529
+ERROR - 2019-01-04 11:27:49 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 529
+ERROR - 2019-01-04 11:27:49 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 529
+ERROR - 2019-01-04 11:27:50 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 529
+ERROR - 2019-01-04 11:27:50 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 529
+ERROR - 2019-01-04 11:27:50 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 529
+ERROR - 2019-01-04 11:27:50 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 529
+ERROR - 2019-01-04 11:27:50 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 529
+ERROR - 2019-01-04 11:27:50 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 529
+ERROR - 2019-01-04 11:27:50 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 529
+ERROR - 2019-01-04 11:27:50 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 529
+ERROR - 2019-01-04 11:27:50 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 529
+ERROR - 2019-01-04 11:27:50 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 529
+ERROR - 2019-01-04 11:27:50 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 529
+ERROR - 2019-01-04 11:27:51 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 529
+ERROR - 2019-01-04 11:27:51 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 529
+ERROR - 2019-01-04 11:27:51 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 529
+ERROR - 2019-01-04 11:27:51 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 529
+ERROR - 2019-01-04 11:27:51 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 529
+ERROR - 2019-01-04 11:27:51 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 529
+ERROR - 2019-01-04 11:27:51 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 529
+ERROR - 2019-01-04 11:27:51 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 529
+ERROR - 2019-01-04 11:27:51 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 529
+ERROR - 2019-01-04 11:27:51 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 529
+ERROR - 2019-01-04 11:27:51 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 529
+ERROR - 2019-01-04 11:27:51 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 529
+ERROR - 2019-01-04 11:27:52 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 529
+ERROR - 2019-01-04 11:27:52 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 529
+ERROR - 2019-01-04 11:27:52 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 529
+ERROR - 2019-01-04 11:27:52 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 529
+ERROR - 2019-01-04 11:27:52 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 529
+ERROR - 2019-01-04 11:27:52 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 529
+ERROR - 2019-01-04 11:27:52 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 529
+ERROR - 2019-01-04 11:27:52 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 529
+ERROR - 2019-01-04 11:27:52 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 529
+ERROR - 2019-01-04 11:27:52 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 529
+ERROR - 2019-01-04 11:27:52 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 529
+ERROR - 2019-01-04 11:27:52 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 529
+ERROR - 2019-01-04 11:27:53 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 529
+ERROR - 2019-01-04 11:27:53 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 529
+ERROR - 2019-01-04 11:27:53 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 529
+ERROR - 2019-01-04 11:27:53 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 529
+ERROR - 2019-01-04 11:27:53 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 529
+ERROR - 2019-01-04 11:27:53 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 529
+ERROR - 2019-01-04 11:27:53 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 529
+ERROR - 2019-01-04 11:27:53 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 529
+ERROR - 2019-01-04 11:27:53 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 529
+ERROR - 2019-01-04 11:27:53 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 529
+ERROR - 2019-01-04 11:27:53 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 529
+ERROR - 2019-01-04 11:27:53 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 529
+ERROR - 2019-01-04 11:27:54 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 529
+ERROR - 2019-01-04 11:27:54 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 529
+ERROR - 2019-01-04 11:27:54 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 529
+ERROR - 2019-01-04 11:27:54 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 529
+ERROR - 2019-01-04 11:27:54 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 529
+ERROR - 2019-01-04 11:27:54 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 529
+ERROR - 2019-01-04 11:27:54 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 529
+ERROR - 2019-01-04 11:27:54 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 529
+ERROR - 2019-01-04 11:27:54 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 529
+ERROR - 2019-01-04 11:27:54 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 529
+ERROR - 2019-01-04 11:27:54 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 529
+ERROR - 2019-01-04 11:27:54 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 529
+ERROR - 2019-01-04 11:27:55 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 529
+ERROR - 2019-01-04 11:27:55 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 529
+ERROR - 2019-01-04 11:27:55 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 529
+ERROR - 2019-01-04 11:27:55 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 529
+ERROR - 2019-01-04 11:27:55 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 529
+ERROR - 2019-01-04 11:27:55 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 529
+ERROR - 2019-01-04 11:27:55 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 529
+ERROR - 2019-01-04 11:27:55 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 529
+ERROR - 2019-01-04 11:27:55 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 529
+ERROR - 2019-01-04 11:27:55 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 529
+ERROR - 2019-01-04 11:27:55 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 529
+ERROR - 2019-01-04 11:27:55 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 529
+ERROR - 2019-01-04 11:27:55 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 529
+ERROR - 2019-01-04 11:27:56 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 529
+ERROR - 2019-01-04 11:27:56 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 529
+ERROR - 2019-01-04 11:27:56 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 529
+ERROR - 2019-01-04 11:27:56 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 529
+ERROR - 2019-01-04 11:27:56 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 529
+ERROR - 2019-01-04 11:27:56 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 529
+ERROR - 2019-01-04 11:27:56 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 529
+ERROR - 2019-01-04 11:27:56 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 529
+ERROR - 2019-01-04 11:27:56 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 529
+ERROR - 2019-01-04 11:27:57 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 529
+ERROR - 2019-01-04 11:27:57 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 529
+ERROR - 2019-01-04 11:27:57 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 529
+ERROR - 2019-01-04 11:27:57 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 529
+ERROR - 2019-01-04 11:27:57 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 529
+ERROR - 2019-01-04 11:27:57 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 529
+ERROR - 2019-01-04 11:27:57 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 529
+ERROR - 2019-01-04 11:27:57 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 529
+ERROR - 2019-01-04 11:27:57 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 529
+ERROR - 2019-01-04 11:27:57 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 529
+ERROR - 2019-01-04 11:27:57 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 529
+ERROR - 2019-01-04 11:27:57 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 529
+ERROR - 2019-01-04 11:27:58 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 529
+ERROR - 2019-01-04 11:27:58 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 529
+ERROR - 2019-01-04 11:27:58 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 529
+ERROR - 2019-01-04 11:27:58 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 529
+ERROR - 2019-01-04 11:27:58 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 529
+ERROR - 2019-01-04 11:27:58 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 529
+ERROR - 2019-01-04 11:27:58 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 529
+ERROR - 2019-01-04 11:27:58 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 529
+ERROR - 2019-01-04 11:27:58 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 529
+ERROR - 2019-01-04 11:27:58 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 529
+ERROR - 2019-01-04 11:27:58 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 529
+ERROR - 2019-01-04 11:27:58 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 529
+ERROR - 2019-01-04 11:27:59 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 529
+ERROR - 2019-01-04 11:27:59 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 529
+ERROR - 2019-01-04 11:27:59 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 529
+ERROR - 2019-01-04 11:27:59 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 529
+ERROR - 2019-01-04 11:27:59 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 529
+ERROR - 2019-01-04 11:27:59 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 529
+ERROR - 2019-01-04 11:27:59 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 529
+ERROR - 2019-01-04 11:27:59 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 529
+ERROR - 2019-01-04 11:27:59 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 529
+ERROR - 2019-01-04 11:27:59 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 529
+ERROR - 2019-01-04 11:27:59 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 529
+ERROR - 2019-01-04 11:27:59 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 529
+ERROR - 2019-01-04 11:28:00 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 529
+ERROR - 2019-01-04 11:28:00 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 529
+ERROR - 2019-01-04 11:28:00 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 529
+ERROR - 2019-01-04 11:28:00 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 529
+ERROR - 2019-01-04 11:28:00 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 529
+ERROR - 2019-01-04 11:28:00 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 529
+ERROR - 2019-01-04 11:28:00 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 529
+ERROR - 2019-01-04 11:28:00 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 529
+ERROR - 2019-01-04 11:28:00 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 529
+ERROR - 2019-01-04 11:28:00 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 529
+ERROR - 2019-01-04 11:28:00 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 529
+ERROR - 2019-01-04 11:28:00 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 529
+ERROR - 2019-01-04 11:28:01 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 529
+ERROR - 2019-01-04 11:28:01 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 529
+ERROR - 2019-01-04 11:28:01 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 529
+ERROR - 2019-01-04 11:28:01 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 529
+ERROR - 2019-01-04 11:28:01 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 529
+ERROR - 2019-01-04 11:28:01 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 529
+ERROR - 2019-01-04 11:28:01 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 529
+ERROR - 2019-01-04 11:28:01 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 529
+ERROR - 2019-01-04 11:28:01 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 529
+ERROR - 2019-01-04 11:28:01 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 529
+ERROR - 2019-01-04 11:28:01 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 529
+ERROR - 2019-01-04 11:28:02 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 529
+ERROR - 2019-01-04 11:28:02 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 529
+ERROR - 2019-01-04 11:28:02 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 529
+ERROR - 2019-01-04 11:28:02 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 529
+ERROR - 2019-01-04 11:28:02 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 529
+ERROR - 2019-01-04 11:28:02 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 529
+ERROR - 2019-01-04 11:28:02 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 529
+ERROR - 2019-01-04 11:28:02 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 529
+ERROR - 2019-01-04 11:28:02 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 529
+ERROR - 2019-01-04 11:28:02 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 529
+ERROR - 2019-01-04 11:28:02 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 529
+ERROR - 2019-01-04 11:28:03 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 529
+ERROR - 2019-01-04 11:28:03 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 529
+ERROR - 2019-01-04 11:28:03 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 529
+ERROR - 2019-01-04 11:28:03 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 529
+ERROR - 2019-01-04 11:28:03 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 529
+ERROR - 2019-01-04 11:28:03 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 529
+ERROR - 2019-01-04 11:28:03 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 529
+ERROR - 2019-01-04 11:28:03 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 529
+ERROR - 2019-01-04 11:28:03 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 529
+ERROR - 2019-01-04 11:28:03 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 529
+ERROR - 2019-01-04 11:28:04 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 529
+ERROR - 2019-01-04 11:28:04 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 529
+ERROR - 2019-01-04 11:28:04 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 529
+ERROR - 2019-01-04 11:28:04 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 529
+ERROR - 2019-01-04 11:28:04 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 529
+ERROR - 2019-01-04 11:28:04 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 529
+ERROR - 2019-01-04 11:28:04 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 529
+ERROR - 2019-01-04 11:28:04 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 529
+ERROR - 2019-01-04 11:28:04 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 529
+ERROR - 2019-01-04 11:28:04 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 529
+ERROR - 2019-01-04 11:28:05 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 529
+ERROR - 2019-01-04 11:28:05 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 529
+ERROR - 2019-01-04 11:28:05 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 529
+ERROR - 2019-01-04 11:28:05 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 529
+ERROR - 2019-01-04 11:28:05 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 529
+ERROR - 2019-01-04 11:28:05 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 529
+ERROR - 2019-01-04 11:28:05 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 529
+ERROR - 2019-01-04 11:28:05 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 529
+ERROR - 2019-01-04 11:28:05 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 529
+ERROR - 2019-01-04 11:28:05 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 529
+ERROR - 2019-01-04 11:28:05 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 529
+ERROR - 2019-01-04 11:28:05 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 529
+ERROR - 2019-01-04 11:28:06 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 529
+ERROR - 2019-01-04 11:28:06 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 529
+ERROR - 2019-01-04 11:28:06 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 529
+ERROR - 2019-01-04 11:28:06 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 529
+ERROR - 2019-01-04 11:28:06 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 529
+ERROR - 2019-01-04 11:28:06 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 529
+ERROR - 2019-01-04 11:28:06 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 529
+ERROR - 2019-01-04 11:28:06 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 529
+ERROR - 2019-01-04 11:28:06 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 529
+ERROR - 2019-01-04 11:28:06 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 529
+ERROR - 2019-01-04 11:28:06 --> Severity: Notice --> Undefined index: reportdate C:\xampp\htdocs\ria\application\models\cashbook_model.php 392
+ERROR - 2019-01-04 11:28:06 --> Severity: Notice --> Undefined index: Narration C:\xampp\htdocs\ria\application\models\cashbook_model.php 393
+ERROR - 2019-01-04 11:28:06 --> Severity: Notice --> Undefined index: Balance C:\xampp\htdocs\ria\application\models\cashbook_model.php 394
+ERROR - 2019-01-04 11:28:11 --> Severity: Notice --> Undefined variable: fdate C:\xampp\htdocs\ria\application\controllers\cashbook.php 1825
+ERROR - 2019-01-04 11:28:11 --> Severity: Notice --> Undefined variable: tdate C:\xampp\htdocs\ria\application\controllers\cashbook.php 1825
+ERROR - 2019-01-04 11:28:11 --> Severity: Notice --> Undefined variable: fa C:\xampp\htdocs\ria\application\controllers\cashbook.php 1825
+ERROR - 2019-01-04 11:28:11 --> Severity: Notice --> Undefined variable: aa C:\xampp\htdocs\ria\application\controllers\cashbook.php 1825
+ERROR - 2019-01-04 11:28:11 --> Severity: Notice --> Undefined variable: financialyear C:\xampp\htdocs\ria\application\views\bankstatement.php 2
+ERROR - 2019-01-04 11:28:11 --> Severity: Warning --> Invalid argument supplied for foreach() C:\xampp\htdocs\ria\application\views\bankstatement.php 2
+ERROR - 2019-01-04 11:28:11 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 87
+ERROR - 2019-01-04 11:28:11 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 87
+ERROR - 2019-01-04 11:28:11 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 88
+ERROR - 2019-01-04 11:28:11 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 88
+ERROR - 2019-01-04 11:28:11 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 89
+ERROR - 2019-01-04 11:28:12 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 89
+ERROR - 2019-01-04 11:28:12 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 139
+ERROR - 2019-01-04 11:28:12 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 139
+ERROR - 2019-01-04 11:28:12 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 140
+ERROR - 2019-01-04 11:28:12 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 140
+ERROR - 2019-01-04 11:28:12 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 141
+ERROR - 2019-01-04 11:28:12 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 141
+ERROR - 2019-01-04 11:34:54 --> Severity: Notice --> Undefined variable: creditdebit C:\xampp\htdocs\ria\application\views\bankingfile.php 132
+ERROR - 2019-01-04 11:55:46 --> Severity: Warning --> mysqli_connect(): (HY000/2002): A connection attempt failed because the connected party did not properly respond after a period of time, or established connection failed because connected host has failed to respond.
+ C:\xampp\htdocs\ria\system\database\drivers\mysqli\mysqli_driver.php 77
+ERROR - 2019-01-04 11:55:47 --> Unable to connect to the database
+ERROR - 2019-01-04 11:55:51 --> Severity: Warning --> mysqli_connect(): (HY000/2002): A connection attempt failed because the connected party did not properly respond after a period of time, or established connection failed because connected host has failed to respond.
+ C:\xampp\htdocs\ria\system\database\drivers\mysqli\mysqli_driver.php 77
+ERROR - 2019-01-04 11:55:51 --> Unable to connect to the database
+ERROR - 2019-01-04 12:46:06 --> Severity: Notice --> Undefined variable: creditdebit C:\xampp\htdocs\ria\application\views\bankingfile.php 132
+ERROR - 2019-01-04 14:05:59 --> Severity: Notice --> Undefined variable: filename C:\xampp\htdocs\ria\application\controllers\cashbook.php 236
+ERROR - 2019-01-04 14:06:00 --> The upload path does not appear to be valid.
+ERROR - 2019-01-04 14:06:08 --> Severity: Notice --> Undefined variable: highestRow4 C:\xampp\htdocs\ria\application\controllers\cashbook.php 265
+ERROR - 2019-01-04 14:06:17 --> Severity: Notice --> Undefined variable: fdate C:\xampp\htdocs\ria\application\controllers\cashbook.php 1825
+ERROR - 2019-01-04 14:06:17 --> Severity: Notice --> Undefined variable: tdate C:\xampp\htdocs\ria\application\controllers\cashbook.php 1825
+ERROR - 2019-01-04 14:06:17 --> Severity: Notice --> Undefined variable: fa C:\xampp\htdocs\ria\application\controllers\cashbook.php 1825
+ERROR - 2019-01-04 14:06:17 --> Severity: Notice --> Undefined variable: aa C:\xampp\htdocs\ria\application\controllers\cashbook.php 1825
+ERROR - 2019-01-04 14:06:20 --> Severity: Notice --> Undefined variable: financialyear C:\xampp\htdocs\ria\application\views\bankstatement.php 2
+ERROR - 2019-01-04 14:06:20 --> Severity: Warning --> Invalid argument supplied for foreach() C:\xampp\htdocs\ria\application\views\bankstatement.php 2
+ERROR - 2019-01-04 14:06:20 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 87
+ERROR - 2019-01-04 14:06:20 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 87
+ERROR - 2019-01-04 14:06:20 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 88
+ERROR - 2019-01-04 14:06:20 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 88
+ERROR - 2019-01-04 14:06:20 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 89
+ERROR - 2019-01-04 14:06:20 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 89
+ERROR - 2019-01-04 14:06:20 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 139
+ERROR - 2019-01-04 14:06:20 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 139
+ERROR - 2019-01-04 14:06:20 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 140
+ERROR - 2019-01-04 14:06:20 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 140
+ERROR - 2019-01-04 14:06:20 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 141
+ERROR - 2019-01-04 14:06:20 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 141
+ERROR - 2019-01-04 14:09:57 --> Severity: Notice --> Undefined variable: creditdebit C:\xampp\htdocs\ria\application\views\bankingfile.php 132
+ERROR - 2019-01-04 14:10:56 --> Severity: Notice --> Undefined variable: filename C:\xampp\htdocs\ria\application\controllers\cashbook.php 236
+ERROR - 2019-01-04 14:10:56 --> Severity: Notice --> Undefined variable: filename C:\xampp\htdocs\ria\application\controllers\cashbook.php 236
+ERROR - 2019-01-04 14:10:56 --> The upload path does not appear to be valid.
+ERROR - 2019-01-04 14:10:56 --> The upload path does not appear to be valid.
+ERROR - 2019-01-04 14:11:02 --> Severity: Notice --> Undefined variable: highestRow4 C:\xampp\htdocs\ria\application\controllers\cashbook.php 265
+ERROR - 2019-01-04 14:11:02 --> Severity: Notice --> Undefined variable: highestRow4 C:\xampp\htdocs\ria\application\controllers\cashbook.php 265
+ERROR - 2019-01-04 14:11:24 --> Severity: Notice --> Undefined variable: fdate C:\xampp\htdocs\ria\application\controllers\cashbook.php 1825
+ERROR - 2019-01-04 14:11:24 --> Severity: Notice --> Undefined variable: tdate C:\xampp\htdocs\ria\application\controllers\cashbook.php 1825
+ERROR - 2019-01-04 14:11:24 --> Severity: Notice --> Undefined variable: fa C:\xampp\htdocs\ria\application\controllers\cashbook.php 1825
+ERROR - 2019-01-04 14:11:24 --> Severity: Notice --> Undefined variable: aa C:\xampp\htdocs\ria\application\controllers\cashbook.php 1825
+ERROR - 2019-01-04 14:11:25 --> Severity: Notice --> Undefined variable: financialyear C:\xampp\htdocs\ria\application\views\bankstatement.php 2
+ERROR - 2019-01-04 14:11:25 --> Severity: Warning --> Invalid argument supplied for foreach() C:\xampp\htdocs\ria\application\views\bankstatement.php 2
+ERROR - 2019-01-04 14:11:25 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 87
+ERROR - 2019-01-04 14:11:25 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 87
+ERROR - 2019-01-04 14:11:25 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 88
+ERROR - 2019-01-04 14:11:25 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 88
+ERROR - 2019-01-04 14:11:25 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 89
+ERROR - 2019-01-04 14:11:25 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 89
+ERROR - 2019-01-04 14:11:25 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 139
+ERROR - 2019-01-04 14:11:25 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 139
+ERROR - 2019-01-04 14:11:25 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 140
+ERROR - 2019-01-04 14:11:25 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 140
+ERROR - 2019-01-04 14:11:25 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 141
+ERROR - 2019-01-04 14:11:25 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 141
diff --git a/application/logs/log-2019-01-05.php b/application/logs/log-2019-01-05.php
new file mode 100644
index 00000000..b1463a88
--- /dev/null
+++ b/application/logs/log-2019-01-05.php
@@ -0,0 +1,3904 @@
+
+
+ERROR - 2019-01-05 06:01:34 --> Severity: Notice --> Undefined variable: creditdebit C:\xampp\htdocs\ria\application\views\bankingfile.php 132
+ERROR - 2019-01-05 06:16:09 --> Severity: Notice --> Undefined variable: filename C:\xampp\htdocs\ria\application\controllers\cashbook.php 236
+ERROR - 2019-01-05 06:16:09 --> The upload path does not appear to be valid.
+ERROR - 2019-01-05 06:16:16 --> Severity: Notice --> Undefined variable: highestRow4 C:\xampp\htdocs\ria\application\controllers\cashbook.php 265
+ERROR - 2019-01-05 06:16:24 --> Severity: Notice --> Undefined variable: fdate C:\xampp\htdocs\ria\application\controllers\cashbook.php 1544
+ERROR - 2019-01-05 06:16:25 --> Severity: Notice --> Undefined variable: tdate C:\xampp\htdocs\ria\application\controllers\cashbook.php 1544
+ERROR - 2019-01-05 06:16:25 --> Severity: Notice --> Undefined variable: fa C:\xampp\htdocs\ria\application\controllers\cashbook.php 1544
+ERROR - 2019-01-05 06:16:25 --> Severity: Notice --> Undefined variable: aa C:\xampp\htdocs\ria\application\controllers\cashbook.php 1544
+ERROR - 2019-01-05 06:16:26 --> Severity: Notice --> Undefined variable: financialyear C:\xampp\htdocs\ria\application\views\bankstatement.php 2
+ERROR - 2019-01-05 06:16:26 --> Severity: Warning --> Invalid argument supplied for foreach() C:\xampp\htdocs\ria\application\views\bankstatement.php 2
+ERROR - 2019-01-05 06:16:26 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 87
+ERROR - 2019-01-05 06:16:26 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 87
+ERROR - 2019-01-05 06:16:26 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 88
+ERROR - 2019-01-05 06:16:26 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 88
+ERROR - 2019-01-05 06:16:26 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 89
+ERROR - 2019-01-05 06:16:26 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 89
+ERROR - 2019-01-05 06:16:26 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 139
+ERROR - 2019-01-05 06:16:26 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 139
+ERROR - 2019-01-05 06:16:26 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 140
+ERROR - 2019-01-05 06:16:26 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 140
+ERROR - 2019-01-05 06:16:26 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 141
+ERROR - 2019-01-05 06:16:26 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 141
+ERROR - 2019-01-05 06:16:26 --> Severity: Notice --> Undefined variable: Bankname C:\xampp\htdocs\ria\application\views\bankstatement.php 237
+ERROR - 2019-01-05 06:48:00 --> Severity: Notice --> Undefined variable: creditdebit C:\xampp\htdocs\ria\application\views\bankingfile.php 132
+ERROR - 2019-01-05 06:48:14 --> Severity: Notice --> Undefined variable: filename C:\xampp\htdocs\ria\application\controllers\cashbook.php 238
+ERROR - 2019-01-05 06:48:14 --> The upload path does not appear to be valid.
+ERROR - 2019-01-05 06:49:52 --> Severity: Notice --> Undefined variable: creditdebit C:\xampp\htdocs\ria\application\views\bankingfile.php 132
+ERROR - 2019-01-05 06:53:04 --> Severity: Notice --> Undefined variable: filename C:\xampp\htdocs\ria\application\controllers\cashbook.php 238
+ERROR - 2019-01-05 06:53:04 --> The upload path does not appear to be valid.
+ERROR - 2019-01-05 06:53:51 --> Severity: Notice --> Undefined variable: creditdebit C:\xampp\htdocs\ria\application\views\bankingfile.php 132
+ERROR - 2019-01-05 06:54:03 --> Severity: Notice --> Undefined variable: filename C:\xampp\htdocs\ria\application\controllers\cashbook.php 238
+ERROR - 2019-01-05 06:54:03 --> The upload path does not appear to be valid.
+ERROR - 2019-01-05 06:57:00 --> Severity: Notice --> Undefined variable: filename C:\xampp\htdocs\ria\application\controllers\cashbook.php 238
+ERROR - 2019-01-05 06:57:00 --> The upload path does not appear to be valid.
+ERROR - 2019-01-05 06:57:56 --> Severity: Notice --> Undefined variable: filename C:\xampp\htdocs\ria\application\controllers\cashbook.php 238
+ERROR - 2019-01-05 06:57:56 --> Severity: Notice --> Undefined index: myfile C:\xampp\htdocs\ria\application\controllers\cashbook.php 873
+ERROR - 2019-01-05 06:57:56 --> Severity: Notice --> Undefined index: myfile C:\xampp\htdocs\ria\application\controllers\cashbook.php 876
+ERROR - 2019-01-05 06:57:56 --> You did not select a file to upload.
+ERROR - 2019-01-05 06:58:43 --> Severity: Notice --> Undefined variable: filename C:\xampp\htdocs\ria\application\controllers\cashbook.php 238
+ERROR - 2019-01-05 06:58:43 --> The upload path does not appear to be valid.
+ERROR - 2019-01-05 06:59:42 --> Severity: Notice --> Undefined variable: filename C:\xampp\htdocs\ria\application\controllers\cashbook.php 238
+ERROR - 2019-01-05 06:59:42 --> The upload path does not appear to be valid.
+ERROR - 2019-01-05 07:00:11 --> Severity: Notice --> Undefined variable: filename C:\xampp\htdocs\ria\application\controllers\cashbook.php 238
+ERROR - 2019-01-05 07:00:11 --> The upload path does not appear to be valid.
+ERROR - 2019-01-05 07:09:42 --> Severity: Notice --> Undefined variable: filename C:\xampp\htdocs\ria\application\controllers\cashbook.php 238
+ERROR - 2019-01-05 07:09:42 --> The upload path does not appear to be valid.
+ERROR - 2019-01-05 07:10:03 --> Severity: Notice --> Undefined variable: filename C:\xampp\htdocs\ria\application\controllers\cashbook.php 238
+ERROR - 2019-01-05 07:10:03 --> The upload path does not appear to be valid.
+ERROR - 2019-01-05 07:11:10 --> Severity: Notice --> Undefined variable: filename C:\xampp\htdocs\ria\application\controllers\cashbook.php 238
+ERROR - 2019-01-05 07:11:10 --> The upload path does not appear to be valid.
+ERROR - 2019-01-05 07:11:47 --> Severity: Notice --> Undefined variable: creditdebit C:\xampp\htdocs\ria\application\views\bankingfile.php 132
+ERROR - 2019-01-05 07:11:51 --> Severity: Notice --> Undefined variable: fdate C:\xampp\htdocs\ria\application\controllers\cashbook.php 1552
+ERROR - 2019-01-05 07:11:51 --> Severity: Notice --> Undefined variable: tdate C:\xampp\htdocs\ria\application\controllers\cashbook.php 1552
+ERROR - 2019-01-05 07:11:51 --> Severity: Notice --> Undefined variable: fa C:\xampp\htdocs\ria\application\controllers\cashbook.php 1552
+ERROR - 2019-01-05 07:11:51 --> Severity: Notice --> Undefined variable: aa C:\xampp\htdocs\ria\application\controllers\cashbook.php 1552
+ERROR - 2019-01-05 07:11:52 --> Severity: Notice --> Undefined variable: financialyear C:\xampp\htdocs\ria\application\views\bankstatement.php 2
+ERROR - 2019-01-05 07:11:52 --> Severity: Warning --> Invalid argument supplied for foreach() C:\xampp\htdocs\ria\application\views\bankstatement.php 2
+ERROR - 2019-01-05 07:11:52 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 87
+ERROR - 2019-01-05 07:11:52 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 87
+ERROR - 2019-01-05 07:11:52 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 88
+ERROR - 2019-01-05 07:11:52 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 88
+ERROR - 2019-01-05 07:11:52 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 89
+ERROR - 2019-01-05 07:11:52 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 89
+ERROR - 2019-01-05 07:11:52 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 139
+ERROR - 2019-01-05 07:11:52 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 139
+ERROR - 2019-01-05 07:11:52 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 140
+ERROR - 2019-01-05 07:11:52 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 140
+ERROR - 2019-01-05 07:11:52 --> Severity: Notice --> Undefined variable: creditdebit C:\xampp\htdocs\ria\application\views\bankingfile.php 132
+ERROR - 2019-01-05 07:11:52 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 141
+ERROR - 2019-01-05 07:11:52 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 141
+ERROR - 2019-01-05 07:11:53 --> Severity: Notice --> Undefined variable: Bankname C:\xampp\htdocs\ria\application\views\bankstatement.php 237
+ERROR - 2019-01-05 07:12:03 --> Severity: Notice --> Undefined variable: filename C:\xampp\htdocs\ria\application\controllers\cashbook.php 238
+ERROR - 2019-01-05 07:12:03 --> The upload path does not appear to be valid.
+ERROR - 2019-01-05 07:12:04 --> Severity: Notice --> Undefined variable: highestRow4 C:\xampp\htdocs\ria\application\controllers\cashbook.php 273
+ERROR - 2019-01-05 07:12:48 --> Severity: Notice --> Undefined variable: filename C:\xampp\htdocs\ria\application\controllers\cashbook.php 238
+ERROR - 2019-01-05 07:12:48 --> The upload path does not appear to be valid.
+ERROR - 2019-01-05 07:12:49 --> Severity: Notice --> Undefined variable: highestRow4 C:\xampp\htdocs\ria\application\controllers\cashbook.php 273
+ERROR - 2019-01-05 07:13:01 --> Severity: Notice --> Undefined variable: filename C:\xampp\htdocs\ria\application\controllers\cashbook.php 238
+ERROR - 2019-01-05 07:13:01 --> The upload path does not appear to be valid.
+ERROR - 2019-01-05 07:13:01 --> Severity: Notice --> Undefined variable: filename C:\xampp\htdocs\ria\application\controllers\cashbook.php 238
+ERROR - 2019-01-05 07:13:01 --> The upload path does not appear to be valid.
+ERROR - 2019-01-05 07:13:02 --> Severity: Notice --> Undefined variable: highestRow4 C:\xampp\htdocs\ria\application\controllers\cashbook.php 273
+ERROR - 2019-01-05 07:13:02 --> Severity: Notice --> Undefined variable: highestRow4 C:\xampp\htdocs\ria\application\controllers\cashbook.php 273
+ERROR - 2019-01-05 07:36:35 --> Severity: Notice --> Undefined variable: creditdebit C:\xampp\htdocs\ria\application\views\bankingfile.php 132
+ERROR - 2019-01-05 07:36:43 --> Severity: Notice --> Undefined variable: filename C:\xampp\htdocs\ria\application\controllers\cashbook.php 238
+ERROR - 2019-01-05 07:36:43 --> The upload path does not appear to be valid.
+ERROR - 2019-01-05 07:36:51 --> Severity: Notice --> Undefined variable: fdate C:\xampp\htdocs\ria\application\controllers\cashbook.php 1554
+ERROR - 2019-01-05 07:36:51 --> Severity: Notice --> Undefined variable: tdate C:\xampp\htdocs\ria\application\controllers\cashbook.php 1554
+ERROR - 2019-01-05 07:36:51 --> Severity: Notice --> Undefined variable: fa C:\xampp\htdocs\ria\application\controllers\cashbook.php 1554
+ERROR - 2019-01-05 07:36:51 --> Severity: Notice --> Undefined variable: aa C:\xampp\htdocs\ria\application\controllers\cashbook.php 1554
+ERROR - 2019-01-05 07:36:51 --> Severity: Notice --> Undefined variable: financialyear C:\xampp\htdocs\ria\application\views\bankstatement.php 2
+ERROR - 2019-01-05 07:36:51 --> Severity: Warning --> Invalid argument supplied for foreach() C:\xampp\htdocs\ria\application\views\bankstatement.php 2
+ERROR - 2019-01-05 07:36:51 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 87
+ERROR - 2019-01-05 07:36:51 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 87
+ERROR - 2019-01-05 07:36:52 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 88
+ERROR - 2019-01-05 07:36:52 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 88
+ERROR - 2019-01-05 07:36:52 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 89
+ERROR - 2019-01-05 07:36:52 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 89
+ERROR - 2019-01-05 07:36:52 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 139
+ERROR - 2019-01-05 07:36:52 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 139
+ERROR - 2019-01-05 07:36:52 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 140
+ERROR - 2019-01-05 07:36:52 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 140
+ERROR - 2019-01-05 07:36:52 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 141
+ERROR - 2019-01-05 07:36:52 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 141
+ERROR - 2019-01-05 07:47:12 --> Severity: Notice --> Undefined variable: creditdebit C:\xampp\htdocs\ria\application\views\bankingfile.php 132
+ERROR - 2019-01-05 07:47:38 --> Severity: Notice --> Undefined variable: filename C:\xampp\htdocs\ria\application\controllers\cashbook.php 235
+ERROR - 2019-01-05 07:47:38 --> The upload path does not appear to be valid.
+ERROR - 2019-01-05 07:47:39 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 376
+ERROR - 2019-01-05 07:47:39 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 376
+ERROR - 2019-01-05 07:47:39 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 376
+ERROR - 2019-01-05 07:47:39 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 376
+ERROR - 2019-01-05 07:47:39 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 376
+ERROR - 2019-01-05 07:47:39 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 376
+ERROR - 2019-01-05 07:47:39 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 376
+ERROR - 2019-01-05 07:47:39 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 376
+ERROR - 2019-01-05 07:47:40 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 376
+ERROR - 2019-01-05 07:47:40 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 376
+ERROR - 2019-01-05 07:47:40 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 376
+ERROR - 2019-01-05 07:47:44 --> Severity: Notice --> Undefined variable: fdate C:\xampp\htdocs\ria\application\controllers\cashbook.php 1598
+ERROR - 2019-01-05 07:47:44 --> Severity: Notice --> Undefined variable: tdate C:\xampp\htdocs\ria\application\controllers\cashbook.php 1598
+ERROR - 2019-01-05 07:47:44 --> Severity: Notice --> Undefined variable: fa C:\xampp\htdocs\ria\application\controllers\cashbook.php 1598
+ERROR - 2019-01-05 07:47:44 --> Severity: Notice --> Undefined variable: aa C:\xampp\htdocs\ria\application\controllers\cashbook.php 1598
+ERROR - 2019-01-05 07:47:44 --> Severity: Notice --> Undefined variable: financialyear C:\xampp\htdocs\ria\application\views\bankstatement.php 2
+ERROR - 2019-01-05 07:47:44 --> Severity: Warning --> Invalid argument supplied for foreach() C:\xampp\htdocs\ria\application\views\bankstatement.php 2
+ERROR - 2019-01-05 07:47:44 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 87
+ERROR - 2019-01-05 07:47:44 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 87
+ERROR - 2019-01-05 07:47:44 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 88
+ERROR - 2019-01-05 07:47:44 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 88
+ERROR - 2019-01-05 07:47:44 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 89
+ERROR - 2019-01-05 07:47:44 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 89
+ERROR - 2019-01-05 07:47:44 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 139
+ERROR - 2019-01-05 07:47:44 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 139
+ERROR - 2019-01-05 07:47:44 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 140
+ERROR - 2019-01-05 07:47:44 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 140
+ERROR - 2019-01-05 07:47:44 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 141
+ERROR - 2019-01-05 07:47:44 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 141
+ERROR - 2019-01-05 07:50:22 --> Severity: Notice --> Undefined variable: creditdebit C:\xampp\htdocs\ria\application\views\bankingfile.php 132
+ERROR - 2019-01-05 07:51:18 --> Severity: Notice --> Undefined variable: filename C:\xampp\htdocs\ria\application\controllers\cashbook.php 235
+ERROR - 2019-01-05 07:51:18 --> The upload path does not appear to be valid.
+ERROR - 2019-01-05 07:51:19 --> Severity: Warning --> DOMDocument::loadHTML(): Attribute width redefined in Entity, line: 21 C:\xampp\htdocs\ria\application\third_party\PHPExcel\Reader\HTML.php 495
+ERROR - 2019-01-05 07:51:19 --> Severity: Warning --> DOMDocument::loadHTML(): Unexpected end tag : table-- in Entity, line: 156 C:\xampp\htdocs\ria\application\third_party\PHPExcel\Reader\HTML.php 495
+ERROR - 2019-01-05 07:51:19 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 444
+ERROR - 2019-01-05 07:51:19 --> Severity: Notice --> Undefined index: Balance C:\xampp\htdocs\ria\application\models\cashbook_model.php 394
+ERROR - 2019-01-05 07:51:19 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 444
+ERROR - 2019-01-05 07:51:19 --> Severity: Notice --> Undefined index: reportdate C:\xampp\htdocs\ria\application\models\cashbook_model.php 392
+ERROR - 2019-01-05 07:51:19 --> Severity: Notice --> Undefined index: Narration C:\xampp\htdocs\ria\application\models\cashbook_model.php 393
+ERROR - 2019-01-05 07:51:19 --> Severity: Notice --> Undefined index: Balance C:\xampp\htdocs\ria\application\models\cashbook_model.php 394
+ERROR - 2019-01-05 07:51:20 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 444
+ERROR - 2019-01-05 07:51:20 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 444
+ERROR - 2019-01-05 07:51:20 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 444
+ERROR - 2019-01-05 07:51:20 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 444
+ERROR - 2019-01-05 07:51:20 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 444
+ERROR - 2019-01-05 07:51:20 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 444
+ERROR - 2019-01-05 07:51:23 --> Severity: Notice --> Undefined variable: fdate C:\xampp\htdocs\ria\application\controllers\cashbook.php 1665
+ERROR - 2019-01-05 07:51:23 --> Severity: Notice --> Undefined variable: tdate C:\xampp\htdocs\ria\application\controllers\cashbook.php 1665
+ERROR - 2019-01-05 07:51:23 --> Severity: Notice --> Undefined variable: fa C:\xampp\htdocs\ria\application\controllers\cashbook.php 1665
+ERROR - 2019-01-05 07:51:23 --> Severity: Notice --> Undefined variable: aa C:\xampp\htdocs\ria\application\controllers\cashbook.php 1665
+ERROR - 2019-01-05 07:51:24 --> Severity: Notice --> Undefined variable: financialyear C:\xampp\htdocs\ria\application\views\bankstatement.php 2
+ERROR - 2019-01-05 07:51:24 --> Severity: Warning --> Invalid argument supplied for foreach() C:\xampp\htdocs\ria\application\views\bankstatement.php 2
+ERROR - 2019-01-05 07:51:24 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 87
+ERROR - 2019-01-05 07:51:24 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 87
+ERROR - 2019-01-05 07:51:24 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 88
+ERROR - 2019-01-05 07:51:24 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 88
+ERROR - 2019-01-05 07:51:24 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 89
+ERROR - 2019-01-05 07:51:24 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 89
+ERROR - 2019-01-05 07:51:24 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 139
+ERROR - 2019-01-05 07:51:24 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 139
+ERROR - 2019-01-05 07:51:24 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 140
+ERROR - 2019-01-05 07:51:24 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 140
+ERROR - 2019-01-05 07:51:24 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 141
+ERROR - 2019-01-05 07:51:24 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 141
+ERROR - 2019-01-05 07:58:27 --> Severity: Notice --> Undefined variable: creditdebit C:\xampp\htdocs\ria\application\views\bankingfile.php 132
+ERROR - 2019-01-05 08:01:21 --> Severity: Notice --> Undefined variable: filename C:\xampp\htdocs\ria\application\controllers\cashbook.php 235
+ERROR - 2019-01-05 08:01:21 --> The upload path does not appear to be valid.
+ERROR - 2019-01-05 08:01:29 --> Severity: Notice --> Undefined variable: fdate C:\xampp\htdocs\ria\application\controllers\cashbook.php 1737
+ERROR - 2019-01-05 08:01:29 --> Severity: Notice --> Undefined variable: tdate C:\xampp\htdocs\ria\application\controllers\cashbook.php 1737
+ERROR - 2019-01-05 08:01:29 --> Severity: Notice --> Undefined variable: fa C:\xampp\htdocs\ria\application\controllers\cashbook.php 1737
+ERROR - 2019-01-05 08:01:29 --> Severity: Notice --> Undefined variable: aa C:\xampp\htdocs\ria\application\controllers\cashbook.php 1737
+ERROR - 2019-01-05 08:01:30 --> Severity: Notice --> Undefined variable: financialyear C:\xampp\htdocs\ria\application\views\bankstatement.php 2
+ERROR - 2019-01-05 08:01:30 --> Severity: Warning --> Invalid argument supplied for foreach() C:\xampp\htdocs\ria\application\views\bankstatement.php 2
+ERROR - 2019-01-05 08:01:30 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 87
+ERROR - 2019-01-05 08:01:30 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 87
+ERROR - 2019-01-05 08:01:30 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 88
+ERROR - 2019-01-05 08:01:30 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 88
+ERROR - 2019-01-05 08:01:30 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 89
+ERROR - 2019-01-05 08:01:30 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 89
+ERROR - 2019-01-05 08:01:30 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 139
+ERROR - 2019-01-05 08:01:30 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 139
+ERROR - 2019-01-05 08:01:30 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 140
+ERROR - 2019-01-05 08:01:30 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 140
+ERROR - 2019-01-05 08:01:30 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 141
+ERROR - 2019-01-05 08:01:30 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 141
+ERROR - 2019-01-05 08:01:39 --> Severity: Notice --> Undefined variable: creditdebit C:\xampp\htdocs\ria\application\views\bankingfile.php 132
+ERROR - 2019-01-05 08:01:59 --> Severity: Notice --> Undefined variable: filename C:\xampp\htdocs\ria\application\controllers\cashbook.php 235
+ERROR - 2019-01-05 08:01:59 --> The upload path does not appear to be valid.
+ERROR - 2019-01-05 08:02:00 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 515
+ERROR - 2019-01-05 08:02:00 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 515
+ERROR - 2019-01-05 08:02:00 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 515
+ERROR - 2019-01-05 08:02:00 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 515
+ERROR - 2019-01-05 08:02:00 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 515
+ERROR - 2019-01-05 08:02:00 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 515
+ERROR - 2019-01-05 08:02:00 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 515
+ERROR - 2019-01-05 08:02:00 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 515
+ERROR - 2019-01-05 08:02:00 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 515
+ERROR - 2019-01-05 08:02:00 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 515
+ERROR - 2019-01-05 08:02:01 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 515
+ERROR - 2019-01-05 08:02:01 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 515
+ERROR - 2019-01-05 08:02:01 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 515
+ERROR - 2019-01-05 08:02:01 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 515
+ERROR - 2019-01-05 08:02:01 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 515
+ERROR - 2019-01-05 08:02:01 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 515
+ERROR - 2019-01-05 08:02:01 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 515
+ERROR - 2019-01-05 08:02:01 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 515
+ERROR - 2019-01-05 08:02:01 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 515
+ERROR - 2019-01-05 08:02:01 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 515
+ERROR - 2019-01-05 08:02:01 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 515
+ERROR - 2019-01-05 08:02:01 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 515
+ERROR - 2019-01-05 08:02:02 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 515
+ERROR - 2019-01-05 08:02:02 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 515
+ERROR - 2019-01-05 08:02:02 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 515
+ERROR - 2019-01-05 08:02:02 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 515
+ERROR - 2019-01-05 08:02:02 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 515
+ERROR - 2019-01-05 08:02:02 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 515
+ERROR - 2019-01-05 08:02:02 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 515
+ERROR - 2019-01-05 08:02:02 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 515
+ERROR - 2019-01-05 08:02:02 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 515
+ERROR - 2019-01-05 08:02:02 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 515
+ERROR - 2019-01-05 08:02:02 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 515
+ERROR - 2019-01-05 08:02:02 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 515
+ERROR - 2019-01-05 08:02:03 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 515
+ERROR - 2019-01-05 08:02:03 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 515
+ERROR - 2019-01-05 08:02:03 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 515
+ERROR - 2019-01-05 08:02:03 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 515
+ERROR - 2019-01-05 08:02:03 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 515
+ERROR - 2019-01-05 08:02:03 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 515
+ERROR - 2019-01-05 08:02:03 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 515
+ERROR - 2019-01-05 08:02:03 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 515
+ERROR - 2019-01-05 08:02:04 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 515
+ERROR - 2019-01-05 08:02:04 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 515
+ERROR - 2019-01-05 08:02:04 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 515
+ERROR - 2019-01-05 08:02:04 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 515
+ERROR - 2019-01-05 08:02:04 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 515
+ERROR - 2019-01-05 08:02:04 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 515
+ERROR - 2019-01-05 08:02:04 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 515
+ERROR - 2019-01-05 08:02:04 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 515
+ERROR - 2019-01-05 08:02:05 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 515
+ERROR - 2019-01-05 08:02:05 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 515
+ERROR - 2019-01-05 08:02:05 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 515
+ERROR - 2019-01-05 08:02:05 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 515
+ERROR - 2019-01-05 08:02:05 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 515
+ERROR - 2019-01-05 08:02:05 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 515
+ERROR - 2019-01-05 08:02:05 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 515
+ERROR - 2019-01-05 08:02:05 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 515
+ERROR - 2019-01-05 08:02:06 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 515
+ERROR - 2019-01-05 08:02:06 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 515
+ERROR - 2019-01-05 08:02:06 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 515
+ERROR - 2019-01-05 08:02:06 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 515
+ERROR - 2019-01-05 08:02:06 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 515
+ERROR - 2019-01-05 08:02:06 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 515
+ERROR - 2019-01-05 08:02:06 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 515
+ERROR - 2019-01-05 08:02:06 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 515
+ERROR - 2019-01-05 08:02:06 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 515
+ERROR - 2019-01-05 08:02:06 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 515
+ERROR - 2019-01-05 08:02:07 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 515
+ERROR - 2019-01-05 08:02:07 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 515
+ERROR - 2019-01-05 08:02:07 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 515
+ERROR - 2019-01-05 08:02:07 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 515
+ERROR - 2019-01-05 08:02:07 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 515
+ERROR - 2019-01-05 08:02:07 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 515
+ERROR - 2019-01-05 08:02:07 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 515
+ERROR - 2019-01-05 08:02:07 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 515
+ERROR - 2019-01-05 08:02:08 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 515
+ERROR - 2019-01-05 08:02:08 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 515
+ERROR - 2019-01-05 08:02:08 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 515
+ERROR - 2019-01-05 08:02:08 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 515
+ERROR - 2019-01-05 08:02:08 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 515
+ERROR - 2019-01-05 08:02:08 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 515
+ERROR - 2019-01-05 08:02:08 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 515
+ERROR - 2019-01-05 08:02:08 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 515
+ERROR - 2019-01-05 08:02:08 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 515
+ERROR - 2019-01-05 08:02:08 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 515
+ERROR - 2019-01-05 08:02:08 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 515
+ERROR - 2019-01-05 08:02:08 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 515
+ERROR - 2019-01-05 08:02:09 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 515
+ERROR - 2019-01-05 08:02:09 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 515
+ERROR - 2019-01-05 08:02:09 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 515
+ERROR - 2019-01-05 08:02:09 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 515
+ERROR - 2019-01-05 08:02:09 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 515
+ERROR - 2019-01-05 08:02:09 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 515
+ERROR - 2019-01-05 08:02:09 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 515
+ERROR - 2019-01-05 08:02:09 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 515
+ERROR - 2019-01-05 08:02:09 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 515
+ERROR - 2019-01-05 08:02:09 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 515
+ERROR - 2019-01-05 08:02:09 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 515
+ERROR - 2019-01-05 08:02:09 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 515
+ERROR - 2019-01-05 08:02:09 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 515
+ERROR - 2019-01-05 08:02:09 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 515
+ERROR - 2019-01-05 08:02:10 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 515
+ERROR - 2019-01-05 08:02:10 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 515
+ERROR - 2019-01-05 08:02:10 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 515
+ERROR - 2019-01-05 08:02:10 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 515
+ERROR - 2019-01-05 08:02:10 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 515
+ERROR - 2019-01-05 08:02:10 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 515
+ERROR - 2019-01-05 08:02:10 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 515
+ERROR - 2019-01-05 08:02:10 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 515
+ERROR - 2019-01-05 08:02:10 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 515
+ERROR - 2019-01-05 08:02:10 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 515
+ERROR - 2019-01-05 08:02:10 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 515
+ERROR - 2019-01-05 08:02:10 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 515
+ERROR - 2019-01-05 08:02:10 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 515
+ERROR - 2019-01-05 08:02:10 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 515
+ERROR - 2019-01-05 08:02:11 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 515
+ERROR - 2019-01-05 08:02:11 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 515
+ERROR - 2019-01-05 08:02:11 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 515
+ERROR - 2019-01-05 08:02:11 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 515
+ERROR - 2019-01-05 08:02:11 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 515
+ERROR - 2019-01-05 08:02:11 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 515
+ERROR - 2019-01-05 08:02:11 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 515
+ERROR - 2019-01-05 08:02:11 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 515
+ERROR - 2019-01-05 08:02:11 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 515
+ERROR - 2019-01-05 08:02:11 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 515
+ERROR - 2019-01-05 08:02:11 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 515
+ERROR - 2019-01-05 08:02:11 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 515
+ERROR - 2019-01-05 08:02:11 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 515
+ERROR - 2019-01-05 08:02:11 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 515
+ERROR - 2019-01-05 08:02:12 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 515
+ERROR - 2019-01-05 08:02:12 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 515
+ERROR - 2019-01-05 08:02:12 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 515
+ERROR - 2019-01-05 08:02:12 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 515
+ERROR - 2019-01-05 08:02:12 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 515
+ERROR - 2019-01-05 08:02:12 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 515
+ERROR - 2019-01-05 08:02:12 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 515
+ERROR - 2019-01-05 08:02:12 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 515
+ERROR - 2019-01-05 08:02:12 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 515
+ERROR - 2019-01-05 08:02:12 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 515
+ERROR - 2019-01-05 08:02:13 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 515
+ERROR - 2019-01-05 08:02:13 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 515
+ERROR - 2019-01-05 08:02:13 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 515
+ERROR - 2019-01-05 08:02:13 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 515
+ERROR - 2019-01-05 08:02:13 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 515
+ERROR - 2019-01-05 08:02:13 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 515
+ERROR - 2019-01-05 08:02:13 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 515
+ERROR - 2019-01-05 08:02:13 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 515
+ERROR - 2019-01-05 08:02:13 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 515
+ERROR - 2019-01-05 08:02:13 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 515
+ERROR - 2019-01-05 08:02:13 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 515
+ERROR - 2019-01-05 08:02:13 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 515
+ERROR - 2019-01-05 08:02:13 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 515
+ERROR - 2019-01-05 08:02:13 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 515
+ERROR - 2019-01-05 08:02:14 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 515
+ERROR - 2019-01-05 08:02:14 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 515
+ERROR - 2019-01-05 08:02:14 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 515
+ERROR - 2019-01-05 08:02:14 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 515
+ERROR - 2019-01-05 08:02:14 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 515
+ERROR - 2019-01-05 08:02:14 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 515
+ERROR - 2019-01-05 08:02:14 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 515
+ERROR - 2019-01-05 08:02:14 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 515
+ERROR - 2019-01-05 08:02:14 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 515
+ERROR - 2019-01-05 08:02:14 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 515
+ERROR - 2019-01-05 08:02:14 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 515
+ERROR - 2019-01-05 08:02:14 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 515
+ERROR - 2019-01-05 08:02:14 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 515
+ERROR - 2019-01-05 08:02:14 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 515
+ERROR - 2019-01-05 08:02:14 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 515
+ERROR - 2019-01-05 08:02:15 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 515
+ERROR - 2019-01-05 08:02:15 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 515
+ERROR - 2019-01-05 08:02:15 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 515
+ERROR - 2019-01-05 08:02:15 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 515
+ERROR - 2019-01-05 08:02:15 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 515
+ERROR - 2019-01-05 08:02:15 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 515
+ERROR - 2019-01-05 08:02:15 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 515
+ERROR - 2019-01-05 08:02:15 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 515
+ERROR - 2019-01-05 08:02:15 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 515
+ERROR - 2019-01-05 08:02:15 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 515
+ERROR - 2019-01-05 08:02:15 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 515
+ERROR - 2019-01-05 08:02:15 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 515
+ERROR - 2019-01-05 08:02:15 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 515
+ERROR - 2019-01-05 08:02:15 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 515
+ERROR - 2019-01-05 08:02:16 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 515
+ERROR - 2019-01-05 08:02:16 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 515
+ERROR - 2019-01-05 08:02:16 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 515
+ERROR - 2019-01-05 08:02:16 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 515
+ERROR - 2019-01-05 08:02:16 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 515
+ERROR - 2019-01-05 08:02:16 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 515
+ERROR - 2019-01-05 08:02:16 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 515
+ERROR - 2019-01-05 08:02:16 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 515
+ERROR - 2019-01-05 08:02:16 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 515
+ERROR - 2019-01-05 08:02:16 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 515
+ERROR - 2019-01-05 08:02:16 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 515
+ERROR - 2019-01-05 08:02:16 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 515
+ERROR - 2019-01-05 08:02:16 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 515
+ERROR - 2019-01-05 08:02:16 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 515
+ERROR - 2019-01-05 08:02:17 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 515
+ERROR - 2019-01-05 08:02:17 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 515
+ERROR - 2019-01-05 08:02:17 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 515
+ERROR - 2019-01-05 08:02:17 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 515
+ERROR - 2019-01-05 08:02:17 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 515
+ERROR - 2019-01-05 08:02:17 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 515
+ERROR - 2019-01-05 08:02:17 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 515
+ERROR - 2019-01-05 08:02:17 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 515
+ERROR - 2019-01-05 08:02:17 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 515
+ERROR - 2019-01-05 08:02:17 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 515
+ERROR - 2019-01-05 08:02:17 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 515
+ERROR - 2019-01-05 08:02:17 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 515
+ERROR - 2019-01-05 08:02:17 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 515
+ERROR - 2019-01-05 08:02:17 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 515
+ERROR - 2019-01-05 08:02:18 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 515
+ERROR - 2019-01-05 08:02:18 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 515
+ERROR - 2019-01-05 08:02:18 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 515
+ERROR - 2019-01-05 08:02:18 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 515
+ERROR - 2019-01-05 08:02:18 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 515
+ERROR - 2019-01-05 08:02:18 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 515
+ERROR - 2019-01-05 08:02:18 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 515
+ERROR - 2019-01-05 08:02:18 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 515
+ERROR - 2019-01-05 08:02:18 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 515
+ERROR - 2019-01-05 08:02:18 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 515
+ERROR - 2019-01-05 08:02:18 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 515
+ERROR - 2019-01-05 08:02:18 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 515
+ERROR - 2019-01-05 08:02:18 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 515
+ERROR - 2019-01-05 08:02:19 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 515
+ERROR - 2019-01-05 08:02:19 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 515
+ERROR - 2019-01-05 08:02:19 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 515
+ERROR - 2019-01-05 08:02:19 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 515
+ERROR - 2019-01-05 08:02:19 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 515
+ERROR - 2019-01-05 08:02:19 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 515
+ERROR - 2019-01-05 08:02:19 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 515
+ERROR - 2019-01-05 08:02:19 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 515
+ERROR - 2019-01-05 08:02:19 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 515
+ERROR - 2019-01-05 08:02:19 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 515
+ERROR - 2019-01-05 08:02:19 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 515
+ERROR - 2019-01-05 08:02:19 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 515
+ERROR - 2019-01-05 08:02:19 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 515
+ERROR - 2019-01-05 08:02:19 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 515
+ERROR - 2019-01-05 08:02:20 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 515
+ERROR - 2019-01-05 08:02:20 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 515
+ERROR - 2019-01-05 08:02:20 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 515
+ERROR - 2019-01-05 08:02:20 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 515
+ERROR - 2019-01-05 08:02:20 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 515
+ERROR - 2019-01-05 08:02:20 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 515
+ERROR - 2019-01-05 08:02:20 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 515
+ERROR - 2019-01-05 08:02:20 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 515
+ERROR - 2019-01-05 08:02:20 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 515
+ERROR - 2019-01-05 08:02:20 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 515
+ERROR - 2019-01-05 08:02:20 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 515
+ERROR - 2019-01-05 08:02:20 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 515
+ERROR - 2019-01-05 08:02:20 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 515
+ERROR - 2019-01-05 08:02:20 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 515
+ERROR - 2019-01-05 08:02:21 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 515
+ERROR - 2019-01-05 08:02:21 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 515
+ERROR - 2019-01-05 08:02:21 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 515
+ERROR - 2019-01-05 08:02:21 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 515
+ERROR - 2019-01-05 08:02:21 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 515
+ERROR - 2019-01-05 08:02:21 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 515
+ERROR - 2019-01-05 08:02:21 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 515
+ERROR - 2019-01-05 08:02:21 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 515
+ERROR - 2019-01-05 08:02:21 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 515
+ERROR - 2019-01-05 08:02:21 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 515
+ERROR - 2019-01-05 08:02:21 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 515
+ERROR - 2019-01-05 08:02:21 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 515
+ERROR - 2019-01-05 08:02:21 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 515
+ERROR - 2019-01-05 08:02:21 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 515
+ERROR - 2019-01-05 08:02:22 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 515
+ERROR - 2019-01-05 08:02:22 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 515
+ERROR - 2019-01-05 08:02:22 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 515
+ERROR - 2019-01-05 08:02:22 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 515
+ERROR - 2019-01-05 08:02:26 --> Severity: Notice --> Undefined variable: fdate C:\xampp\htdocs\ria\application\controllers\cashbook.php 1737
+ERROR - 2019-01-05 08:02:26 --> Severity: Notice --> Undefined variable: tdate C:\xampp\htdocs\ria\application\controllers\cashbook.php 1737
+ERROR - 2019-01-05 08:02:26 --> Severity: Notice --> Undefined variable: fa C:\xampp\htdocs\ria\application\controllers\cashbook.php 1737
+ERROR - 2019-01-05 08:02:26 --> Severity: Notice --> Undefined variable: aa C:\xampp\htdocs\ria\application\controllers\cashbook.php 1737
+ERROR - 2019-01-05 08:02:26 --> Severity: Notice --> Undefined variable: financialyear C:\xampp\htdocs\ria\application\views\bankstatement.php 2
+ERROR - 2019-01-05 08:02:26 --> Severity: Warning --> Invalid argument supplied for foreach() C:\xampp\htdocs\ria\application\views\bankstatement.php 2
+ERROR - 2019-01-05 08:02:26 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 87
+ERROR - 2019-01-05 08:02:26 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 87
+ERROR - 2019-01-05 08:02:26 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 88
+ERROR - 2019-01-05 08:02:26 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 88
+ERROR - 2019-01-05 08:02:26 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 89
+ERROR - 2019-01-05 08:02:26 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 89
+ERROR - 2019-01-05 08:02:26 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 139
+ERROR - 2019-01-05 08:02:26 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 139
+ERROR - 2019-01-05 08:02:26 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 140
+ERROR - 2019-01-05 08:02:26 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 140
+ERROR - 2019-01-05 08:02:26 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 141
+ERROR - 2019-01-05 08:02:26 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 141
+ERROR - 2019-01-05 08:05:16 --> Severity: Notice --> Undefined variable: financialyear C:\xampp\htdocs\ria\application\views\bankdebit.php 2
+ERROR - 2019-01-05 08:05:16 --> Severity: Warning --> Invalid argument supplied for foreach() C:\xampp\htdocs\ria\application\views\bankdebit.php 2
+ERROR - 2019-01-05 08:05:24 --> Severity: Notice --> Undefined variable: financialyear C:\xampp\htdocs\ria\application\views\bankdebit.php 2
+ERROR - 2019-01-05 08:05:24 --> Severity: Warning --> Invalid argument supplied for foreach() C:\xampp\htdocs\ria\application\views\bankdebit.php 2
+ERROR - 2019-01-05 08:05:24 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankdebit.php 167
+ERROR - 2019-01-05 08:05:24 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\ria\application\views\bankdebit.php 169
+ERROR - 2019-01-05 08:05:24 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankdebit.php 167
+ERROR - 2019-01-05 08:05:24 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\ria\application\views\bankdebit.php 169
+ERROR - 2019-01-05 08:05:25 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankdebit.php 167
+ERROR - 2019-01-05 08:05:25 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\ria\application\views\bankdebit.php 169
+ERROR - 2019-01-05 08:05:25 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankdebit.php 167
+ERROR - 2019-01-05 08:05:25 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\ria\application\views\bankdebit.php 169
+ERROR - 2019-01-05 08:05:25 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankdebit.php 167
+ERROR - 2019-01-05 08:05:25 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\ria\application\views\bankdebit.php 169
+ERROR - 2019-01-05 08:05:25 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankdebit.php 167
+ERROR - 2019-01-05 08:05:25 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\ria\application\views\bankdebit.php 169
+ERROR - 2019-01-05 08:05:25 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankdebit.php 167
+ERROR - 2019-01-05 08:05:25 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\ria\application\views\bankdebit.php 169
+ERROR - 2019-01-05 08:05:25 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankdebit.php 167
+ERROR - 2019-01-05 08:05:25 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\ria\application\views\bankdebit.php 169
+ERROR - 2019-01-05 08:05:25 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankdebit.php 167
+ERROR - 2019-01-05 08:05:25 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\ria\application\views\bankdebit.php 169
+ERROR - 2019-01-05 08:05:25 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankdebit.php 167
+ERROR - 2019-01-05 08:05:25 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\ria\application\views\bankdebit.php 169
+ERROR - 2019-01-05 08:05:25 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankdebit.php 167
+ERROR - 2019-01-05 08:05:25 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\ria\application\views\bankdebit.php 169
+ERROR - 2019-01-05 08:05:25 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankdebit.php 167
+ERROR - 2019-01-05 08:05:25 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\ria\application\views\bankdebit.php 169
+ERROR - 2019-01-05 08:05:25 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankdebit.php 167
+ERROR - 2019-01-05 08:05:25 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\ria\application\views\bankdebit.php 169
+ERROR - 2019-01-05 08:05:25 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankdebit.php 167
+ERROR - 2019-01-05 08:05:25 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\ria\application\views\bankdebit.php 169
+ERROR - 2019-01-05 08:05:25 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankdebit.php 167
+ERROR - 2019-01-05 08:05:25 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\ria\application\views\bankdebit.php 169
+ERROR - 2019-01-05 08:05:25 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankdebit.php 167
+ERROR - 2019-01-05 08:05:25 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\ria\application\views\bankdebit.php 169
+ERROR - 2019-01-05 08:05:25 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankdebit.php 167
+ERROR - 2019-01-05 08:05:25 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\ria\application\views\bankdebit.php 169
+ERROR - 2019-01-05 08:05:25 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankdebit.php 167
+ERROR - 2019-01-05 08:05:26 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\ria\application\views\bankdebit.php 169
+ERROR - 2019-01-05 08:05:26 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankdebit.php 167
+ERROR - 2019-01-05 08:05:26 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\ria\application\views\bankdebit.php 169
+ERROR - 2019-01-05 08:05:26 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankdebit.php 167
+ERROR - 2019-01-05 08:05:26 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\ria\application\views\bankdebit.php 169
+ERROR - 2019-01-05 08:05:26 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankdebit.php 167
+ERROR - 2019-01-05 08:05:26 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\ria\application\views\bankdebit.php 169
+ERROR - 2019-01-05 08:05:26 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankdebit.php 167
+ERROR - 2019-01-05 08:05:26 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\ria\application\views\bankdebit.php 169
+ERROR - 2019-01-05 08:05:26 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankdebit.php 167
+ERROR - 2019-01-05 08:05:26 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\ria\application\views\bankdebit.php 169
+ERROR - 2019-01-05 08:05:26 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankdebit.php 167
+ERROR - 2019-01-05 08:05:26 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\ria\application\views\bankdebit.php 169
+ERROR - 2019-01-05 08:05:26 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankdebit.php 167
+ERROR - 2019-01-05 08:05:26 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\ria\application\views\bankdebit.php 169
+ERROR - 2019-01-05 08:05:26 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankdebit.php 167
+ERROR - 2019-01-05 08:05:26 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\ria\application\views\bankdebit.php 169
+ERROR - 2019-01-05 08:05:26 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankdebit.php 167
+ERROR - 2019-01-05 08:05:26 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\ria\application\views\bankdebit.php 169
+ERROR - 2019-01-05 08:05:53 --> Severity: Notice --> Undefined variable: balancetocleared C:\xampp\htdocs\ria\application\controllers\cashbook.php 1926
+ERROR - 2019-01-05 08:05:53 --> Severity: Notice --> Undefined variable: clearedblnce C:\xampp\htdocs\ria\application\controllers\cashbook.php 1935
+ERROR - 2019-01-05 08:05:53 --> Severity: Notice --> Undefined variable: balancetocleared C:\xampp\htdocs\ria\application\controllers\cashbook.php 1935
+ERROR - 2019-01-05 08:05:53 --> Severity: Notice --> Undefined variable: data C:\xampp\htdocs\ria\application\controllers\cashbook.php 2001
+ERROR - 2019-01-05 08:05:53 --> Severity: Notice --> Undefined variable: data C:\xampp\htdocs\ria\application\controllers\cashbook.php 2001
+ERROR - 2019-01-05 08:05:53 --> Severity: Notice --> Undefined variable: financialyear C:\xampp\htdocs\ria\application\views\bankstatement.php 2
+ERROR - 2019-01-05 08:05:53 --> Severity: Warning --> Invalid argument supplied for foreach() C:\xampp\htdocs\ria\application\views\bankstatement.php 2
+ERROR - 2019-01-05 08:05:54 --> Severity: Notice --> Undefined variable: bankreport C:\xampp\htdocs\ria\application\views\bankstatement.php 8
+ERROR - 2019-01-05 08:05:54 --> Severity: Warning --> Invalid argument supplied for foreach() C:\xampp\htdocs\ria\application\views\bankstatement.php 8
+ERROR - 2019-01-05 08:05:54 --> Severity: Notice --> Undefined variable: financialyear C:\xampp\htdocs\ria\application\views\bankstatement.php 2
+ERROR - 2019-01-05 08:05:54 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 87
+ERROR - 2019-01-05 08:05:54 --> Severity: Warning --> Invalid argument supplied for foreach() C:\xampp\htdocs\ria\application\views\bankstatement.php 2
+ERROR - 2019-01-05 08:05:54 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 87
+ERROR - 2019-01-05 08:05:54 --> Severity: Notice --> Undefined variable: bankreport C:\xampp\htdocs\ria\application\views\bankstatement.php 8
+ERROR - 2019-01-05 08:05:54 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 88
+ERROR - 2019-01-05 08:05:54 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 88
+ERROR - 2019-01-05 08:05:54 --> Severity: Warning --> Invalid argument supplied for foreach() C:\xampp\htdocs\ria\application\views\bankstatement.php 8
+ERROR - 2019-01-05 08:05:54 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 87
+ERROR - 2019-01-05 08:05:54 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 89
+ERROR - 2019-01-05 08:05:54 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 89
+ERROR - 2019-01-05 08:05:54 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 87
+ERROR - 2019-01-05 08:05:54 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 88
+ERROR - 2019-01-05 08:05:54 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 139
+ERROR - 2019-01-05 08:05:54 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 139
+ERROR - 2019-01-05 08:05:54 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 88
+ERROR - 2019-01-05 08:05:54 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 89
+ERROR - 2019-01-05 08:05:54 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 140
+ERROR - 2019-01-05 08:05:54 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 140
+ERROR - 2019-01-05 08:05:54 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 89
+ERROR - 2019-01-05 08:05:54 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 139
+ERROR - 2019-01-05 08:05:54 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 141
+ERROR - 2019-01-05 08:05:54 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 141
+ERROR - 2019-01-05 08:05:54 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 139
+ERROR - 2019-01-05 08:05:54 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 140
+ERROR - 2019-01-05 08:05:54 --> Severity: Notice --> Undefined variable: finyear C:\xampp\htdocs\ria\application\views\bankstatement.php 199
+ERROR - 2019-01-05 08:05:54 --> Severity: Warning --> Invalid argument supplied for foreach() C:\xampp\htdocs\ria\application\views\bankstatement.php 199
+ERROR - 2019-01-05 08:05:54 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 140
+ERROR - 2019-01-05 08:05:54 --> Severity: Notice --> Undefined variable: Bankname C:\xampp\htdocs\ria\application\views\bankstatement.php 237
+ERROR - 2019-01-05 08:05:54 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 141
+ERROR - 2019-01-05 08:05:54 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 141
+ERROR - 2019-01-05 08:05:54 --> Severity: Notice --> Undefined variable: finyear C:\xampp\htdocs\ria\application\views\bankstatement.php 199
+ERROR - 2019-01-05 08:05:54 --> Severity: Warning --> Invalid argument supplied for foreach() C:\xampp\htdocs\ria\application\views\bankstatement.php 199
+ERROR - 2019-01-05 08:05:54 --> Severity: Notice --> Undefined variable: Bankname C:\xampp\htdocs\ria\application\views\bankstatement.php 237
+ERROR - 2019-01-05 08:05:55 --> Severity: Notice --> Undefined variable: fdate C:\xampp\htdocs\ria\application\controllers\cashbook.php 1737
+ERROR - 2019-01-05 08:05:55 --> Severity: Notice --> Undefined variable: tdate C:\xampp\htdocs\ria\application\controllers\cashbook.php 1737
+ERROR - 2019-01-05 08:05:55 --> Severity: Notice --> Undefined variable: fa C:\xampp\htdocs\ria\application\controllers\cashbook.php 1737
+ERROR - 2019-01-05 08:05:55 --> Severity: Notice --> Undefined variable: aa C:\xampp\htdocs\ria\application\controllers\cashbook.php 1737
+ERROR - 2019-01-05 08:05:55 --> Severity: Notice --> Undefined variable: fdate C:\xampp\htdocs\ria\application\controllers\cashbook.php 1737
+ERROR - 2019-01-05 08:05:55 --> Severity: Notice --> Undefined variable: tdate C:\xampp\htdocs\ria\application\controllers\cashbook.php 1737
+ERROR - 2019-01-05 08:05:55 --> Severity: Notice --> Undefined variable: fa C:\xampp\htdocs\ria\application\controllers\cashbook.php 1737
+ERROR - 2019-01-05 08:05:55 --> Severity: Notice --> Undefined variable: aa C:\xampp\htdocs\ria\application\controllers\cashbook.php 1737
+ERROR - 2019-01-05 08:05:55 --> Severity: Notice --> Undefined variable: financialyear C:\xampp\htdocs\ria\application\views\bankstatement.php 2
+ERROR - 2019-01-05 08:05:55 --> Severity: Warning --> Invalid argument supplied for foreach() C:\xampp\htdocs\ria\application\views\bankstatement.php 2
+ERROR - 2019-01-05 08:05:55 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 87
+ERROR - 2019-01-05 08:05:55 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 87
+ERROR - 2019-01-05 08:05:55 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 88
+ERROR - 2019-01-05 08:05:55 --> Severity: Notice --> Undefined variable: financialyear C:\xampp\htdocs\ria\application\views\bankstatement.php 2
+ERROR - 2019-01-05 08:05:56 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 88
+ERROR - 2019-01-05 08:05:56 --> Severity: Warning --> Invalid argument supplied for foreach() C:\xampp\htdocs\ria\application\views\bankstatement.php 2
+ERROR - 2019-01-05 08:05:56 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 89
+ERROR - 2019-01-05 08:05:56 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 87
+ERROR - 2019-01-05 08:05:56 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 87
+ERROR - 2019-01-05 08:05:56 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 89
+ERROR - 2019-01-05 08:05:56 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 88
+ERROR - 2019-01-05 08:05:56 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 139
+ERROR - 2019-01-05 08:05:56 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 139
+ERROR - 2019-01-05 08:05:56 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 88
+ERROR - 2019-01-05 08:05:56 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 140
+ERROR - 2019-01-05 08:05:56 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 89
+ERROR - 2019-01-05 08:05:56 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 140
+ERROR - 2019-01-05 08:05:56 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 89
+ERROR - 2019-01-05 08:05:56 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 141
+ERROR - 2019-01-05 08:05:56 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 139
+ERROR - 2019-01-05 08:05:56 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 139
+ERROR - 2019-01-05 08:05:56 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 141
+ERROR - 2019-01-05 08:05:56 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 140
+ERROR - 2019-01-05 08:05:56 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 140
+ERROR - 2019-01-05 08:05:56 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 141
+ERROR - 2019-01-05 08:05:56 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 141
+ERROR - 2019-01-05 08:06:09 --> Severity: Notice --> Undefined variable: financialyear C:\xampp\htdocs\ria\application\views\banksettlement.php 4
+ERROR - 2019-01-05 08:06:09 --> Severity: Warning --> Invalid argument supplied for foreach() C:\xampp\htdocs\ria\application\views\banksettlement.php 4
+ERROR - 2019-01-05 08:06:09 --> Severity: Notice --> Undefined variable: t C:\xampp\htdocs\ria\application\views\banksettlement.php 278
+ERROR - 2019-01-05 08:06:09 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\banksettlement.php 278
+ERROR - 2019-01-05 08:06:09 --> Severity: Notice --> Undefined variable: t C:\xampp\htdocs\ria\application\views\banksettlement.php 278
+ERROR - 2019-01-05 08:06:09 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\banksettlement.php 278
+ERROR - 2019-01-05 08:06:09 --> Severity: Notice --> Undefined variable: rel C:\xampp\htdocs\ria\application\views\banksettlement.php 279
+ERROR - 2019-01-05 08:06:09 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\banksettlement.php 279
+ERROR - 2019-01-05 08:06:09 --> Severity: Notice --> Undefined variable: record C:\xampp\htdocs\ria\application\views\banksettlement.php 325
+ERROR - 2019-01-05 08:06:09 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\banksettlement.php 325
+ERROR - 2019-01-05 08:06:09 --> Severity: Notice --> Undefined variable: t C:\xampp\htdocs\ria\application\views\banksettlement.php 278
+ERROR - 2019-01-05 08:06:09 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\banksettlement.php 278
+ERROR - 2019-01-05 08:06:10 --> Severity: Notice --> Undefined variable: t C:\xampp\htdocs\ria\application\views\banksettlement.php 278
+ERROR - 2019-01-05 08:06:10 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\banksettlement.php 278
+ERROR - 2019-01-05 08:06:10 --> Severity: Notice --> Undefined variable: rel C:\xampp\htdocs\ria\application\views\banksettlement.php 279
+ERROR - 2019-01-05 08:06:10 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\banksettlement.php 279
+ERROR - 2019-01-05 08:10:01 --> Severity: Notice --> Undefined variable: creditdebit C:\xampp\htdocs\ria\application\views\bankingfile.php 132
+ERROR - 2019-01-05 08:10:52 --> Severity: Notice --> Undefined variable: filename C:\xampp\htdocs\ria\application\controllers\cashbook.php 235
+ERROR - 2019-01-05 08:10:52 --> The upload path does not appear to be valid.
+ERROR - 2019-01-05 08:10:52 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 515
+ERROR - 2019-01-05 08:10:52 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 515
+ERROR - 2019-01-05 08:10:52 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 515
+ERROR - 2019-01-05 08:10:52 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 515
+ERROR - 2019-01-05 08:10:52 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 515
+ERROR - 2019-01-05 08:10:53 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 515
+ERROR - 2019-01-05 08:10:53 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 515
+ERROR - 2019-01-05 08:10:53 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 515
+ERROR - 2019-01-05 08:10:53 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 515
+ERROR - 2019-01-05 08:10:53 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 515
+ERROR - 2019-01-05 08:10:53 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 515
+ERROR - 2019-01-05 08:10:53 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 515
+ERROR - 2019-01-05 08:10:53 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 515
+ERROR - 2019-01-05 08:10:53 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 515
+ERROR - 2019-01-05 08:10:53 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 515
+ERROR - 2019-01-05 08:10:53 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 515
+ERROR - 2019-01-05 08:10:53 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 515
+ERROR - 2019-01-05 08:10:53 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 515
+ERROR - 2019-01-05 08:10:57 --> Severity: Notice --> Undefined variable: fdate C:\xampp\htdocs\ria\application\controllers\cashbook.php 1737
+ERROR - 2019-01-05 08:10:57 --> Severity: Notice --> Undefined variable: tdate C:\xampp\htdocs\ria\application\controllers\cashbook.php 1737
+ERROR - 2019-01-05 08:10:57 --> Severity: Notice --> Undefined variable: fa C:\xampp\htdocs\ria\application\controllers\cashbook.php 1737
+ERROR - 2019-01-05 08:10:57 --> Severity: Notice --> Undefined variable: aa C:\xampp\htdocs\ria\application\controllers\cashbook.php 1737
+ERROR - 2019-01-05 08:10:57 --> Severity: Notice --> Undefined variable: financialyear C:\xampp\htdocs\ria\application\views\bankstatement.php 2
+ERROR - 2019-01-05 08:10:57 --> Severity: Warning --> Invalid argument supplied for foreach() C:\xampp\htdocs\ria\application\views\bankstatement.php 2
+ERROR - 2019-01-05 08:10:57 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 87
+ERROR - 2019-01-05 08:10:57 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 87
+ERROR - 2019-01-05 08:10:57 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 88
+ERROR - 2019-01-05 08:10:57 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 88
+ERROR - 2019-01-05 08:10:58 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 89
+ERROR - 2019-01-05 08:10:58 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 89
+ERROR - 2019-01-05 08:10:58 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 139
+ERROR - 2019-01-05 08:10:58 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 139
+ERROR - 2019-01-05 08:10:58 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 140
+ERROR - 2019-01-05 08:10:58 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 140
+ERROR - 2019-01-05 08:10:58 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 141
+ERROR - 2019-01-05 08:10:58 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 141
+ERROR - 2019-01-05 08:14:10 --> Severity: Notice --> Undefined variable: financialyear C:\xampp\htdocs\ria\application\views\banksettlement.php 4
+ERROR - 2019-01-05 08:14:10 --> Severity: Warning --> Invalid argument supplied for foreach() C:\xampp\htdocs\ria\application\views\banksettlement.php 4
+ERROR - 2019-01-05 08:14:10 --> Severity: Notice --> Undefined variable: t C:\xampp\htdocs\ria\application\views\banksettlement.php 278
+ERROR - 2019-01-05 08:14:10 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\banksettlement.php 278
+ERROR - 2019-01-05 08:14:10 --> Severity: Notice --> Undefined variable: t C:\xampp\htdocs\ria\application\views\banksettlement.php 278
+ERROR - 2019-01-05 08:14:10 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\banksettlement.php 278
+ERROR - 2019-01-05 08:14:10 --> Severity: Notice --> Undefined variable: rel C:\xampp\htdocs\ria\application\views\banksettlement.php 279
+ERROR - 2019-01-05 08:14:10 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\banksettlement.php 279
+ERROR - 2019-01-05 08:14:10 --> Severity: Notice --> Undefined variable: record C:\xampp\htdocs\ria\application\views\banksettlement.php 325
+ERROR - 2019-01-05 08:14:10 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\banksettlement.php 325
+ERROR - 2019-01-05 08:14:10 --> Severity: Notice --> Undefined variable: t C:\xampp\htdocs\ria\application\views\banksettlement.php 278
+ERROR - 2019-01-05 08:14:10 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\banksettlement.php 278
+ERROR - 2019-01-05 08:14:10 --> Severity: Notice --> Undefined variable: t C:\xampp\htdocs\ria\application\views\banksettlement.php 278
+ERROR - 2019-01-05 08:14:10 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\banksettlement.php 278
+ERROR - 2019-01-05 08:14:10 --> Severity: Notice --> Undefined variable: rel C:\xampp\htdocs\ria\application\views\banksettlement.php 279
+ERROR - 2019-01-05 08:14:10 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\banksettlement.php 279
+ERROR - 2019-01-05 08:15:37 --> Severity: Notice --> Undefined variable: financialyear C:\xampp\htdocs\ria\application\views\bankdebit.php 2
+ERROR - 2019-01-05 08:15:37 --> Severity: Warning --> Invalid argument supplied for foreach() C:\xampp\htdocs\ria\application\views\bankdebit.php 2
+ERROR - 2019-01-05 08:15:42 --> Severity: Notice --> Undefined variable: financialyear C:\xampp\htdocs\ria\application\views\bankdebit.php 2
+ERROR - 2019-01-05 08:15:42 --> Severity: Warning --> Invalid argument supplied for foreach() C:\xampp\htdocs\ria\application\views\bankdebit.php 2
+ERROR - 2019-01-05 08:15:42 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankdebit.php 167
+ERROR - 2019-01-05 08:15:42 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\ria\application\views\bankdebit.php 169
+ERROR - 2019-01-05 08:15:42 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankdebit.php 167
+ERROR - 2019-01-05 08:15:42 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\ria\application\views\bankdebit.php 169
+ERROR - 2019-01-05 08:15:42 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankdebit.php 167
+ERROR - 2019-01-05 08:15:42 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\ria\application\views\bankdebit.php 169
+ERROR - 2019-01-05 08:15:42 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankdebit.php 167
+ERROR - 2019-01-05 08:15:43 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\ria\application\views\bankdebit.php 169
+ERROR - 2019-01-05 08:15:43 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankdebit.php 167
+ERROR - 2019-01-05 08:15:43 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\ria\application\views\bankdebit.php 169
+ERROR - 2019-01-05 08:15:43 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankdebit.php 167
+ERROR - 2019-01-05 08:15:43 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\ria\application\views\bankdebit.php 169
+ERROR - 2019-01-05 08:15:43 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankdebit.php 167
+ERROR - 2019-01-05 08:15:43 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\ria\application\views\bankdebit.php 169
+ERROR - 2019-01-05 08:15:43 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankdebit.php 167
+ERROR - 2019-01-05 08:15:43 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\ria\application\views\bankdebit.php 169
+ERROR - 2019-01-05 08:15:43 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankdebit.php 167
+ERROR - 2019-01-05 08:15:43 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\ria\application\views\bankdebit.php 169
+ERROR - 2019-01-05 08:15:43 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankdebit.php 167
+ERROR - 2019-01-05 08:15:43 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\ria\application\views\bankdebit.php 169
+ERROR - 2019-01-05 08:15:43 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankdebit.php 167
+ERROR - 2019-01-05 08:15:43 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\ria\application\views\bankdebit.php 169
+ERROR - 2019-01-05 08:15:43 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankdebit.php 167
+ERROR - 2019-01-05 08:15:43 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\ria\application\views\bankdebit.php 169
+ERROR - 2019-01-05 08:15:43 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankdebit.php 167
+ERROR - 2019-01-05 08:15:43 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\ria\application\views\bankdebit.php 169
+ERROR - 2019-01-05 08:15:43 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankdebit.php 167
+ERROR - 2019-01-05 08:15:43 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\ria\application\views\bankdebit.php 169
+ERROR - 2019-01-05 08:15:43 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankdebit.php 167
+ERROR - 2019-01-05 08:15:43 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\ria\application\views\bankdebit.php 169
+ERROR - 2019-01-05 08:15:43 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankdebit.php 167
+ERROR - 2019-01-05 08:15:43 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\ria\application\views\bankdebit.php 169
+ERROR - 2019-01-05 08:15:43 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankdebit.php 167
+ERROR - 2019-01-05 08:15:43 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\ria\application\views\bankdebit.php 169
+ERROR - 2019-01-05 08:15:43 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankdebit.php 167
+ERROR - 2019-01-05 08:15:43 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\ria\application\views\bankdebit.php 169
+ERROR - 2019-01-05 08:15:44 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankdebit.php 167
+ERROR - 2019-01-05 08:15:44 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\ria\application\views\bankdebit.php 169
+ERROR - 2019-01-05 08:15:44 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankdebit.php 167
+ERROR - 2019-01-05 08:15:44 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\ria\application\views\bankdebit.php 169
+ERROR - 2019-01-05 08:15:44 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankdebit.php 167
+ERROR - 2019-01-05 08:15:44 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\ria\application\views\bankdebit.php 169
+ERROR - 2019-01-05 08:15:44 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankdebit.php 167
+ERROR - 2019-01-05 08:15:44 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\ria\application\views\bankdebit.php 169
+ERROR - 2019-01-05 08:15:44 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankdebit.php 167
+ERROR - 2019-01-05 08:15:44 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\ria\application\views\bankdebit.php 169
+ERROR - 2019-01-05 08:15:44 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankdebit.php 167
+ERROR - 2019-01-05 08:15:44 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\ria\application\views\bankdebit.php 169
+ERROR - 2019-01-05 08:15:44 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankdebit.php 167
+ERROR - 2019-01-05 08:15:44 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\ria\application\views\bankdebit.php 169
+ERROR - 2019-01-05 08:15:44 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankdebit.php 167
+ERROR - 2019-01-05 08:15:44 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\ria\application\views\bankdebit.php 169
+ERROR - 2019-01-05 08:15:44 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankdebit.php 167
+ERROR - 2019-01-05 08:15:44 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\ria\application\views\bankdebit.php 169
+ERROR - 2019-01-05 08:16:39 --> Severity: Notice --> Undefined variable: balancetocleared C:\xampp\htdocs\ria\application\controllers\cashbook.php 1926
+ERROR - 2019-01-05 08:16:39 --> Severity: Notice --> Undefined variable: balancetocleared C:\xampp\htdocs\ria\application\controllers\cashbook.php 1926
+ERROR - 2019-01-05 08:16:39 --> Severity: Notice --> Undefined variable: clearedblnce C:\xampp\htdocs\ria\application\controllers\cashbook.php 1935
+ERROR - 2019-01-05 08:16:39 --> Severity: Notice --> Undefined variable: clearedblnce C:\xampp\htdocs\ria\application\controllers\cashbook.php 1935
+ERROR - 2019-01-05 08:16:39 --> Severity: Notice --> Undefined variable: balancetocleared C:\xampp\htdocs\ria\application\controllers\cashbook.php 1935
+ERROR - 2019-01-05 08:16:39 --> Severity: Notice --> Undefined variable: balancetocleared C:\xampp\htdocs\ria\application\controllers\cashbook.php 1935
+ERROR - 2019-01-05 08:16:40 --> Severity: Notice --> Undefined variable: data C:\xampp\htdocs\ria\application\controllers\cashbook.php 2001
+ERROR - 2019-01-05 08:16:40 --> Severity: Notice --> Undefined variable: data C:\xampp\htdocs\ria\application\controllers\cashbook.php 2001
+ERROR - 2019-01-05 08:16:40 --> Severity: Notice --> Undefined variable: data C:\xampp\htdocs\ria\application\controllers\cashbook.php 2001
+ERROR - 2019-01-05 08:16:40 --> Severity: Notice --> Undefined variable: financialyear C:\xampp\htdocs\ria\application\views\bankstatement.php 2
+ERROR - 2019-01-05 08:16:40 --> Severity: Warning --> Invalid argument supplied for foreach() C:\xampp\htdocs\ria\application\views\bankstatement.php 2
+ERROR - 2019-01-05 08:16:40 --> Severity: Notice --> Undefined variable: bankreport C:\xampp\htdocs\ria\application\views\bankstatement.php 8
+ERROR - 2019-01-05 08:16:40 --> Severity: Warning --> Invalid argument supplied for foreach() C:\xampp\htdocs\ria\application\views\bankstatement.php 8
+ERROR - 2019-01-05 08:16:40 --> Severity: Notice --> Undefined variable: financialyear C:\xampp\htdocs\ria\application\views\bankstatement.php 2
+ERROR - 2019-01-05 08:16:40 --> Severity: Notice --> Undefined variable: financialyear C:\xampp\htdocs\ria\application\views\bankstatement.php 2
+ERROR - 2019-01-05 08:16:40 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 87
+ERROR - 2019-01-05 08:16:40 --> Severity: Warning --> Invalid argument supplied for foreach() C:\xampp\htdocs\ria\application\views\bankstatement.php 2
+ERROR - 2019-01-05 08:16:40 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 87
+ERROR - 2019-01-05 08:16:40 --> Severity: Warning --> Invalid argument supplied for foreach() C:\xampp\htdocs\ria\application\views\bankstatement.php 2
+ERROR - 2019-01-05 08:16:40 --> Severity: Notice --> Undefined variable: bankreport C:\xampp\htdocs\ria\application\views\bankstatement.php 8
+ERROR - 2019-01-05 08:16:40 --> Severity: Notice --> Undefined variable: bankreport C:\xampp\htdocs\ria\application\views\bankstatement.php 8
+ERROR - 2019-01-05 08:16:40 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 88
+ERROR - 2019-01-05 08:16:40 --> Severity: Warning --> Invalid argument supplied for foreach() C:\xampp\htdocs\ria\application\views\bankstatement.php 8
+ERROR - 2019-01-05 08:16:40 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 88
+ERROR - 2019-01-05 08:16:40 --> Severity: Warning --> Invalid argument supplied for foreach() C:\xampp\htdocs\ria\application\views\bankstatement.php 8
+ERROR - 2019-01-05 08:16:40 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 89
+ERROR - 2019-01-05 08:16:40 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 87
+ERROR - 2019-01-05 08:16:40 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 87
+ERROR - 2019-01-05 08:16:40 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 87
+ERROR - 2019-01-05 08:16:40 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 87
+ERROR - 2019-01-05 08:16:40 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 89
+ERROR - 2019-01-05 08:16:40 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 88
+ERROR - 2019-01-05 08:16:40 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 88
+ERROR - 2019-01-05 08:16:40 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 139
+ERROR - 2019-01-05 08:16:40 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 88
+ERROR - 2019-01-05 08:16:40 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 139
+ERROR - 2019-01-05 08:16:40 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 88
+ERROR - 2019-01-05 08:16:40 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 89
+ERROR - 2019-01-05 08:16:40 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 89
+ERROR - 2019-01-05 08:16:40 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 140
+ERROR - 2019-01-05 08:16:40 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 89
+ERROR - 2019-01-05 08:16:40 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 140
+ERROR - 2019-01-05 08:16:40 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 89
+ERROR - 2019-01-05 08:16:40 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 141
+ERROR - 2019-01-05 08:16:40 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 139
+ERROR - 2019-01-05 08:16:40 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 139
+ERROR - 2019-01-05 08:16:40 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 139
+ERROR - 2019-01-05 08:16:40 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 141
+ERROR - 2019-01-05 08:16:40 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 139
+ERROR - 2019-01-05 08:16:40 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 140
+ERROR - 2019-01-05 08:16:40 --> Severity: Notice --> Undefined variable: finyear C:\xampp\htdocs\ria\application\views\bankstatement.php 199
+ERROR - 2019-01-05 08:16:40 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 140
+ERROR - 2019-01-05 08:16:40 --> Severity: Warning --> Invalid argument supplied for foreach() C:\xampp\htdocs\ria\application\views\bankstatement.php 199
+ERROR - 2019-01-05 08:16:40 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 140
+ERROR - 2019-01-05 08:16:40 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 140
+ERROR - 2019-01-05 08:16:40 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 141
+ERROR - 2019-01-05 08:16:40 --> Severity: Notice --> Undefined variable: Bankname C:\xampp\htdocs\ria\application\views\bankstatement.php 237
+ERROR - 2019-01-05 08:16:40 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 141
+ERROR - 2019-01-05 08:16:40 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 141
+ERROR - 2019-01-05 08:16:40 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 141
+ERROR - 2019-01-05 08:16:40 --> Severity: Notice --> Undefined variable: finyear C:\xampp\htdocs\ria\application\views\bankstatement.php 199
+ERROR - 2019-01-05 08:16:40 --> Severity: Notice --> Undefined variable: finyear C:\xampp\htdocs\ria\application\views\bankstatement.php 199
+ERROR - 2019-01-05 08:16:41 --> Severity: Warning --> Invalid argument supplied for foreach() C:\xampp\htdocs\ria\application\views\bankstatement.php 199
+ERROR - 2019-01-05 08:16:41 --> Severity: Warning --> Invalid argument supplied for foreach() C:\xampp\htdocs\ria\application\views\bankstatement.php 199
+ERROR - 2019-01-05 08:16:41 --> Severity: Notice --> Undefined variable: Bankname C:\xampp\htdocs\ria\application\views\bankstatement.php 237
+ERROR - 2019-01-05 08:16:41 --> Severity: Notice --> Undefined variable: Bankname C:\xampp\htdocs\ria\application\views\bankstatement.php 237
+ERROR - 2019-01-05 08:16:41 --> Severity: Notice --> Undefined variable: fdate C:\xampp\htdocs\ria\application\controllers\cashbook.php 1737
+ERROR - 2019-01-05 08:16:41 --> Severity: Notice --> Undefined variable: tdate C:\xampp\htdocs\ria\application\controllers\cashbook.php 1737
+ERROR - 2019-01-05 08:16:41 --> Severity: Notice --> Undefined variable: fa C:\xampp\htdocs\ria\application\controllers\cashbook.php 1737
+ERROR - 2019-01-05 08:16:41 --> Severity: Notice --> Undefined variable: fdate C:\xampp\htdocs\ria\application\controllers\cashbook.php 1737
+ERROR - 2019-01-05 08:16:41 --> Severity: Notice --> Undefined variable: aa C:\xampp\htdocs\ria\application\controllers\cashbook.php 1737
+ERROR - 2019-01-05 08:16:41 --> Severity: Notice --> Undefined variable: tdate C:\xampp\htdocs\ria\application\controllers\cashbook.php 1737
+ERROR - 2019-01-05 08:16:42 --> Severity: Notice --> Undefined variable: fa C:\xampp\htdocs\ria\application\controllers\cashbook.php 1737
+ERROR - 2019-01-05 08:16:42 --> Severity: Notice --> Undefined variable: aa C:\xampp\htdocs\ria\application\controllers\cashbook.php 1737
+ERROR - 2019-01-05 08:16:42 --> Severity: Notice --> Undefined variable: financialyear C:\xampp\htdocs\ria\application\views\bankstatement.php 2
+ERROR - 2019-01-05 08:16:42 --> Severity: Warning --> Invalid argument supplied for foreach() C:\xampp\htdocs\ria\application\views\bankstatement.php 2
+ERROR - 2019-01-05 08:16:42 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 87
+ERROR - 2019-01-05 08:16:42 --> Severity: Notice --> Undefined variable: financialyear C:\xampp\htdocs\ria\application\views\bankstatement.php 2
+ERROR - 2019-01-05 08:16:42 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 87
+ERROR - 2019-01-05 08:16:42 --> Severity: Warning --> Invalid argument supplied for foreach() C:\xampp\htdocs\ria\application\views\bankstatement.php 2
+ERROR - 2019-01-05 08:16:42 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 88
+ERROR - 2019-01-05 08:16:42 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 87
+ERROR - 2019-01-05 08:16:42 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 88
+ERROR - 2019-01-05 08:16:42 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 87
+ERROR - 2019-01-05 08:16:42 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 88
+ERROR - 2019-01-05 08:16:42 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 89
+ERROR - 2019-01-05 08:16:42 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 89
+ERROR - 2019-01-05 08:16:42 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 88
+ERROR - 2019-01-05 08:16:42 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 139
+ERROR - 2019-01-05 08:16:42 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 89
+ERROR - 2019-01-05 08:16:42 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 89
+ERROR - 2019-01-05 08:16:42 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 139
+ERROR - 2019-01-05 08:16:42 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 140
+ERROR - 2019-01-05 08:16:42 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 139
+ERROR - 2019-01-05 08:16:42 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 139
+ERROR - 2019-01-05 08:16:42 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 140
+ERROR - 2019-01-05 08:16:42 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 140
+ERROR - 2019-01-05 08:16:42 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 141
+ERROR - 2019-01-05 08:16:42 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 141
+ERROR - 2019-01-05 08:16:42 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 140
+ERROR - 2019-01-05 08:16:42 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 141
+ERROR - 2019-01-05 08:16:42 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 141
+ERROR - 2019-01-05 08:16:50 --> Severity: Notice --> Undefined variable: financialyear C:\xampp\htdocs\ria\application\views\banksettlement.php 4
+ERROR - 2019-01-05 08:16:50 --> Severity: Warning --> Invalid argument supplied for foreach() C:\xampp\htdocs\ria\application\views\banksettlement.php 4
+ERROR - 2019-01-05 08:16:50 --> Severity: Notice --> Undefined variable: t C:\xampp\htdocs\ria\application\views\banksettlement.php 278
+ERROR - 2019-01-05 08:16:50 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\banksettlement.php 278
+ERROR - 2019-01-05 08:16:50 --> Severity: Notice --> Undefined variable: t C:\xampp\htdocs\ria\application\views\banksettlement.php 278
+ERROR - 2019-01-05 08:16:50 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\banksettlement.php 278
+ERROR - 2019-01-05 08:16:50 --> Severity: Notice --> Undefined variable: rel C:\xampp\htdocs\ria\application\views\banksettlement.php 279
+ERROR - 2019-01-05 08:16:50 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\banksettlement.php 279
+ERROR - 2019-01-05 08:16:51 --> Severity: Notice --> Undefined variable: record C:\xampp\htdocs\ria\application\views\banksettlement.php 325
+ERROR - 2019-01-05 08:16:51 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\banksettlement.php 325
+ERROR - 2019-01-05 08:16:51 --> Severity: Notice --> Undefined variable: t C:\xampp\htdocs\ria\application\views\banksettlement.php 278
+ERROR - 2019-01-05 08:16:51 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\banksettlement.php 278
+ERROR - 2019-01-05 08:16:51 --> Severity: Notice --> Undefined variable: t C:\xampp\htdocs\ria\application\views\banksettlement.php 278
+ERROR - 2019-01-05 08:16:51 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\banksettlement.php 278
+ERROR - 2019-01-05 08:16:51 --> Severity: Notice --> Undefined variable: rel C:\xampp\htdocs\ria\application\views\banksettlement.php 279
+ERROR - 2019-01-05 08:16:51 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\banksettlement.php 279
+ERROR - 2019-01-05 08:16:51 --> Severity: Notice --> Undefined variable: t C:\xampp\htdocs\ria\application\views\banksettlement.php 278
+ERROR - 2019-01-05 08:16:51 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\banksettlement.php 278
+ERROR - 2019-01-05 08:16:51 --> Severity: Notice --> Undefined variable: t C:\xampp\htdocs\ria\application\views\banksettlement.php 278
+ERROR - 2019-01-05 08:16:51 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\banksettlement.php 278
+ERROR - 2019-01-05 08:16:51 --> Severity: Notice --> Undefined variable: rel C:\xampp\htdocs\ria\application\views\banksettlement.php 279
+ERROR - 2019-01-05 08:16:51 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\banksettlement.php 279
+ERROR - 2019-01-05 08:17:46 --> Severity: Notice --> Undefined variable: financialyear C:\xampp\htdocs\ria\application\views\banksettlement.php 4
+ERROR - 2019-01-05 08:17:46 --> Severity: Warning --> Invalid argument supplied for foreach() C:\xampp\htdocs\ria\application\views\banksettlement.php 4
+ERROR - 2019-01-05 08:17:46 --> Severity: Notice --> Undefined variable: t C:\xampp\htdocs\ria\application\views\banksettlement.php 278
+ERROR - 2019-01-05 08:17:46 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\banksettlement.php 278
+ERROR - 2019-01-05 08:17:46 --> Severity: Notice --> Undefined variable: t C:\xampp\htdocs\ria\application\views\banksettlement.php 278
+ERROR - 2019-01-05 08:17:46 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\banksettlement.php 278
+ERROR - 2019-01-05 08:17:46 --> Severity: Notice --> Undefined variable: rel C:\xampp\htdocs\ria\application\views\banksettlement.php 279
+ERROR - 2019-01-05 08:17:46 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\banksettlement.php 279
+ERROR - 2019-01-05 08:17:46 --> Severity: Notice --> Undefined variable: record C:\xampp\htdocs\ria\application\views\banksettlement.php 325
+ERROR - 2019-01-05 08:17:46 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\banksettlement.php 325
+ERROR - 2019-01-05 08:17:46 --> Severity: Notice --> Undefined variable: t C:\xampp\htdocs\ria\application\views\banksettlement.php 278
+ERROR - 2019-01-05 08:17:46 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\banksettlement.php 278
+ERROR - 2019-01-05 08:17:46 --> Severity: Notice --> Undefined variable: t C:\xampp\htdocs\ria\application\views\banksettlement.php 278
+ERROR - 2019-01-05 08:17:46 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\banksettlement.php 278
+ERROR - 2019-01-05 08:17:46 --> Severity: Notice --> Undefined variable: rel C:\xampp\htdocs\ria\application\views\banksettlement.php 279
+ERROR - 2019-01-05 08:17:46 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\banksettlement.php 279
+ERROR - 2019-01-05 08:17:46 --> Severity: Notice --> Undefined variable: t C:\xampp\htdocs\ria\application\views\banksettlement.php 278
+ERROR - 2019-01-05 08:17:46 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\banksettlement.php 278
+ERROR - 2019-01-05 08:17:46 --> Severity: Notice --> Undefined variable: t C:\xampp\htdocs\ria\application\views\banksettlement.php 278
+ERROR - 2019-01-05 08:17:46 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\banksettlement.php 278
+ERROR - 2019-01-05 08:17:46 --> Severity: Notice --> Undefined variable: rel C:\xampp\htdocs\ria\application\views\banksettlement.php 279
+ERROR - 2019-01-05 08:17:46 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\banksettlement.php 279
+ERROR - 2019-01-05 09:00:18 --> Severity: Notice --> Undefined variable: financialyear C:\xampp\htdocs\ria\application\views\banksettlement.php 4
+ERROR - 2019-01-05 09:00:18 --> Severity: Warning --> Invalid argument supplied for foreach() C:\xampp\htdocs\ria\application\views\banksettlement.php 4
+ERROR - 2019-01-05 09:00:19 --> Severity: Notice --> Undefined variable: bankid C:\xampp\htdocs\ria\application\views\banksettlement.php 170
+ERROR - 2019-01-05 09:00:19 --> Severity: Notice --> Undefined variable: bankid C:\xampp\htdocs\ria\application\views\banksettlement.php 182
+ERROR - 2019-01-05 09:00:59 --> Severity: Notice --> Undefined variable: fdate C:\xampp\htdocs\ria\application\controllers\cashbook.php 1737
+ERROR - 2019-01-05 09:00:59 --> Severity: Notice --> Undefined variable: tdate C:\xampp\htdocs\ria\application\controllers\cashbook.php 1737
+ERROR - 2019-01-05 09:00:59 --> Severity: Notice --> Undefined variable: fa C:\xampp\htdocs\ria\application\controllers\cashbook.php 1737
+ERROR - 2019-01-05 09:00:59 --> Severity: Notice --> Undefined variable: aa C:\xampp\htdocs\ria\application\controllers\cashbook.php 1737
+ERROR - 2019-01-05 09:01:00 --> Severity: Notice --> Undefined variable: financialyear C:\xampp\htdocs\ria\application\views\bankstatement.php 2
+ERROR - 2019-01-05 09:01:00 --> Severity: Warning --> Invalid argument supplied for foreach() C:\xampp\htdocs\ria\application\views\bankstatement.php 2
+ERROR - 2019-01-05 09:01:00 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 87
+ERROR - 2019-01-05 09:01:00 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 87
+ERROR - 2019-01-05 09:01:00 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 88
+ERROR - 2019-01-05 09:01:00 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 88
+ERROR - 2019-01-05 09:01:00 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 89
+ERROR - 2019-01-05 09:01:00 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 89
+ERROR - 2019-01-05 09:01:01 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 139
+ERROR - 2019-01-05 09:01:01 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 139
+ERROR - 2019-01-05 09:01:01 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 140
+ERROR - 2019-01-05 09:01:01 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 140
+ERROR - 2019-01-05 09:01:01 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 141
+ERROR - 2019-01-05 09:01:01 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 141
+ERROR - 2019-01-05 09:01:16 --> Severity: Notice --> Undefined variable: financialyear C:\xampp\htdocs\ria\application\views\bankdebit.php 2
+ERROR - 2019-01-05 09:01:16 --> Severity: Warning --> Invalid argument supplied for foreach() C:\xampp\htdocs\ria\application\views\bankdebit.php 2
+ERROR - 2019-01-05 09:01:25 --> Severity: Notice --> Undefined variable: financialyear C:\xampp\htdocs\ria\application\views\bankdebit.php 2
+ERROR - 2019-01-05 09:01:25 --> Severity: Warning --> Invalid argument supplied for foreach() C:\xampp\htdocs\ria\application\views\bankdebit.php 2
+ERROR - 2019-01-05 09:01:25 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankdebit.php 167
+ERROR - 2019-01-05 09:01:25 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\ria\application\views\bankdebit.php 169
+ERROR - 2019-01-05 09:01:25 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankdebit.php 167
+ERROR - 2019-01-05 09:01:25 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\ria\application\views\bankdebit.php 169
+ERROR - 2019-01-05 09:01:25 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankdebit.php 167
+ERROR - 2019-01-05 09:01:25 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\ria\application\views\bankdebit.php 169
+ERROR - 2019-01-05 09:01:25 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankdebit.php 167
+ERROR - 2019-01-05 09:01:25 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\ria\application\views\bankdebit.php 169
+ERROR - 2019-01-05 09:01:25 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankdebit.php 167
+ERROR - 2019-01-05 09:01:25 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\ria\application\views\bankdebit.php 169
+ERROR - 2019-01-05 09:01:25 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankdebit.php 167
+ERROR - 2019-01-05 09:01:25 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\ria\application\views\bankdebit.php 169
+ERROR - 2019-01-05 09:01:25 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankdebit.php 167
+ERROR - 2019-01-05 09:01:25 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\ria\application\views\bankdebit.php 169
+ERROR - 2019-01-05 09:01:25 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankdebit.php 167
+ERROR - 2019-01-05 09:01:25 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\ria\application\views\bankdebit.php 169
+ERROR - 2019-01-05 09:01:25 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankdebit.php 167
+ERROR - 2019-01-05 09:01:25 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\ria\application\views\bankdebit.php 169
+ERROR - 2019-01-05 09:01:26 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankdebit.php 167
+ERROR - 2019-01-05 09:01:26 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\ria\application\views\bankdebit.php 169
+ERROR - 2019-01-05 09:01:26 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankdebit.php 167
+ERROR - 2019-01-05 09:01:26 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\ria\application\views\bankdebit.php 169
+ERROR - 2019-01-05 09:01:26 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankdebit.php 167
+ERROR - 2019-01-05 09:01:26 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\ria\application\views\bankdebit.php 169
+ERROR - 2019-01-05 09:01:26 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankdebit.php 167
+ERROR - 2019-01-05 09:01:26 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\ria\application\views\bankdebit.php 169
+ERROR - 2019-01-05 09:01:26 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankdebit.php 167
+ERROR - 2019-01-05 09:01:26 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\ria\application\views\bankdebit.php 169
+ERROR - 2019-01-05 09:01:26 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankdebit.php 167
+ERROR - 2019-01-05 09:01:26 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\ria\application\views\bankdebit.php 169
+ERROR - 2019-01-05 09:01:26 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankdebit.php 167
+ERROR - 2019-01-05 09:01:26 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\ria\application\views\bankdebit.php 169
+ERROR - 2019-01-05 09:01:26 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankdebit.php 167
+ERROR - 2019-01-05 09:01:26 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\ria\application\views\bankdebit.php 169
+ERROR - 2019-01-05 09:01:26 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankdebit.php 167
+ERROR - 2019-01-05 09:01:26 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\ria\application\views\bankdebit.php 169
+ERROR - 2019-01-05 09:01:26 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankdebit.php 167
+ERROR - 2019-01-05 09:01:26 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\ria\application\views\bankdebit.php 169
+ERROR - 2019-01-05 09:01:26 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankdebit.php 167
+ERROR - 2019-01-05 09:01:26 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\ria\application\views\bankdebit.php 169
+ERROR - 2019-01-05 09:01:26 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankdebit.php 167
+ERROR - 2019-01-05 09:01:26 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\ria\application\views\bankdebit.php 169
+ERROR - 2019-01-05 09:01:27 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankdebit.php 167
+ERROR - 2019-01-05 09:01:27 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\ria\application\views\bankdebit.php 169
+ERROR - 2019-01-05 09:01:27 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankdebit.php 167
+ERROR - 2019-01-05 09:01:27 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\ria\application\views\bankdebit.php 169
+ERROR - 2019-01-05 09:01:27 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankdebit.php 167
+ERROR - 2019-01-05 09:01:27 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\ria\application\views\bankdebit.php 169
+ERROR - 2019-01-05 09:01:27 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankdebit.php 167
+ERROR - 2019-01-05 09:01:27 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\ria\application\views\bankdebit.php 169
+ERROR - 2019-01-05 09:01:27 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankdebit.php 167
+ERROR - 2019-01-05 09:01:27 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\ria\application\views\bankdebit.php 169
+ERROR - 2019-01-05 09:01:27 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankdebit.php 167
+ERROR - 2019-01-05 09:01:27 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\ria\application\views\bankdebit.php 169
+ERROR - 2019-01-05 09:04:50 --> Severity: Notice --> Undefined variable: financialyear C:\xampp\htdocs\ria\application\views\bankdebit.php 2
+ERROR - 2019-01-05 09:04:50 --> Severity: Warning --> Invalid argument supplied for foreach() C:\xampp\htdocs\ria\application\views\bankdebit.php 2
+ERROR - 2019-01-05 09:05:06 --> Severity: Notice --> Undefined variable: fdate C:\xampp\htdocs\ria\application\controllers\cashbook.php 1737
+ERROR - 2019-01-05 09:05:06 --> Severity: Notice --> Undefined variable: tdate C:\xampp\htdocs\ria\application\controllers\cashbook.php 1737
+ERROR - 2019-01-05 09:05:06 --> Severity: Notice --> Undefined variable: fa C:\xampp\htdocs\ria\application\controllers\cashbook.php 1737
+ERROR - 2019-01-05 09:05:06 --> Severity: Notice --> Undefined variable: aa C:\xampp\htdocs\ria\application\controllers\cashbook.php 1737
+ERROR - 2019-01-05 09:05:06 --> Severity: Notice --> Undefined variable: financialyear C:\xampp\htdocs\ria\application\views\bankstatement.php 2
+ERROR - 2019-01-05 09:05:06 --> Severity: Warning --> Invalid argument supplied for foreach() C:\xampp\htdocs\ria\application\views\bankstatement.php 2
+ERROR - 2019-01-05 09:05:06 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 87
+ERROR - 2019-01-05 09:05:06 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 87
+ERROR - 2019-01-05 09:05:06 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 88
+ERROR - 2019-01-05 09:05:06 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 88
+ERROR - 2019-01-05 09:05:06 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 89
+ERROR - 2019-01-05 09:05:06 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 89
+ERROR - 2019-01-05 09:05:06 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 139
+ERROR - 2019-01-05 09:05:06 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 139
+ERROR - 2019-01-05 09:05:06 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 140
+ERROR - 2019-01-05 09:05:06 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 140
+ERROR - 2019-01-05 09:05:07 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 141
+ERROR - 2019-01-05 09:05:07 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 141
+ERROR - 2019-01-05 09:05:07 --> Severity: Notice --> Undefined variable: Bankname C:\xampp\htdocs\ria\application\views\bankstatement.php 237
+ERROR - 2019-01-05 09:05:15 --> Severity: Notice --> Undefined variable: creditdebit C:\xampp\htdocs\ria\application\views\bankingfile.php 132
+ERROR - 2019-01-05 09:05:35 --> Severity: Notice --> Undefined variable: filename C:\xampp\htdocs\ria\application\controllers\cashbook.php 235
+ERROR - 2019-01-05 09:05:36 --> The upload path does not appear to be valid.
+ERROR - 2019-01-05 09:05:40 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 515
+ERROR - 2019-01-05 09:05:40 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 515
+ERROR - 2019-01-05 09:05:40 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 515
+ERROR - 2019-01-05 09:05:40 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 515
+ERROR - 2019-01-05 09:05:40 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 515
+ERROR - 2019-01-05 09:05:40 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 515
+ERROR - 2019-01-05 09:05:40 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 515
+ERROR - 2019-01-05 09:05:40 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 515
+ERROR - 2019-01-05 09:05:40 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 515
+ERROR - 2019-01-05 09:05:40 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 515
+ERROR - 2019-01-05 09:05:40 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 515
+ERROR - 2019-01-05 09:05:40 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 515
+ERROR - 2019-01-05 09:05:40 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 515
+ERROR - 2019-01-05 09:05:40 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 515
+ERROR - 2019-01-05 09:05:41 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 515
+ERROR - 2019-01-05 09:05:41 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 515
+ERROR - 2019-01-05 09:05:41 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 515
+ERROR - 2019-01-05 09:05:41 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 515
+ERROR - 2019-01-05 09:05:41 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 515
+ERROR - 2019-01-05 09:05:41 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 515
+ERROR - 2019-01-05 09:05:41 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 515
+ERROR - 2019-01-05 09:05:41 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 515
+ERROR - 2019-01-05 09:05:41 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 515
+ERROR - 2019-01-05 09:05:41 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 515
+ERROR - 2019-01-05 09:05:41 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 515
+ERROR - 2019-01-05 09:05:41 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 515
+ERROR - 2019-01-05 09:05:41 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 515
+ERROR - 2019-01-05 09:05:42 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 515
+ERROR - 2019-01-05 09:05:42 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 515
+ERROR - 2019-01-05 09:05:42 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 515
+ERROR - 2019-01-05 09:05:42 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 515
+ERROR - 2019-01-05 09:05:42 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 515
+ERROR - 2019-01-05 09:05:42 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 515
+ERROR - 2019-01-05 09:05:42 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 515
+ERROR - 2019-01-05 09:05:42 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 515
+ERROR - 2019-01-05 09:05:42 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 515
+ERROR - 2019-01-05 09:05:42 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 515
+ERROR - 2019-01-05 09:05:42 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 515
+ERROR - 2019-01-05 09:05:42 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 515
+ERROR - 2019-01-05 09:05:42 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 515
+ERROR - 2019-01-05 09:05:43 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 515
+ERROR - 2019-01-05 09:05:43 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 515
+ERROR - 2019-01-05 09:05:43 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 515
+ERROR - 2019-01-05 09:05:43 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 515
+ERROR - 2019-01-05 09:05:43 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 515
+ERROR - 2019-01-05 09:05:43 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 515
+ERROR - 2019-01-05 09:05:43 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 515
+ERROR - 2019-01-05 09:05:43 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 515
+ERROR - 2019-01-05 09:05:43 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 515
+ERROR - 2019-01-05 09:05:43 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 515
+ERROR - 2019-01-05 09:05:43 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 515
+ERROR - 2019-01-05 09:05:43 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 515
+ERROR - 2019-01-05 09:05:43 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 515
+ERROR - 2019-01-05 09:05:43 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 515
+ERROR - 2019-01-05 09:05:44 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 515
+ERROR - 2019-01-05 09:05:44 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 515
+ERROR - 2019-01-05 09:05:44 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 515
+ERROR - 2019-01-05 09:05:44 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 515
+ERROR - 2019-01-05 09:05:44 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 515
+ERROR - 2019-01-05 09:05:44 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 515
+ERROR - 2019-01-05 09:05:44 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 515
+ERROR - 2019-01-05 09:05:44 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 515
+ERROR - 2019-01-05 09:05:44 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 515
+ERROR - 2019-01-05 09:05:44 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 515
+ERROR - 2019-01-05 09:05:44 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 515
+ERROR - 2019-01-05 09:05:44 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 515
+ERROR - 2019-01-05 09:05:44 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 515
+ERROR - 2019-01-05 09:05:45 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 515
+ERROR - 2019-01-05 09:05:45 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 515
+ERROR - 2019-01-05 09:05:45 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 515
+ERROR - 2019-01-05 09:05:45 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 515
+ERROR - 2019-01-05 09:05:45 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 515
+ERROR - 2019-01-05 09:05:45 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 515
+ERROR - 2019-01-05 09:05:45 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 515
+ERROR - 2019-01-05 09:05:45 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 515
+ERROR - 2019-01-05 09:05:45 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 515
+ERROR - 2019-01-05 09:05:45 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 515
+ERROR - 2019-01-05 09:05:45 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 515
+ERROR - 2019-01-05 09:05:45 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 515
+ERROR - 2019-01-05 09:05:45 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 515
+ERROR - 2019-01-05 09:05:46 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 515
+ERROR - 2019-01-05 09:05:46 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 515
+ERROR - 2019-01-05 09:05:46 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 515
+ERROR - 2019-01-05 09:05:46 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 515
+ERROR - 2019-01-05 09:05:46 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 515
+ERROR - 2019-01-05 09:05:46 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 515
+ERROR - 2019-01-05 09:05:46 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 515
+ERROR - 2019-01-05 09:05:46 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 515
+ERROR - 2019-01-05 09:05:46 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 515
+ERROR - 2019-01-05 09:05:46 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 515
+ERROR - 2019-01-05 09:05:46 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 515
+ERROR - 2019-01-05 09:05:46 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 515
+ERROR - 2019-01-05 09:05:46 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 515
+ERROR - 2019-01-05 09:05:46 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 515
+ERROR - 2019-01-05 09:05:47 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 515
+ERROR - 2019-01-05 09:05:47 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 515
+ERROR - 2019-01-05 09:05:47 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 515
+ERROR - 2019-01-05 09:05:47 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 515
+ERROR - 2019-01-05 09:05:47 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 515
+ERROR - 2019-01-05 09:05:47 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 515
+ERROR - 2019-01-05 09:05:47 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 515
+ERROR - 2019-01-05 09:05:47 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 515
+ERROR - 2019-01-05 09:05:47 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 515
+ERROR - 2019-01-05 09:05:47 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 515
+ERROR - 2019-01-05 09:05:47 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 515
+ERROR - 2019-01-05 09:05:47 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 515
+ERROR - 2019-01-05 09:05:48 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 515
+ERROR - 2019-01-05 09:05:48 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 515
+ERROR - 2019-01-05 09:05:48 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 515
+ERROR - 2019-01-05 09:05:48 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 515
+ERROR - 2019-01-05 09:05:48 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 515
+ERROR - 2019-01-05 09:05:48 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 515
+ERROR - 2019-01-05 09:05:48 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 515
+ERROR - 2019-01-05 09:05:48 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 515
+ERROR - 2019-01-05 09:05:48 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 515
+ERROR - 2019-01-05 09:05:48 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 515
+ERROR - 2019-01-05 09:05:48 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 515
+ERROR - 2019-01-05 09:05:48 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 515
+ERROR - 2019-01-05 09:05:48 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 515
+ERROR - 2019-01-05 09:05:48 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 515
+ERROR - 2019-01-05 09:05:49 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 515
+ERROR - 2019-01-05 09:05:49 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 515
+ERROR - 2019-01-05 09:05:49 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 515
+ERROR - 2019-01-05 09:05:49 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 515
+ERROR - 2019-01-05 09:05:49 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 515
+ERROR - 2019-01-05 09:05:49 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 515
+ERROR - 2019-01-05 09:05:49 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 515
+ERROR - 2019-01-05 09:05:49 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 515
+ERROR - 2019-01-05 09:05:49 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 515
+ERROR - 2019-01-05 09:05:49 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 515
+ERROR - 2019-01-05 09:05:49 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 515
+ERROR - 2019-01-05 09:05:49 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 515
+ERROR - 2019-01-05 09:05:49 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 515
+ERROR - 2019-01-05 09:05:50 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 515
+ERROR - 2019-01-05 09:05:50 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 515
+ERROR - 2019-01-05 09:05:50 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 515
+ERROR - 2019-01-05 09:05:50 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 515
+ERROR - 2019-01-05 09:05:50 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 515
+ERROR - 2019-01-05 09:05:50 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 515
+ERROR - 2019-01-05 09:05:50 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 515
+ERROR - 2019-01-05 09:05:50 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 515
+ERROR - 2019-01-05 09:05:50 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 515
+ERROR - 2019-01-05 09:05:50 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 515
+ERROR - 2019-01-05 09:05:50 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 515
+ERROR - 2019-01-05 09:05:50 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 515
+ERROR - 2019-01-05 09:05:50 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 515
+ERROR - 2019-01-05 09:05:51 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 515
+ERROR - 2019-01-05 09:05:51 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 515
+ERROR - 2019-01-05 09:05:51 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 515
+ERROR - 2019-01-05 09:05:51 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 515
+ERROR - 2019-01-05 09:05:51 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 515
+ERROR - 2019-01-05 09:05:51 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 515
+ERROR - 2019-01-05 09:05:51 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 515
+ERROR - 2019-01-05 09:05:51 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 515
+ERROR - 2019-01-05 09:05:51 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 515
+ERROR - 2019-01-05 09:05:51 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 515
+ERROR - 2019-01-05 09:05:51 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 515
+ERROR - 2019-01-05 09:05:51 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 515
+ERROR - 2019-01-05 09:05:51 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 515
+ERROR - 2019-01-05 09:05:52 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 515
+ERROR - 2019-01-05 09:05:52 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 515
+ERROR - 2019-01-05 09:05:52 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 515
+ERROR - 2019-01-05 09:05:52 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 515
+ERROR - 2019-01-05 09:05:52 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 515
+ERROR - 2019-01-05 09:05:52 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 515
+ERROR - 2019-01-05 09:05:52 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 515
+ERROR - 2019-01-05 09:05:52 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 515
+ERROR - 2019-01-05 09:05:52 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 515
+ERROR - 2019-01-05 09:05:52 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 515
+ERROR - 2019-01-05 09:05:52 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 515
+ERROR - 2019-01-05 09:05:52 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 515
+ERROR - 2019-01-05 09:05:52 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 515
+ERROR - 2019-01-05 09:05:53 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 515
+ERROR - 2019-01-05 09:05:53 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 515
+ERROR - 2019-01-05 09:05:53 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 515
+ERROR - 2019-01-05 09:05:53 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 515
+ERROR - 2019-01-05 09:05:53 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 515
+ERROR - 2019-01-05 09:05:53 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 515
+ERROR - 2019-01-05 09:05:53 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 515
+ERROR - 2019-01-05 09:05:53 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 515
+ERROR - 2019-01-05 09:05:53 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 515
+ERROR - 2019-01-05 09:05:53 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 515
+ERROR - 2019-01-05 09:05:53 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 515
+ERROR - 2019-01-05 09:05:53 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 515
+ERROR - 2019-01-05 09:05:53 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 515
+ERROR - 2019-01-05 09:05:54 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 515
+ERROR - 2019-01-05 09:05:54 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 515
+ERROR - 2019-01-05 09:05:54 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 515
+ERROR - 2019-01-05 09:05:54 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 515
+ERROR - 2019-01-05 09:05:54 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 515
+ERROR - 2019-01-05 09:05:54 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 515
+ERROR - 2019-01-05 09:05:54 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 515
+ERROR - 2019-01-05 09:05:54 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 515
+ERROR - 2019-01-05 09:05:54 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 515
+ERROR - 2019-01-05 09:05:54 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 515
+ERROR - 2019-01-05 09:05:54 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 515
+ERROR - 2019-01-05 09:05:54 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 515
+ERROR - 2019-01-05 09:05:54 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 515
+ERROR - 2019-01-05 09:05:55 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 515
+ERROR - 2019-01-05 09:05:55 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 515
+ERROR - 2019-01-05 09:05:55 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 515
+ERROR - 2019-01-05 09:05:55 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 515
+ERROR - 2019-01-05 09:05:55 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 515
+ERROR - 2019-01-05 09:05:55 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 515
+ERROR - 2019-01-05 09:05:55 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 515
+ERROR - 2019-01-05 09:05:55 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 515
+ERROR - 2019-01-05 09:05:55 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 515
+ERROR - 2019-01-05 09:05:55 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 515
+ERROR - 2019-01-05 09:05:56 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 515
+ERROR - 2019-01-05 09:05:56 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 515
+ERROR - 2019-01-05 09:05:56 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 515
+ERROR - 2019-01-05 09:05:56 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 515
+ERROR - 2019-01-05 09:05:56 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 515
+ERROR - 2019-01-05 09:05:56 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 515
+ERROR - 2019-01-05 09:05:56 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 515
+ERROR - 2019-01-05 09:05:56 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 515
+ERROR - 2019-01-05 09:05:56 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 515
+ERROR - 2019-01-05 09:05:56 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 515
+ERROR - 2019-01-05 09:05:56 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 515
+ERROR - 2019-01-05 09:05:56 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 515
+ERROR - 2019-01-05 09:05:57 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 515
+ERROR - 2019-01-05 09:05:57 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 515
+ERROR - 2019-01-05 09:05:57 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 515
+ERROR - 2019-01-05 09:05:57 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 515
+ERROR - 2019-01-05 09:05:57 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 515
+ERROR - 2019-01-05 09:05:57 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 515
+ERROR - 2019-01-05 09:05:57 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 515
+ERROR - 2019-01-05 09:05:57 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 515
+ERROR - 2019-01-05 09:05:57 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 515
+ERROR - 2019-01-05 09:05:57 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 515
+ERROR - 2019-01-05 09:05:57 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 515
+ERROR - 2019-01-05 09:05:57 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 515
+ERROR - 2019-01-05 09:05:58 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 515
+ERROR - 2019-01-05 09:05:58 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 515
+ERROR - 2019-01-05 09:05:58 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 515
+ERROR - 2019-01-05 09:05:58 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 515
+ERROR - 2019-01-05 09:05:58 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 515
+ERROR - 2019-01-05 09:05:58 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 515
+ERROR - 2019-01-05 09:05:58 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 515
+ERROR - 2019-01-05 09:05:58 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 515
+ERROR - 2019-01-05 09:05:58 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 515
+ERROR - 2019-01-05 09:05:58 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 515
+ERROR - 2019-01-05 09:05:58 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 515
+ERROR - 2019-01-05 09:05:58 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 515
+ERROR - 2019-01-05 09:05:58 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 515
+ERROR - 2019-01-05 09:05:59 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 515
+ERROR - 2019-01-05 09:05:59 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 515
+ERROR - 2019-01-05 09:05:59 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 515
+ERROR - 2019-01-05 09:05:59 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 515
+ERROR - 2019-01-05 09:05:59 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 515
+ERROR - 2019-01-05 09:05:59 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 515
+ERROR - 2019-01-05 09:05:59 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 515
+ERROR - 2019-01-05 09:05:59 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 515
+ERROR - 2019-01-05 09:05:59 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 515
+ERROR - 2019-01-05 09:05:59 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 515
+ERROR - 2019-01-05 09:05:59 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 515
+ERROR - 2019-01-05 09:05:59 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 515
+ERROR - 2019-01-05 09:05:59 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 515
+ERROR - 2019-01-05 09:06:00 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 515
+ERROR - 2019-01-05 09:06:00 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 515
+ERROR - 2019-01-05 09:06:00 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 515
+ERROR - 2019-01-05 09:06:00 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 515
+ERROR - 2019-01-05 09:06:00 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 515
+ERROR - 2019-01-05 09:06:00 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 515
+ERROR - 2019-01-05 09:06:00 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 515
+ERROR - 2019-01-05 09:06:00 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 515
+ERROR - 2019-01-05 09:06:00 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 515
+ERROR - 2019-01-05 09:06:00 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 515
+ERROR - 2019-01-05 09:06:00 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 515
+ERROR - 2019-01-05 09:06:01 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 515
+ERROR - 2019-01-05 09:06:05 --> Severity: Notice --> Undefined variable: fdate C:\xampp\htdocs\ria\application\controllers\cashbook.php 1737
+ERROR - 2019-01-05 09:06:05 --> Severity: Notice --> Undefined variable: tdate C:\xampp\htdocs\ria\application\controllers\cashbook.php 1737
+ERROR - 2019-01-05 09:06:05 --> Severity: Notice --> Undefined variable: fa C:\xampp\htdocs\ria\application\controllers\cashbook.php 1737
+ERROR - 2019-01-05 09:06:05 --> Severity: Notice --> Undefined variable: aa C:\xampp\htdocs\ria\application\controllers\cashbook.php 1737
+ERROR - 2019-01-05 09:06:05 --> Severity: Notice --> Undefined variable: financialyear C:\xampp\htdocs\ria\application\views\bankstatement.php 2
+ERROR - 2019-01-05 09:06:05 --> Severity: Warning --> Invalid argument supplied for foreach() C:\xampp\htdocs\ria\application\views\bankstatement.php 2
+ERROR - 2019-01-05 09:06:05 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 87
+ERROR - 2019-01-05 09:06:05 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 87
+ERROR - 2019-01-05 09:06:05 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 88
+ERROR - 2019-01-05 09:06:05 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 88
+ERROR - 2019-01-05 09:06:06 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 89
+ERROR - 2019-01-05 09:06:06 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 89
+ERROR - 2019-01-05 09:06:06 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 139
+ERROR - 2019-01-05 09:06:06 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 139
+ERROR - 2019-01-05 09:06:06 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 140
+ERROR - 2019-01-05 09:06:06 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 140
+ERROR - 2019-01-05 09:06:06 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 141
+ERROR - 2019-01-05 09:06:06 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 141
+ERROR - 2019-01-05 09:09:21 --> Severity: Notice --> Undefined variable: financialyear C:\xampp\htdocs\ria\application\views\bankdebit.php 2
+ERROR - 2019-01-05 09:09:21 --> Severity: Warning --> Invalid argument supplied for foreach() C:\xampp\htdocs\ria\application\views\bankdebit.php 2
+ERROR - 2019-01-05 09:09:26 --> Severity: Notice --> Undefined variable: financialyear C:\xampp\htdocs\ria\application\views\bankdebit.php 2
+ERROR - 2019-01-05 09:09:26 --> Severity: Warning --> Invalid argument supplied for foreach() C:\xampp\htdocs\ria\application\views\bankdebit.php 2
+ERROR - 2019-01-05 09:09:26 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankdebit.php 167
+ERROR - 2019-01-05 09:09:26 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\ria\application\views\bankdebit.php 169
+ERROR - 2019-01-05 09:09:26 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankdebit.php 167
+ERROR - 2019-01-05 09:09:26 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\ria\application\views\bankdebit.php 169
+ERROR - 2019-01-05 09:09:27 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankdebit.php 167
+ERROR - 2019-01-05 09:09:27 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\ria\application\views\bankdebit.php 169
+ERROR - 2019-01-05 09:09:27 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankdebit.php 167
+ERROR - 2019-01-05 09:09:27 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\ria\application\views\bankdebit.php 169
+ERROR - 2019-01-05 09:09:27 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankdebit.php 167
+ERROR - 2019-01-05 09:09:27 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\ria\application\views\bankdebit.php 169
+ERROR - 2019-01-05 09:09:27 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankdebit.php 167
+ERROR - 2019-01-05 09:09:27 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\ria\application\views\bankdebit.php 169
+ERROR - 2019-01-05 09:09:27 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankdebit.php 167
+ERROR - 2019-01-05 09:09:27 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\ria\application\views\bankdebit.php 169
+ERROR - 2019-01-05 09:09:27 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankdebit.php 167
+ERROR - 2019-01-05 09:09:27 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\ria\application\views\bankdebit.php 169
+ERROR - 2019-01-05 09:09:27 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankdebit.php 167
+ERROR - 2019-01-05 09:09:27 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\ria\application\views\bankdebit.php 169
+ERROR - 2019-01-05 09:09:27 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankdebit.php 167
+ERROR - 2019-01-05 09:09:27 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\ria\application\views\bankdebit.php 169
+ERROR - 2019-01-05 09:09:27 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankdebit.php 167
+ERROR - 2019-01-05 09:09:27 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\ria\application\views\bankdebit.php 169
+ERROR - 2019-01-05 09:09:27 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankdebit.php 167
+ERROR - 2019-01-05 09:09:27 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\ria\application\views\bankdebit.php 169
+ERROR - 2019-01-05 09:09:27 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankdebit.php 167
+ERROR - 2019-01-05 09:09:27 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\ria\application\views\bankdebit.php 169
+ERROR - 2019-01-05 09:09:28 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankdebit.php 167
+ERROR - 2019-01-05 09:09:28 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\ria\application\views\bankdebit.php 169
+ERROR - 2019-01-05 09:09:28 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankdebit.php 167
+ERROR - 2019-01-05 09:09:28 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\ria\application\views\bankdebit.php 169
+ERROR - 2019-01-05 09:09:28 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankdebit.php 167
+ERROR - 2019-01-05 09:09:28 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\ria\application\views\bankdebit.php 169
+ERROR - 2019-01-05 09:09:28 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankdebit.php 167
+ERROR - 2019-01-05 09:09:28 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\ria\application\views\bankdebit.php 169
+ERROR - 2019-01-05 09:09:28 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankdebit.php 167
+ERROR - 2019-01-05 09:09:28 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\ria\application\views\bankdebit.php 169
+ERROR - 2019-01-05 09:09:28 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankdebit.php 167
+ERROR - 2019-01-05 09:09:28 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\ria\application\views\bankdebit.php 169
+ERROR - 2019-01-05 09:09:28 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankdebit.php 167
+ERROR - 2019-01-05 09:09:28 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\ria\application\views\bankdebit.php 169
+ERROR - 2019-01-05 09:09:28 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankdebit.php 167
+ERROR - 2019-01-05 09:09:28 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\ria\application\views\bankdebit.php 169
+ERROR - 2019-01-05 09:09:28 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankdebit.php 167
+ERROR - 2019-01-05 09:09:28 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\ria\application\views\bankdebit.php 169
+ERROR - 2019-01-05 09:09:28 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankdebit.php 167
+ERROR - 2019-01-05 09:09:28 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\ria\application\views\bankdebit.php 169
+ERROR - 2019-01-05 09:09:28 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankdebit.php 167
+ERROR - 2019-01-05 09:09:28 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\ria\application\views\bankdebit.php 169
+ERROR - 2019-01-05 09:09:28 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankdebit.php 167
+ERROR - 2019-01-05 09:09:29 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\ria\application\views\bankdebit.php 169
+ERROR - 2019-01-05 09:09:29 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankdebit.php 167
+ERROR - 2019-01-05 09:09:29 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\ria\application\views\bankdebit.php 169
+ERROR - 2019-01-05 09:09:29 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankdebit.php 167
+ERROR - 2019-01-05 09:09:29 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\ria\application\views\bankdebit.php 169
+ERROR - 2019-01-05 09:10:10 --> Severity: Notice --> Undefined variable: balancetocleared C:\xampp\htdocs\ria\application\controllers\cashbook.php 1926
+ERROR - 2019-01-05 09:10:10 --> Severity: Notice --> Undefined variable: balancetocleared C:\xampp\htdocs\ria\application\controllers\cashbook.php 1926
+ERROR - 2019-01-05 09:10:10 --> Severity: Notice --> Undefined variable: clearedblnce C:\xampp\htdocs\ria\application\controllers\cashbook.php 1935
+ERROR - 2019-01-05 09:10:10 --> Severity: Notice --> Undefined variable: balancetocleared C:\xampp\htdocs\ria\application\controllers\cashbook.php 1926
+ERROR - 2019-01-05 09:10:10 --> Severity: Notice --> Undefined variable: balancetocleared C:\xampp\htdocs\ria\application\controllers\cashbook.php 1935
+ERROR - 2019-01-05 09:10:10 --> Severity: Notice --> Undefined variable: clearedblnce C:\xampp\htdocs\ria\application\controllers\cashbook.php 1935
+ERROR - 2019-01-05 09:10:10 --> Severity: Notice --> Undefined variable: clearedblnce C:\xampp\htdocs\ria\application\controllers\cashbook.php 1935
+ERROR - 2019-01-05 09:10:10 --> Severity: Notice --> Undefined variable: balancetocleared C:\xampp\htdocs\ria\application\controllers\cashbook.php 1935
+ERROR - 2019-01-05 09:10:10 --> Severity: Notice --> Undefined variable: balancetocleared C:\xampp\htdocs\ria\application\controllers\cashbook.php 1935
+ERROR - 2019-01-05 09:10:10 --> Severity: Notice --> Undefined variable: data C:\xampp\htdocs\ria\application\controllers\cashbook.php 2001
+ERROR - 2019-01-05 09:10:10 --> Severity: Notice --> Undefined variable: data C:\xampp\htdocs\ria\application\controllers\cashbook.php 2001
+ERROR - 2019-01-05 09:10:11 --> Severity: Notice --> Undefined variable: data C:\xampp\htdocs\ria\application\controllers\cashbook.php 2001
+ERROR - 2019-01-05 09:10:11 --> Severity: Notice --> Undefined variable: data C:\xampp\htdocs\ria\application\controllers\cashbook.php 2001
+ERROR - 2019-01-05 09:10:11 --> Severity: Notice --> Undefined variable: financialyear C:\xampp\htdocs\ria\application\views\bankstatement.php 2
+ERROR - 2019-01-05 09:10:11 --> Severity: Warning --> Invalid argument supplied for foreach() C:\xampp\htdocs\ria\application\views\bankstatement.php 2
+ERROR - 2019-01-05 09:10:11 --> Severity: Notice --> Undefined variable: financialyear C:\xampp\htdocs\ria\application\views\bankstatement.php 2
+ERROR - 2019-01-05 09:10:11 --> Severity: Notice --> Undefined variable: financialyear C:\xampp\htdocs\ria\application\views\bankstatement.php 2
+ERROR - 2019-01-05 09:10:11 --> Severity: Notice --> Undefined variable: bankreport C:\xampp\htdocs\ria\application\views\bankstatement.php 8
+ERROR - 2019-01-05 09:10:11 --> Severity: Notice --> Undefined variable: financialyear C:\xampp\htdocs\ria\application\views\bankstatement.php 2
+ERROR - 2019-01-05 09:10:11 --> Severity: Warning --> Invalid argument supplied for foreach() C:\xampp\htdocs\ria\application\views\bankstatement.php 8
+ERROR - 2019-01-05 09:10:11 --> Severity: Warning --> Invalid argument supplied for foreach() C:\xampp\htdocs\ria\application\views\bankstatement.php 2
+ERROR - 2019-01-05 09:10:11 --> Severity: Warning --> Invalid argument supplied for foreach() C:\xampp\htdocs\ria\application\views\bankstatement.php 2
+ERROR - 2019-01-05 09:10:11 --> Severity: Warning --> Invalid argument supplied for foreach() C:\xampp\htdocs\ria\application\views\bankstatement.php 2
+ERROR - 2019-01-05 09:10:11 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 87
+ERROR - 2019-01-05 09:10:11 --> Severity: Notice --> Undefined variable: bankreport C:\xampp\htdocs\ria\application\views\bankstatement.php 8
+ERROR - 2019-01-05 09:10:11 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 87
+ERROR - 2019-01-05 09:10:11 --> Severity: Notice --> Undefined variable: bankreport C:\xampp\htdocs\ria\application\views\bankstatement.php 8
+ERROR - 2019-01-05 09:10:11 --> Severity: Notice --> Undefined variable: bankreport C:\xampp\htdocs\ria\application\views\bankstatement.php 8
+ERROR - 2019-01-05 09:10:11 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 88
+ERROR - 2019-01-05 09:10:11 --> Severity: Warning --> Invalid argument supplied for foreach() C:\xampp\htdocs\ria\application\views\bankstatement.php 8
+ERROR - 2019-01-05 09:10:11 --> Severity: Warning --> Invalid argument supplied for foreach() C:\xampp\htdocs\ria\application\views\bankstatement.php 8
+ERROR - 2019-01-05 09:10:11 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 87
+ERROR - 2019-01-05 09:10:11 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 87
+ERROR - 2019-01-05 09:10:11 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 88
+ERROR - 2019-01-05 09:10:11 --> Severity: Warning --> Invalid argument supplied for foreach() C:\xampp\htdocs\ria\application\views\bankstatement.php 8
+ERROR - 2019-01-05 09:10:11 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 89
+ERROR - 2019-01-05 09:10:11 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 87
+ERROR - 2019-01-05 09:10:11 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 87
+ERROR - 2019-01-05 09:10:11 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 89
+ERROR - 2019-01-05 09:10:11 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 87
+ERROR - 2019-01-05 09:10:11 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 139
+ERROR - 2019-01-05 09:10:11 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 88
+ERROR - 2019-01-05 09:10:11 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 88
+ERROR - 2019-01-05 09:10:11 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 87
+ERROR - 2019-01-05 09:10:11 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 88
+ERROR - 2019-01-05 09:10:11 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 88
+ERROR - 2019-01-05 09:10:11 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 139
+ERROR - 2019-01-05 09:10:11 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 88
+ERROR - 2019-01-05 09:10:11 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 89
+ERROR - 2019-01-05 09:10:11 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 89
+ERROR - 2019-01-05 09:10:11 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 140
+ERROR - 2019-01-05 09:10:11 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 88
+ERROR - 2019-01-05 09:10:11 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 140
+ERROR - 2019-01-05 09:10:11 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 89
+ERROR - 2019-01-05 09:10:11 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 89
+ERROR - 2019-01-05 09:10:11 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 89
+ERROR - 2019-01-05 09:10:11 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 89
+ERROR - 2019-01-05 09:10:11 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 139
+ERROR - 2019-01-05 09:10:11 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 139
+ERROR - 2019-01-05 09:10:11 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 141
+ERROR - 2019-01-05 09:10:11 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 139
+ERROR - 2019-01-05 09:10:11 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 139
+ERROR - 2019-01-05 09:10:11 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 141
+ERROR - 2019-01-05 09:10:11 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 139
+ERROR - 2019-01-05 09:10:11 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 140
+ERROR - 2019-01-05 09:10:11 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 139
+ERROR - 2019-01-05 09:10:11 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 140
+ERROR - 2019-01-05 09:10:11 --> Severity: Notice --> Undefined variable: finyear C:\xampp\htdocs\ria\application\views\bankstatement.php 199
+ERROR - 2019-01-05 09:10:11 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 140
+ERROR - 2019-01-05 09:10:11 --> Severity: Warning --> Invalid argument supplied for foreach() C:\xampp\htdocs\ria\application\views\bankstatement.php 199
+ERROR - 2019-01-05 09:10:11 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 140
+ERROR - 2019-01-05 09:10:11 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 140
+ERROR - 2019-01-05 09:10:11 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 140
+ERROR - 2019-01-05 09:10:11 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 141
+ERROR - 2019-01-05 09:10:11 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 141
+ERROR - 2019-01-05 09:10:11 --> Severity: Notice --> Undefined variable: Bankname C:\xampp\htdocs\ria\application\views\bankstatement.php 237
+ERROR - 2019-01-05 09:10:11 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 141
+ERROR - 2019-01-05 09:10:11 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 141
+ERROR - 2019-01-05 09:10:11 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 141
+ERROR - 2019-01-05 09:10:12 --> Severity: Notice --> Undefined variable: finyear C:\xampp\htdocs\ria\application\views\bankstatement.php 199
+ERROR - 2019-01-05 09:10:12 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 141
+ERROR - 2019-01-05 09:10:12 --> Severity: Notice --> Undefined variable: finyear C:\xampp\htdocs\ria\application\views\bankstatement.php 199
+ERROR - 2019-01-05 09:10:12 --> Severity: Notice --> Undefined variable: finyear C:\xampp\htdocs\ria\application\views\bankstatement.php 199
+ERROR - 2019-01-05 09:10:12 --> Severity: Warning --> Invalid argument supplied for foreach() C:\xampp\htdocs\ria\application\views\bankstatement.php 199
+ERROR - 2019-01-05 09:10:12 --> Severity: Notice --> Undefined variable: Bankname C:\xampp\htdocs\ria\application\views\bankstatement.php 237
+ERROR - 2019-01-05 09:10:12 --> Severity: Warning --> Invalid argument supplied for foreach() C:\xampp\htdocs\ria\application\views\bankstatement.php 199
+ERROR - 2019-01-05 09:10:12 --> Severity: Warning --> Invalid argument supplied for foreach() C:\xampp\htdocs\ria\application\views\bankstatement.php 199
+ERROR - 2019-01-05 09:10:12 --> Severity: Notice --> Undefined variable: Bankname C:\xampp\htdocs\ria\application\views\bankstatement.php 237
+ERROR - 2019-01-05 09:10:12 --> Severity: Notice --> Undefined variable: Bankname C:\xampp\htdocs\ria\application\views\bankstatement.php 237
+ERROR - 2019-01-05 09:10:12 --> Severity: Notice --> Undefined variable: fdate C:\xampp\htdocs\ria\application\controllers\cashbook.php 1737
+ERROR - 2019-01-05 09:10:12 --> Severity: Notice --> Undefined variable: tdate C:\xampp\htdocs\ria\application\controllers\cashbook.php 1737
+ERROR - 2019-01-05 09:10:13 --> Severity: Notice --> Undefined variable: fa C:\xampp\htdocs\ria\application\controllers\cashbook.php 1737
+ERROR - 2019-01-05 09:10:13 --> Severity: Notice --> Undefined variable: aa C:\xampp\htdocs\ria\application\controllers\cashbook.php 1737
+ERROR - 2019-01-05 09:10:13 --> Severity: Notice --> Undefined variable: fdate C:\xampp\htdocs\ria\application\controllers\cashbook.php 1737
+ERROR - 2019-01-05 09:10:13 --> Severity: Notice --> Undefined variable: tdate C:\xampp\htdocs\ria\application\controllers\cashbook.php 1737
+ERROR - 2019-01-05 09:10:13 --> Severity: Notice --> Undefined variable: fdate C:\xampp\htdocs\ria\application\controllers\cashbook.php 1737
+ERROR - 2019-01-05 09:10:13 --> Severity: Notice --> Undefined variable: fa C:\xampp\htdocs\ria\application\controllers\cashbook.php 1737
+ERROR - 2019-01-05 09:10:13 --> Severity: Notice --> Undefined variable: tdate C:\xampp\htdocs\ria\application\controllers\cashbook.php 1737
+ERROR - 2019-01-05 09:10:13 --> Severity: Notice --> Undefined variable: fa C:\xampp\htdocs\ria\application\controllers\cashbook.php 1737
+ERROR - 2019-01-05 09:10:13 --> Severity: Notice --> Undefined variable: aa C:\xampp\htdocs\ria\application\controllers\cashbook.php 1737
+ERROR - 2019-01-05 09:10:13 --> Severity: Notice --> Undefined variable: aa C:\xampp\htdocs\ria\application\controllers\cashbook.php 1737
+ERROR - 2019-01-05 09:10:13 --> Severity: Notice --> Undefined variable: financialyear C:\xampp\htdocs\ria\application\views\bankstatement.php 2
+ERROR - 2019-01-05 09:10:13 --> Severity: Warning --> Invalid argument supplied for foreach() C:\xampp\htdocs\ria\application\views\bankstatement.php 2
+ERROR - 2019-01-05 09:10:13 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 87
+ERROR - 2019-01-05 09:10:13 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 87
+ERROR - 2019-01-05 09:10:13 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 88
+ERROR - 2019-01-05 09:10:13 --> Severity: Notice --> Undefined variable: financialyear C:\xampp\htdocs\ria\application\views\bankstatement.php 2
+ERROR - 2019-01-05 09:10:13 --> Severity: Notice --> Undefined variable: financialyear C:\xampp\htdocs\ria\application\views\bankstatement.php 2
+ERROR - 2019-01-05 09:10:13 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 88
+ERROR - 2019-01-05 09:10:13 --> Severity: Warning --> Invalid argument supplied for foreach() C:\xampp\htdocs\ria\application\views\bankstatement.php 2
+ERROR - 2019-01-05 09:10:13 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 89
+ERROR - 2019-01-05 09:10:13 --> Severity: Warning --> Invalid argument supplied for foreach() C:\xampp\htdocs\ria\application\views\bankstatement.php 2
+ERROR - 2019-01-05 09:10:13 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 89
+ERROR - 2019-01-05 09:10:13 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 87
+ERROR - 2019-01-05 09:10:13 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 139
+ERROR - 2019-01-05 09:10:13 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 87
+ERROR - 2019-01-05 09:10:13 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 87
+ERROR - 2019-01-05 09:10:13 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 88
+ERROR - 2019-01-05 09:10:13 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 87
+ERROR - 2019-01-05 09:10:13 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 139
+ERROR - 2019-01-05 09:10:13 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 140
+ERROR - 2019-01-05 09:10:13 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 88
+ERROR - 2019-01-05 09:10:13 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 88
+ERROR - 2019-01-05 09:10:13 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 88
+ERROR - 2019-01-05 09:10:13 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 140
+ERROR - 2019-01-05 09:10:13 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 89
+ERROR - 2019-01-05 09:10:13 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 141
+ERROR - 2019-01-05 09:10:13 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 89
+ERROR - 2019-01-05 09:10:13 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 89
+ERROR - 2019-01-05 09:10:14 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 89
+ERROR - 2019-01-05 09:10:14 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 141
+ERROR - 2019-01-05 09:10:14 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 139
+ERROR - 2019-01-05 09:10:14 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 139
+ERROR - 2019-01-05 09:10:14 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 139
+ERROR - 2019-01-05 09:10:14 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 140
+ERROR - 2019-01-05 09:10:14 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 139
+ERROR - 2019-01-05 09:10:14 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 140
+ERROR - 2019-01-05 09:10:14 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 140
+ERROR - 2019-01-05 09:10:14 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 141
+ERROR - 2019-01-05 09:10:14 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 140
+ERROR - 2019-01-05 09:10:14 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 141
+ERROR - 2019-01-05 09:10:14 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 141
+ERROR - 2019-01-05 09:10:14 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 141
+ERROR - 2019-01-05 09:10:38 --> Severity: Notice --> Undefined variable: fdate C:\xampp\htdocs\ria\application\controllers\cashbook.php 1737
+ERROR - 2019-01-05 09:10:38 --> Severity: Notice --> Undefined variable: tdate C:\xampp\htdocs\ria\application\controllers\cashbook.php 1737
+ERROR - 2019-01-05 09:10:38 --> Severity: Notice --> Undefined variable: fa C:\xampp\htdocs\ria\application\controllers\cashbook.php 1737
+ERROR - 2019-01-05 09:10:38 --> Severity: Notice --> Undefined variable: aa C:\xampp\htdocs\ria\application\controllers\cashbook.php 1737
+ERROR - 2019-01-05 09:10:38 --> Severity: Notice --> Undefined variable: financialyear C:\xampp\htdocs\ria\application\views\bankstatement.php 2
+ERROR - 2019-01-05 09:10:38 --> Severity: Warning --> Invalid argument supplied for foreach() C:\xampp\htdocs\ria\application\views\bankstatement.php 2
+ERROR - 2019-01-05 09:10:38 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 87
+ERROR - 2019-01-05 09:10:38 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 87
+ERROR - 2019-01-05 09:10:38 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 88
+ERROR - 2019-01-05 09:10:38 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 88
+ERROR - 2019-01-05 09:10:38 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 89
+ERROR - 2019-01-05 09:10:38 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 89
+ERROR - 2019-01-05 09:10:39 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 139
+ERROR - 2019-01-05 09:10:39 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 139
+ERROR - 2019-01-05 09:10:39 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 140
+ERROR - 2019-01-05 09:10:39 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 140
+ERROR - 2019-01-05 09:10:39 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 141
+ERROR - 2019-01-05 09:10:39 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 141
+ERROR - 2019-01-05 09:10:46 --> Severity: Notice --> Undefined variable: financialyear C:\xampp\htdocs\ria\application\views\banksettlement.php 4
+ERROR - 2019-01-05 09:10:46 --> Severity: Warning --> Invalid argument supplied for foreach() C:\xampp\htdocs\ria\application\views\banksettlement.php 4
+ERROR - 2019-01-05 09:10:46 --> Severity: Notice --> Undefined variable: t C:\xampp\htdocs\ria\application\views\banksettlement.php 278
+ERROR - 2019-01-05 09:10:46 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\banksettlement.php 278
+ERROR - 2019-01-05 09:10:46 --> Severity: Notice --> Undefined variable: t C:\xampp\htdocs\ria\application\views\banksettlement.php 278
+ERROR - 2019-01-05 09:10:46 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\banksettlement.php 278
+ERROR - 2019-01-05 09:10:46 --> Severity: Notice --> Undefined variable: rel C:\xampp\htdocs\ria\application\views\banksettlement.php 279
+ERROR - 2019-01-05 09:10:46 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\banksettlement.php 279
+ERROR - 2019-01-05 09:10:46 --> Severity: Notice --> Undefined variable: record C:\xampp\htdocs\ria\application\views\banksettlement.php 325
+ERROR - 2019-01-05 09:10:46 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\banksettlement.php 325
+ERROR - 2019-01-05 09:10:47 --> Severity: Notice --> Undefined variable: t C:\xampp\htdocs\ria\application\views\banksettlement.php 278
+ERROR - 2019-01-05 09:10:47 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\banksettlement.php 278
+ERROR - 2019-01-05 09:10:47 --> Severity: Notice --> Undefined variable: t C:\xampp\htdocs\ria\application\views\banksettlement.php 278
+ERROR - 2019-01-05 09:10:47 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\banksettlement.php 278
+ERROR - 2019-01-05 09:10:47 --> Severity: Notice --> Undefined variable: rel C:\xampp\htdocs\ria\application\views\banksettlement.php 279
+ERROR - 2019-01-05 09:10:47 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\banksettlement.php 279
+ERROR - 2019-01-05 09:10:47 --> Severity: Notice --> Undefined variable: t C:\xampp\htdocs\ria\application\views\banksettlement.php 278
+ERROR - 2019-01-05 09:10:47 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\banksettlement.php 278
+ERROR - 2019-01-05 09:10:47 --> Severity: Notice --> Undefined variable: t C:\xampp\htdocs\ria\application\views\banksettlement.php 278
+ERROR - 2019-01-05 09:10:47 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\banksettlement.php 278
+ERROR - 2019-01-05 09:10:47 --> Severity: Notice --> Undefined variable: rel C:\xampp\htdocs\ria\application\views\banksettlement.php 279
+ERROR - 2019-01-05 09:10:47 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\banksettlement.php 279
+ERROR - 2019-01-05 09:10:47 --> Severity: Notice --> Undefined variable: record C:\xampp\htdocs\ria\application\views\banksettlement.php 325
+ERROR - 2019-01-05 09:10:47 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\banksettlement.php 325
+ERROR - 2019-01-05 09:10:47 --> Severity: Notice --> Undefined variable: t C:\xampp\htdocs\ria\application\views\banksettlement.php 278
+ERROR - 2019-01-05 09:10:47 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\banksettlement.php 278
+ERROR - 2019-01-05 09:10:47 --> Severity: Notice --> Undefined variable: t C:\xampp\htdocs\ria\application\views\banksettlement.php 278
+ERROR - 2019-01-05 09:10:47 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\banksettlement.php 278
+ERROR - 2019-01-05 09:10:47 --> Severity: Notice --> Undefined variable: rel C:\xampp\htdocs\ria\application\views\banksettlement.php 279
+ERROR - 2019-01-05 09:10:47 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\banksettlement.php 279
+ERROR - 2019-01-05 09:11:23 --> Severity: Notice --> Undefined variable: financialyear C:\xampp\htdocs\ria\application\views\banksettlement.php 4
+ERROR - 2019-01-05 09:11:23 --> Severity: Warning --> Invalid argument supplied for foreach() C:\xampp\htdocs\ria\application\views\banksettlement.php 4
+ERROR - 2019-01-05 09:11:23 --> Severity: Notice --> Undefined variable: t C:\xampp\htdocs\ria\application\views\banksettlement.php 278
+ERROR - 2019-01-05 09:11:23 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\banksettlement.php 278
+ERROR - 2019-01-05 09:11:23 --> Severity: Notice --> Undefined variable: t C:\xampp\htdocs\ria\application\views\banksettlement.php 278
+ERROR - 2019-01-05 09:11:23 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\banksettlement.php 278
+ERROR - 2019-01-05 09:11:23 --> Severity: Notice --> Undefined variable: rel C:\xampp\htdocs\ria\application\views\banksettlement.php 279
+ERROR - 2019-01-05 09:11:23 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\banksettlement.php 279
+ERROR - 2019-01-05 09:11:23 --> Severity: Notice --> Undefined variable: record C:\xampp\htdocs\ria\application\views\banksettlement.php 325
+ERROR - 2019-01-05 09:11:23 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\banksettlement.php 325
+ERROR - 2019-01-05 09:11:23 --> Severity: Notice --> Undefined variable: t C:\xampp\htdocs\ria\application\views\banksettlement.php 278
+ERROR - 2019-01-05 09:11:23 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\banksettlement.php 278
+ERROR - 2019-01-05 09:11:23 --> Severity: Notice --> Undefined variable: t C:\xampp\htdocs\ria\application\views\banksettlement.php 278
+ERROR - 2019-01-05 09:11:23 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\banksettlement.php 278
+ERROR - 2019-01-05 09:11:23 --> Severity: Notice --> Undefined variable: rel C:\xampp\htdocs\ria\application\views\banksettlement.php 279
+ERROR - 2019-01-05 09:11:23 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\banksettlement.php 279
+ERROR - 2019-01-05 09:11:23 --> Severity: Notice --> Undefined variable: t C:\xampp\htdocs\ria\application\views\banksettlement.php 278
+ERROR - 2019-01-05 09:11:23 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\banksettlement.php 278
+ERROR - 2019-01-05 09:11:23 --> Severity: Notice --> Undefined variable: t C:\xampp\htdocs\ria\application\views\banksettlement.php 278
+ERROR - 2019-01-05 09:11:24 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\banksettlement.php 278
+ERROR - 2019-01-05 09:11:24 --> Severity: Notice --> Undefined variable: rel C:\xampp\htdocs\ria\application\views\banksettlement.php 279
+ERROR - 2019-01-05 09:11:24 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\banksettlement.php 279
+ERROR - 2019-01-05 09:11:24 --> Severity: Notice --> Undefined variable: record C:\xampp\htdocs\ria\application\views\banksettlement.php 325
+ERROR - 2019-01-05 09:11:24 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\banksettlement.php 325
+ERROR - 2019-01-05 09:11:24 --> Severity: Notice --> Undefined variable: t C:\xampp\htdocs\ria\application\views\banksettlement.php 278
+ERROR - 2019-01-05 09:11:24 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\banksettlement.php 278
+ERROR - 2019-01-05 09:11:24 --> Severity: Notice --> Undefined variable: t C:\xampp\htdocs\ria\application\views\banksettlement.php 278
+ERROR - 2019-01-05 09:11:24 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\banksettlement.php 278
+ERROR - 2019-01-05 09:11:24 --> Severity: Notice --> Undefined variable: rel C:\xampp\htdocs\ria\application\views\banksettlement.php 279
+ERROR - 2019-01-05 09:11:24 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\banksettlement.php 279
+ERROR - 2019-01-05 10:22:37 --> Severity: Notice --> Undefined variable: fdate C:\xampp\htdocs\ria\application\controllers\cashbook.php 1737
+ERROR - 2019-01-05 10:22:38 --> Severity: Notice --> Undefined variable: tdate C:\xampp\htdocs\ria\application\controllers\cashbook.php 1737
+ERROR - 2019-01-05 10:22:38 --> Severity: Notice --> Undefined variable: fa C:\xampp\htdocs\ria\application\controllers\cashbook.php 1737
+ERROR - 2019-01-05 10:22:38 --> Severity: Notice --> Undefined variable: aa C:\xampp\htdocs\ria\application\controllers\cashbook.php 1737
+ERROR - 2019-01-05 10:22:42 --> Severity: Notice --> Undefined variable: financialyear C:\xampp\htdocs\ria\application\views\bankstatement.php 2
+ERROR - 2019-01-05 10:22:42 --> Severity: Warning --> Invalid argument supplied for foreach() C:\xampp\htdocs\ria\application\views\bankstatement.php 2
+ERROR - 2019-01-05 10:22:42 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 87
+ERROR - 2019-01-05 10:22:42 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 87
+ERROR - 2019-01-05 10:22:42 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 88
+ERROR - 2019-01-05 10:22:42 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 88
+ERROR - 2019-01-05 10:22:42 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 89
+ERROR - 2019-01-05 10:22:42 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 89
+ERROR - 2019-01-05 10:22:42 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 139
+ERROR - 2019-01-05 10:22:42 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 139
+ERROR - 2019-01-05 10:22:42 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 140
+ERROR - 2019-01-05 10:22:42 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 140
+ERROR - 2019-01-05 10:22:42 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 141
+ERROR - 2019-01-05 10:22:42 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 141
+ERROR - 2019-01-05 10:23:05 --> Severity: Notice --> Undefined variable: financialyear C:\xampp\htdocs\ria\application\views\bankdebit.php 2
+ERROR - 2019-01-05 10:23:05 --> Severity: Warning --> Invalid argument supplied for foreach() C:\xampp\htdocs\ria\application\views\bankdebit.php 2
+ERROR - 2019-01-05 10:23:20 --> Severity: Notice --> Undefined variable: financialyear C:\xampp\htdocs\ria\application\views\bankdebit.php 2
+ERROR - 2019-01-05 10:23:20 --> Severity: Warning --> Invalid argument supplied for foreach() C:\xampp\htdocs\ria\application\views\bankdebit.php 2
+ERROR - 2019-01-05 10:23:20 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankdebit.php 167
+ERROR - 2019-01-05 10:23:20 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\ria\application\views\bankdebit.php 169
+ERROR - 2019-01-05 10:23:20 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankdebit.php 167
+ERROR - 2019-01-05 10:23:20 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\ria\application\views\bankdebit.php 169
+ERROR - 2019-01-05 10:23:20 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankdebit.php 167
+ERROR - 2019-01-05 10:23:20 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\ria\application\views\bankdebit.php 169
+ERROR - 2019-01-05 10:23:20 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankdebit.php 167
+ERROR - 2019-01-05 10:23:20 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\ria\application\views\bankdebit.php 169
+ERROR - 2019-01-05 10:23:20 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankdebit.php 167
+ERROR - 2019-01-05 10:23:20 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\ria\application\views\bankdebit.php 169
+ERROR - 2019-01-05 10:23:20 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankdebit.php 167
+ERROR - 2019-01-05 10:23:20 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\ria\application\views\bankdebit.php 169
+ERROR - 2019-01-05 10:23:20 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankdebit.php 167
+ERROR - 2019-01-05 10:23:21 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\ria\application\views\bankdebit.php 169
+ERROR - 2019-01-05 10:23:21 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankdebit.php 167
+ERROR - 2019-01-05 10:23:21 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\ria\application\views\bankdebit.php 169
+ERROR - 2019-01-05 10:23:21 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankdebit.php 167
+ERROR - 2019-01-05 10:23:21 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\ria\application\views\bankdebit.php 169
+ERROR - 2019-01-05 10:23:21 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankdebit.php 167
+ERROR - 2019-01-05 10:23:21 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\ria\application\views\bankdebit.php 169
+ERROR - 2019-01-05 10:23:21 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankdebit.php 167
+ERROR - 2019-01-05 10:23:21 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\ria\application\views\bankdebit.php 169
+ERROR - 2019-01-05 10:23:21 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankdebit.php 167
+ERROR - 2019-01-05 10:23:21 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\ria\application\views\bankdebit.php 169
+ERROR - 2019-01-05 10:23:21 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankdebit.php 167
+ERROR - 2019-01-05 10:23:21 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\ria\application\views\bankdebit.php 169
+ERROR - 2019-01-05 10:23:21 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankdebit.php 167
+ERROR - 2019-01-05 10:23:21 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\ria\application\views\bankdebit.php 169
+ERROR - 2019-01-05 10:23:21 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankdebit.php 167
+ERROR - 2019-01-05 10:23:21 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\ria\application\views\bankdebit.php 169
+ERROR - 2019-01-05 10:23:21 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankdebit.php 167
+ERROR - 2019-01-05 10:23:21 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\ria\application\views\bankdebit.php 169
+ERROR - 2019-01-05 10:23:21 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankdebit.php 167
+ERROR - 2019-01-05 10:23:21 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\ria\application\views\bankdebit.php 169
+ERROR - 2019-01-05 10:23:21 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankdebit.php 167
+ERROR - 2019-01-05 10:23:21 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\ria\application\views\bankdebit.php 169
+ERROR - 2019-01-05 10:23:22 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankdebit.php 167
+ERROR - 2019-01-05 10:23:22 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\ria\application\views\bankdebit.php 169
+ERROR - 2019-01-05 10:23:22 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankdebit.php 167
+ERROR - 2019-01-05 10:23:22 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\ria\application\views\bankdebit.php 169
+ERROR - 2019-01-05 10:23:22 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankdebit.php 167
+ERROR - 2019-01-05 10:23:22 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\ria\application\views\bankdebit.php 169
+ERROR - 2019-01-05 10:23:22 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankdebit.php 167
+ERROR - 2019-01-05 10:23:22 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\ria\application\views\bankdebit.php 169
+ERROR - 2019-01-05 10:23:22 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankdebit.php 167
+ERROR - 2019-01-05 10:23:22 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\ria\application\views\bankdebit.php 169
+ERROR - 2019-01-05 10:23:22 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankdebit.php 167
+ERROR - 2019-01-05 10:23:22 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\ria\application\views\bankdebit.php 169
+ERROR - 2019-01-05 10:23:22 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankdebit.php 167
+ERROR - 2019-01-05 10:23:22 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\ria\application\views\bankdebit.php 169
+ERROR - 2019-01-05 10:23:22 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankdebit.php 167
+ERROR - 2019-01-05 10:23:22 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\ria\application\views\bankdebit.php 169
+ERROR - 2019-01-05 10:23:22 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankdebit.php 167
+ERROR - 2019-01-05 10:23:22 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\ria\application\views\bankdebit.php 169
+ERROR - 2019-01-05 10:24:12 --> Severity: Notice --> Undefined variable: balancetocleared C:\xampp\htdocs\ria\application\controllers\cashbook.php 1931
+ERROR - 2019-01-05 10:24:12 --> Severity: Notice --> Undefined variable: balancetocleared C:\xampp\htdocs\ria\application\controllers\cashbook.php 1931
+ERROR - 2019-01-05 10:24:12 --> Severity: Notice --> Undefined variable: clearedblnce C:\xampp\htdocs\ria\application\controllers\cashbook.php 1940
+ERROR - 2019-01-05 10:24:12 --> Severity: Notice --> Undefined variable: clearedblnce C:\xampp\htdocs\ria\application\controllers\cashbook.php 1940
+ERROR - 2019-01-05 10:24:12 --> Severity: Notice --> Undefined variable: balancetocleared C:\xampp\htdocs\ria\application\controllers\cashbook.php 1940
+ERROR - 2019-01-05 10:24:12 --> Severity: Notice --> Undefined variable: balancetocleared C:\xampp\htdocs\ria\application\controllers\cashbook.php 1940
+ERROR - 2019-01-05 10:24:13 --> Severity: Notice --> Undefined variable: data C:\xampp\htdocs\ria\application\controllers\cashbook.php 2006
+ERROR - 2019-01-05 10:24:14 --> Severity: Notice --> Undefined variable: data C:\xampp\htdocs\ria\application\controllers\cashbook.php 2006
+ERROR - 2019-01-05 10:24:14 --> Severity: Notice --> Undefined variable: data C:\xampp\htdocs\ria\application\controllers\cashbook.php 2006
+ERROR - 2019-01-05 10:24:15 --> Severity: Notice --> Undefined variable: financialyear C:\xampp\htdocs\ria\application\views\bankstatement.php 2
+ERROR - 2019-01-05 10:24:15 --> Severity: Warning --> Invalid argument supplied for foreach() C:\xampp\htdocs\ria\application\views\bankstatement.php 2
+ERROR - 2019-01-05 10:24:15 --> Severity: Notice --> Undefined variable: financialyear C:\xampp\htdocs\ria\application\views\bankstatement.php 2
+ERROR - 2019-01-05 10:24:15 --> Severity: Notice --> Undefined variable: bankreport C:\xampp\htdocs\ria\application\views\bankstatement.php 8
+ERROR - 2019-01-05 10:24:15 --> Severity: Warning --> Invalid argument supplied for foreach() C:\xampp\htdocs\ria\application\views\bankstatement.php 2
+ERROR - 2019-01-05 10:24:15 --> Severity: Notice --> Undefined variable: financialyear C:\xampp\htdocs\ria\application\views\bankstatement.php 2
+ERROR - 2019-01-05 10:24:15 --> Severity: Notice --> Undefined variable: bankreport C:\xampp\htdocs\ria\application\views\bankstatement.php 8
+ERROR - 2019-01-05 10:24:15 --> Severity: Warning --> Invalid argument supplied for foreach() C:\xampp\htdocs\ria\application\views\bankstatement.php 8
+ERROR - 2019-01-05 10:24:15 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 87
+ERROR - 2019-01-05 10:24:15 --> Severity: Warning --> Invalid argument supplied for foreach() C:\xampp\htdocs\ria\application\views\bankstatement.php 8
+ERROR - 2019-01-05 10:24:15 --> Severity: Warning --> Invalid argument supplied for foreach() C:\xampp\htdocs\ria\application\views\bankstatement.php 2
+ERROR - 2019-01-05 10:24:15 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 87
+ERROR - 2019-01-05 10:24:15 --> Severity: Notice --> Undefined variable: bankreport C:\xampp\htdocs\ria\application\views\bankstatement.php 8
+ERROR - 2019-01-05 10:24:15 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 87
+ERROR - 2019-01-05 10:24:15 --> Severity: Warning --> Invalid argument supplied for foreach() C:\xampp\htdocs\ria\application\views\bankstatement.php 8
+ERROR - 2019-01-05 10:24:15 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 87
+ERROR - 2019-01-05 10:24:15 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 88
+ERROR - 2019-01-05 10:24:15 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 88
+ERROR - 2019-01-05 10:24:15 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 88
+ERROR - 2019-01-05 10:24:15 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 87
+ERROR - 2019-01-05 10:24:15 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 89
+ERROR - 2019-01-05 10:24:15 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 88
+ERROR - 2019-01-05 10:24:15 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 87
+ERROR - 2019-01-05 10:24:15 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 89
+ERROR - 2019-01-05 10:24:15 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 89
+ERROR - 2019-01-05 10:24:15 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 88
+ERROR - 2019-01-05 10:24:15 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 89
+ERROR - 2019-01-05 10:24:15 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 88
+ERROR - 2019-01-05 10:24:15 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 139
+ERROR - 2019-01-05 10:24:15 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 139
+ERROR - 2019-01-05 10:24:15 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 89
+ERROR - 2019-01-05 10:24:15 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 139
+ERROR - 2019-01-05 10:24:15 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 139
+ERROR - 2019-01-05 10:24:15 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 140
+ERROR - 2019-01-05 10:24:15 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 89
+ERROR - 2019-01-05 10:24:15 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 140
+ERROR - 2019-01-05 10:24:15 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 139
+ERROR - 2019-01-05 10:24:15 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 140
+ERROR - 2019-01-05 10:24:15 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 140
+ERROR - 2019-01-05 10:24:15 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 139
+ERROR - 2019-01-05 10:24:15 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 141
+ERROR - 2019-01-05 10:24:15 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 141
+ERROR - 2019-01-05 10:24:15 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 141
+ERROR - 2019-01-05 10:24:15 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 140
+ERROR - 2019-01-05 10:24:15 --> Severity: Notice --> Undefined variable: finyear C:\xampp\htdocs\ria\application\views\bankstatement.php 199
+ERROR - 2019-01-05 10:24:15 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 141
+ERROR - 2019-01-05 10:24:15 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 140
+ERROR - 2019-01-05 10:24:15 --> Severity: Warning --> Invalid argument supplied for foreach() C:\xampp\htdocs\ria\application\views\bankstatement.php 199
+ERROR - 2019-01-05 10:24:15 --> Severity: Notice --> Undefined variable: finyear C:\xampp\htdocs\ria\application\views\bankstatement.php 199
+ERROR - 2019-01-05 10:24:15 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 141
+ERROR - 2019-01-05 10:24:15 --> Severity: Warning --> Invalid argument supplied for foreach() C:\xampp\htdocs\ria\application\views\bankstatement.php 199
+ERROR - 2019-01-05 10:24:15 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 141
+ERROR - 2019-01-05 10:24:15 --> Severity: Notice --> Undefined variable: Bankname C:\xampp\htdocs\ria\application\views\bankstatement.php 237
+ERROR - 2019-01-05 10:24:15 --> Severity: Notice --> Undefined variable: Bankname C:\xampp\htdocs\ria\application\views\bankstatement.php 237
+ERROR - 2019-01-05 10:24:15 --> Severity: Notice --> Undefined variable: finyear C:\xampp\htdocs\ria\application\views\bankstatement.php 199
+ERROR - 2019-01-05 10:24:16 --> Severity: Warning --> Invalid argument supplied for foreach() C:\xampp\htdocs\ria\application\views\bankstatement.php 199
+ERROR - 2019-01-05 10:24:16 --> Severity: Notice --> Undefined variable: Bankname C:\xampp\htdocs\ria\application\views\bankstatement.php 237
+ERROR - 2019-01-05 10:24:18 --> Severity: Notice --> Undefined variable: fdate C:\xampp\htdocs\ria\application\controllers\cashbook.php 1737
+ERROR - 2019-01-05 10:24:18 --> Severity: Notice --> Undefined variable: fdate C:\xampp\htdocs\ria\application\controllers\cashbook.php 1737
+ERROR - 2019-01-05 10:24:18 --> Severity: Notice --> Undefined variable: fdate C:\xampp\htdocs\ria\application\controllers\cashbook.php 1737
+ERROR - 2019-01-05 10:24:18 --> Severity: Notice --> Undefined variable: tdate C:\xampp\htdocs\ria\application\controllers\cashbook.php 1737
+ERROR - 2019-01-05 10:24:18 --> Severity: Notice --> Undefined variable: tdate C:\xampp\htdocs\ria\application\controllers\cashbook.php 1737
+ERROR - 2019-01-05 10:24:18 --> Severity: Notice --> Undefined variable: tdate C:\xampp\htdocs\ria\application\controllers\cashbook.php 1737
+ERROR - 2019-01-05 10:24:18 --> Severity: Notice --> Undefined variable: fa C:\xampp\htdocs\ria\application\controllers\cashbook.php 1737
+ERROR - 2019-01-05 10:24:18 --> Severity: Notice --> Undefined variable: fa C:\xampp\htdocs\ria\application\controllers\cashbook.php 1737
+ERROR - 2019-01-05 10:24:18 --> Severity: Notice --> Undefined variable: fa C:\xampp\htdocs\ria\application\controllers\cashbook.php 1737
+ERROR - 2019-01-05 10:24:18 --> Severity: Notice --> Undefined variable: aa C:\xampp\htdocs\ria\application\controllers\cashbook.php 1737
+ERROR - 2019-01-05 10:24:18 --> Severity: Notice --> Undefined variable: aa C:\xampp\htdocs\ria\application\controllers\cashbook.php 1737
+ERROR - 2019-01-05 10:24:18 --> Severity: Notice --> Undefined variable: aa C:\xampp\htdocs\ria\application\controllers\cashbook.php 1737
+ERROR - 2019-01-05 10:24:20 --> Severity: Notice --> Undefined variable: financialyear C:\xampp\htdocs\ria\application\views\bankstatement.php 2
+ERROR - 2019-01-05 10:24:20 --> Severity: Warning --> Invalid argument supplied for foreach() C:\xampp\htdocs\ria\application\views\bankstatement.php 2
+ERROR - 2019-01-05 10:24:20 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 87
+ERROR - 2019-01-05 10:24:20 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 87
+ERROR - 2019-01-05 10:24:20 --> Severity: Notice --> Undefined variable: financialyear C:\xampp\htdocs\ria\application\views\bankstatement.php 2
+ERROR - 2019-01-05 10:24:20 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 88
+ERROR - 2019-01-05 10:24:20 --> Severity: Warning --> Invalid argument supplied for foreach() C:\xampp\htdocs\ria\application\views\bankstatement.php 2
+ERROR - 2019-01-05 10:24:20 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 88
+ERROR - 2019-01-05 10:24:20 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 87
+ERROR - 2019-01-05 10:24:20 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 89
+ERROR - 2019-01-05 10:24:20 --> Severity: Notice --> Undefined variable: financialyear C:\xampp\htdocs\ria\application\views\bankstatement.php 2
+ERROR - 2019-01-05 10:24:20 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 89
+ERROR - 2019-01-05 10:24:20 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 87
+ERROR - 2019-01-05 10:24:20 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 139
+ERROR - 2019-01-05 10:24:20 --> Severity: Warning --> Invalid argument supplied for foreach() C:\xampp\htdocs\ria\application\views\bankstatement.php 2
+ERROR - 2019-01-05 10:24:20 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 88
+ERROR - 2019-01-05 10:24:20 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 88
+ERROR - 2019-01-05 10:24:20 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 87
+ERROR - 2019-01-05 10:24:20 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 139
+ERROR - 2019-01-05 10:24:20 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 89
+ERROR - 2019-01-05 10:24:20 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 87
+ERROR - 2019-01-05 10:24:21 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 140
+ERROR - 2019-01-05 10:24:21 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 88
+ERROR - 2019-01-05 10:24:21 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 89
+ERROR - 2019-01-05 10:24:21 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 88
+ERROR - 2019-01-05 10:24:21 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 140
+ERROR - 2019-01-05 10:24:21 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 139
+ERROR - 2019-01-05 10:24:21 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 141
+ERROR - 2019-01-05 10:24:21 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 139
+ERROR - 2019-01-05 10:24:21 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 89
+ERROR - 2019-01-05 10:24:21 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 140
+ERROR - 2019-01-05 10:24:21 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 141
+ERROR - 2019-01-05 10:24:21 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 89
+ERROR - 2019-01-05 10:24:21 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 140
+ERROR - 2019-01-05 10:24:21 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 139
+ERROR - 2019-01-05 10:24:21 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 141
+ERROR - 2019-01-05 10:24:21 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 139
+ERROR - 2019-01-05 10:24:21 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 141
+ERROR - 2019-01-05 10:24:21 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 140
+ERROR - 2019-01-05 10:24:21 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 140
+ERROR - 2019-01-05 10:24:21 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 141
+ERROR - 2019-01-05 10:24:22 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 141
+ERROR - 2019-01-05 10:24:37 --> Severity: Notice --> Array to string conversion C:\xampp\htdocs\ria\application\controllers\cashbook.php 1812
+ERROR - 2019-01-05 10:24:37 --> Severity: Notice --> Array to string conversion C:\xampp\htdocs\ria\application\controllers\cashbook.php 1812
+ERROR - 2019-01-05 10:28:29 --> Severity: Notice --> Array to string conversion C:\xampp\htdocs\ria\application\controllers\cashbook.php 1812
+ERROR - 2019-01-05 10:34:14 --> Severity: Notice --> Undefined variable: financialyear C:\xampp\htdocs\ria\application\views\banksettlement.php 4
+ERROR - 2019-01-05 10:34:14 --> Severity: Warning --> Invalid argument supplied for foreach() C:\xampp\htdocs\ria\application\views\banksettlement.php 4
+ERROR - 2019-01-05 10:34:14 --> Severity: Notice --> Undefined variable: t C:\xampp\htdocs\ria\application\views\banksettlement.php 278
+ERROR - 2019-01-05 10:34:14 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\banksettlement.php 278
+ERROR - 2019-01-05 10:34:14 --> Severity: Notice --> Undefined variable: t C:\xampp\htdocs\ria\application\views\banksettlement.php 278
+ERROR - 2019-01-05 10:34:14 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\banksettlement.php 278
+ERROR - 2019-01-05 10:34:14 --> Severity: Notice --> Undefined variable: rel C:\xampp\htdocs\ria\application\views\banksettlement.php 279
+ERROR - 2019-01-05 10:34:14 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\banksettlement.php 279
+ERROR - 2019-01-05 10:34:14 --> Severity: Notice --> Undefined variable: t C:\xampp\htdocs\ria\application\views\banksettlement.php 278
+ERROR - 2019-01-05 10:34:14 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\banksettlement.php 278
+ERROR - 2019-01-05 10:34:14 --> Severity: Notice --> Undefined variable: t C:\xampp\htdocs\ria\application\views\banksettlement.php 278
+ERROR - 2019-01-05 10:34:14 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\banksettlement.php 278
+ERROR - 2019-01-05 10:34:14 --> Severity: Notice --> Undefined variable: rel C:\xampp\htdocs\ria\application\views\banksettlement.php 279
+ERROR - 2019-01-05 10:34:14 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\banksettlement.php 279
+ERROR - 2019-01-05 10:34:14 --> Severity: Notice --> Undefined variable: record C:\xampp\htdocs\ria\application\views\banksettlement.php 325
+ERROR - 2019-01-05 10:34:14 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\banksettlement.php 325
+ERROR - 2019-01-05 10:34:14 --> Severity: Notice --> Undefined variable: t C:\xampp\htdocs\ria\application\views\banksettlement.php 278
+ERROR - 2019-01-05 10:34:14 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\banksettlement.php 278
+ERROR - 2019-01-05 10:34:14 --> Severity: Notice --> Undefined variable: t C:\xampp\htdocs\ria\application\views\banksettlement.php 278
+ERROR - 2019-01-05 10:34:14 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\banksettlement.php 278
+ERROR - 2019-01-05 10:34:14 --> Severity: Notice --> Undefined variable: rel C:\xampp\htdocs\ria\application\views\banksettlement.php 279
+ERROR - 2019-01-05 10:34:14 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\banksettlement.php 279
+ERROR - 2019-01-05 10:34:14 --> Severity: Notice --> Undefined variable: record C:\xampp\htdocs\ria\application\views\banksettlement.php 325
+ERROR - 2019-01-05 10:34:15 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\banksettlement.php 325
+ERROR - 2019-01-05 10:34:49 --> Severity: Notice --> Undefined variable: fdate C:\xampp\htdocs\ria\application\controllers\cashbook.php 1737
+ERROR - 2019-01-05 10:34:49 --> Severity: Notice --> Undefined variable: tdate C:\xampp\htdocs\ria\application\controllers\cashbook.php 1737
+ERROR - 2019-01-05 10:34:50 --> Severity: Notice --> Undefined variable: fa C:\xampp\htdocs\ria\application\controllers\cashbook.php 1737
+ERROR - 2019-01-05 10:34:50 --> Severity: Notice --> Undefined variable: aa C:\xampp\htdocs\ria\application\controllers\cashbook.php 1737
+ERROR - 2019-01-05 10:34:53 --> Severity: Notice --> Undefined variable: financialyear C:\xampp\htdocs\ria\application\views\bankstatement.php 2
+ERROR - 2019-01-05 10:34:53 --> Severity: Warning --> Invalid argument supplied for foreach() C:\xampp\htdocs\ria\application\views\bankstatement.php 2
+ERROR - 2019-01-05 10:34:53 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 87
+ERROR - 2019-01-05 10:34:53 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 87
+ERROR - 2019-01-05 10:34:53 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 88
+ERROR - 2019-01-05 10:34:53 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 88
+ERROR - 2019-01-05 10:34:53 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 89
+ERROR - 2019-01-05 10:34:53 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 89
+ERROR - 2019-01-05 10:34:53 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 139
+ERROR - 2019-01-05 10:34:53 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 139
+ERROR - 2019-01-05 10:34:53 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 140
+ERROR - 2019-01-05 10:34:53 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 140
+ERROR - 2019-01-05 10:34:53 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 141
+ERROR - 2019-01-05 10:34:53 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 141
+ERROR - 2019-01-05 10:35:15 --> Severity: Notice --> Undefined variable: financialyear C:\xampp\htdocs\ria\application\views\bankdebit.php 2
+ERROR - 2019-01-05 10:35:15 --> Severity: Warning --> Invalid argument supplied for foreach() C:\xampp\htdocs\ria\application\views\bankdebit.php 2
+ERROR - 2019-01-05 10:35:36 --> Severity: Notice --> Undefined variable: financialyear C:\xampp\htdocs\ria\application\views\bankdebit.php 2
+ERROR - 2019-01-05 10:35:36 --> Severity: Warning --> Invalid argument supplied for foreach() C:\xampp\htdocs\ria\application\views\bankdebit.php 2
+ERROR - 2019-01-05 10:35:36 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankdebit.php 167
+ERROR - 2019-01-05 10:35:36 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\ria\application\views\bankdebit.php 169
+ERROR - 2019-01-05 10:35:36 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankdebit.php 167
+ERROR - 2019-01-05 10:35:36 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\ria\application\views\bankdebit.php 169
+ERROR - 2019-01-05 10:35:36 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankdebit.php 167
+ERROR - 2019-01-05 10:35:36 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\ria\application\views\bankdebit.php 169
+ERROR - 2019-01-05 10:35:36 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankdebit.php 167
+ERROR - 2019-01-05 10:35:36 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\ria\application\views\bankdebit.php 169
+ERROR - 2019-01-05 10:35:36 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankdebit.php 167
+ERROR - 2019-01-05 10:35:36 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\ria\application\views\bankdebit.php 169
+ERROR - 2019-01-05 10:35:36 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankdebit.php 167
+ERROR - 2019-01-05 10:35:36 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\ria\application\views\bankdebit.php 169
+ERROR - 2019-01-05 10:35:36 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankdebit.php 167
+ERROR - 2019-01-05 10:35:36 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\ria\application\views\bankdebit.php 169
+ERROR - 2019-01-05 10:35:36 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankdebit.php 167
+ERROR - 2019-01-05 10:35:36 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\ria\application\views\bankdebit.php 169
+ERROR - 2019-01-05 10:35:36 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankdebit.php 167
+ERROR - 2019-01-05 10:35:36 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\ria\application\views\bankdebit.php 169
+ERROR - 2019-01-05 10:35:36 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankdebit.php 167
+ERROR - 2019-01-05 10:35:37 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\ria\application\views\bankdebit.php 169
+ERROR - 2019-01-05 10:35:37 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankdebit.php 167
+ERROR - 2019-01-05 10:35:37 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\ria\application\views\bankdebit.php 169
+ERROR - 2019-01-05 10:35:37 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankdebit.php 167
+ERROR - 2019-01-05 10:35:37 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\ria\application\views\bankdebit.php 169
+ERROR - 2019-01-05 10:35:37 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankdebit.php 167
+ERROR - 2019-01-05 10:35:37 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\ria\application\views\bankdebit.php 169
+ERROR - 2019-01-05 10:35:37 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankdebit.php 167
+ERROR - 2019-01-05 10:35:37 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\ria\application\views\bankdebit.php 169
+ERROR - 2019-01-05 10:35:37 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankdebit.php 167
+ERROR - 2019-01-05 10:35:37 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\ria\application\views\bankdebit.php 169
+ERROR - 2019-01-05 10:35:37 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankdebit.php 167
+ERROR - 2019-01-05 10:35:37 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\ria\application\views\bankdebit.php 169
+ERROR - 2019-01-05 10:35:37 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankdebit.php 167
+ERROR - 2019-01-05 10:35:37 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\ria\application\views\bankdebit.php 169
+ERROR - 2019-01-05 10:35:37 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankdebit.php 167
+ERROR - 2019-01-05 10:35:37 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\ria\application\views\bankdebit.php 169
+ERROR - 2019-01-05 10:35:37 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankdebit.php 167
+ERROR - 2019-01-05 10:35:37 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\ria\application\views\bankdebit.php 169
+ERROR - 2019-01-05 10:35:37 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankdebit.php 167
+ERROR - 2019-01-05 10:35:37 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\ria\application\views\bankdebit.php 169
+ERROR - 2019-01-05 10:35:37 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankdebit.php 167
+ERROR - 2019-01-05 10:35:38 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\ria\application\views\bankdebit.php 169
+ERROR - 2019-01-05 10:35:38 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankdebit.php 167
+ERROR - 2019-01-05 10:35:38 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\ria\application\views\bankdebit.php 169
+ERROR - 2019-01-05 10:35:38 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankdebit.php 167
+ERROR - 2019-01-05 10:35:38 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\ria\application\views\bankdebit.php 169
+ERROR - 2019-01-05 10:35:38 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankdebit.php 167
+ERROR - 2019-01-05 10:35:38 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\ria\application\views\bankdebit.php 169
+ERROR - 2019-01-05 10:35:38 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankdebit.php 167
+ERROR - 2019-01-05 10:35:38 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\ria\application\views\bankdebit.php 169
+ERROR - 2019-01-05 10:35:38 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankdebit.php 167
+ERROR - 2019-01-05 10:35:38 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\ria\application\views\bankdebit.php 169
+ERROR - 2019-01-05 10:35:38 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankdebit.php 167
+ERROR - 2019-01-05 10:35:38 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\ria\application\views\bankdebit.php 169
+ERROR - 2019-01-05 10:36:20 --> Severity: Notice --> Undefined variable: balancetocleared C:\xampp\htdocs\ria\application\controllers\cashbook.php 1932
+ERROR - 2019-01-05 10:36:20 --> Severity: Notice --> Undefined variable: balancetocleared C:\xampp\htdocs\ria\application\controllers\cashbook.php 1932
+ERROR - 2019-01-05 10:36:20 --> Severity: Notice --> Undefined variable: clearedblnce C:\xampp\htdocs\ria\application\controllers\cashbook.php 1941
+ERROR - 2019-01-05 10:36:20 --> Severity: Notice --> Undefined variable: clearedblnce C:\xampp\htdocs\ria\application\controllers\cashbook.php 1941
+ERROR - 2019-01-05 10:36:20 --> Severity: Notice --> Undefined variable: balancetocleared C:\xampp\htdocs\ria\application\controllers\cashbook.php 1941
+ERROR - 2019-01-05 10:36:20 --> Severity: Notice --> Undefined variable: balancetocleared C:\xampp\htdocs\ria\application\controllers\cashbook.php 1941
+ERROR - 2019-01-05 10:36:22 --> Severity: Notice --> Undefined variable: data C:\xampp\htdocs\ria\application\controllers\cashbook.php 2007
+ERROR - 2019-01-05 10:36:22 --> Severity: Notice --> Undefined variable: data C:\xampp\htdocs\ria\application\controllers\cashbook.php 2007
+ERROR - 2019-01-05 10:36:22 --> Severity: Notice --> Undefined variable: data C:\xampp\htdocs\ria\application\controllers\cashbook.php 2007
+ERROR - 2019-01-05 10:36:23 --> Severity: Notice --> Undefined variable: financialyear C:\xampp\htdocs\ria\application\views\bankstatement.php 2
+ERROR - 2019-01-05 10:36:23 --> Severity: Notice --> Undefined variable: financialyear C:\xampp\htdocs\ria\application\views\bankstatement.php 2
+ERROR - 2019-01-05 10:36:23 --> Severity: Notice --> Undefined variable: financialyear C:\xampp\htdocs\ria\application\views\bankstatement.php 2
+ERROR - 2019-01-05 10:36:23 --> Severity: Warning --> Invalid argument supplied for foreach() C:\xampp\htdocs\ria\application\views\bankstatement.php 2
+ERROR - 2019-01-05 10:36:23 --> Severity: Warning --> Invalid argument supplied for foreach() C:\xampp\htdocs\ria\application\views\bankstatement.php 2
+ERROR - 2019-01-05 10:36:23 --> Severity: Warning --> Invalid argument supplied for foreach() C:\xampp\htdocs\ria\application\views\bankstatement.php 2
+ERROR - 2019-01-05 10:36:23 --> Severity: Notice --> Undefined variable: bankreport C:\xampp\htdocs\ria\application\views\bankstatement.php 8
+ERROR - 2019-01-05 10:36:23 --> Severity: Notice --> Undefined variable: bankreport C:\xampp\htdocs\ria\application\views\bankstatement.php 8
+ERROR - 2019-01-05 10:36:23 --> Severity: Warning --> Invalid argument supplied for foreach() C:\xampp\htdocs\ria\application\views\bankstatement.php 8
+ERROR - 2019-01-05 10:36:23 --> Severity: Notice --> Undefined variable: bankreport C:\xampp\htdocs\ria\application\views\bankstatement.php 8
+ERROR - 2019-01-05 10:36:23 --> Severity: Warning --> Invalid argument supplied for foreach() C:\xampp\htdocs\ria\application\views\bankstatement.php 8
+ERROR - 2019-01-05 10:36:23 --> Severity: Warning --> Invalid argument supplied for foreach() C:\xampp\htdocs\ria\application\views\bankstatement.php 8
+ERROR - 2019-01-05 10:36:23 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 87
+ERROR - 2019-01-05 10:36:23 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 87
+ERROR - 2019-01-05 10:36:23 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 87
+ERROR - 2019-01-05 10:36:23 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 87
+ERROR - 2019-01-05 10:36:23 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 87
+ERROR - 2019-01-05 10:36:23 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 88
+ERROR - 2019-01-05 10:36:23 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 87
+ERROR - 2019-01-05 10:36:23 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 88
+ERROR - 2019-01-05 10:36:23 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 88
+ERROR - 2019-01-05 10:36:23 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 88
+ERROR - 2019-01-05 10:36:23 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 88
+ERROR - 2019-01-05 10:36:23 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 89
+ERROR - 2019-01-05 10:36:23 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 88
+ERROR - 2019-01-05 10:36:23 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 89
+ERROR - 2019-01-05 10:36:23 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 89
+ERROR - 2019-01-05 10:36:23 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 89
+ERROR - 2019-01-05 10:36:24 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 139
+ERROR - 2019-01-05 10:36:24 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 89
+ERROR - 2019-01-05 10:36:24 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 89
+ERROR - 2019-01-05 10:36:24 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 139
+ERROR - 2019-01-05 10:36:24 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 139
+ERROR - 2019-01-05 10:36:24 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 139
+ERROR - 2019-01-05 10:36:24 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 139
+ERROR - 2019-01-05 10:36:24 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 140
+ERROR - 2019-01-05 10:36:24 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 139
+ERROR - 2019-01-05 10:36:24 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 140
+ERROR - 2019-01-05 10:36:24 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 140
+ERROR - 2019-01-05 10:36:24 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 140
+ERROR - 2019-01-05 10:36:24 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 141
+ERROR - 2019-01-05 10:36:24 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 140
+ERROR - 2019-01-05 10:36:24 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 141
+ERROR - 2019-01-05 10:36:24 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 140
+ERROR - 2019-01-05 10:36:24 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 141
+ERROR - 2019-01-05 10:36:24 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 141
+ERROR - 2019-01-05 10:36:24 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 141
+ERROR - 2019-01-05 10:36:24 --> Severity: Notice --> Undefined variable: finyear C:\xampp\htdocs\ria\application\views\bankstatement.php 199
+ERROR - 2019-01-05 10:36:24 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 141
+ERROR - 2019-01-05 10:36:24 --> Severity: Notice --> Undefined variable: finyear C:\xampp\htdocs\ria\application\views\bankstatement.php 199
+ERROR - 2019-01-05 10:36:24 --> Severity: Warning --> Invalid argument supplied for foreach() C:\xampp\htdocs\ria\application\views\bankstatement.php 199
+ERROR - 2019-01-05 10:36:24 --> Severity: Notice --> Undefined variable: finyear C:\xampp\htdocs\ria\application\views\bankstatement.php 199
+ERROR - 2019-01-05 10:36:24 --> Severity: Notice --> Undefined variable: Bankname C:\xampp\htdocs\ria\application\views\bankstatement.php 237
+ERROR - 2019-01-05 10:36:24 --> Severity: Warning --> Invalid argument supplied for foreach() C:\xampp\htdocs\ria\application\views\bankstatement.php 199
+ERROR - 2019-01-05 10:36:24 --> Severity: Warning --> Invalid argument supplied for foreach() C:\xampp\htdocs\ria\application\views\bankstatement.php 199
+ERROR - 2019-01-05 10:36:24 --> Severity: Notice --> Undefined variable: Bankname C:\xampp\htdocs\ria\application\views\bankstatement.php 237
+ERROR - 2019-01-05 10:36:24 --> Severity: Notice --> Undefined variable: Bankname C:\xampp\htdocs\ria\application\views\bankstatement.php 237
+ERROR - 2019-01-05 10:36:28 --> Severity: Notice --> Undefined variable: fdate C:\xampp\htdocs\ria\application\controllers\cashbook.php 1737
+ERROR - 2019-01-05 10:36:28 --> Severity: Notice --> Undefined variable: fdate C:\xampp\htdocs\ria\application\controllers\cashbook.php 1737
+ERROR - 2019-01-05 10:36:28 --> Severity: Notice --> Undefined variable: fdate C:\xampp\htdocs\ria\application\controllers\cashbook.php 1737
+ERROR - 2019-01-05 10:36:28 --> Severity: Notice --> Undefined variable: tdate C:\xampp\htdocs\ria\application\controllers\cashbook.php 1737
+ERROR - 2019-01-05 10:36:28 --> Severity: Notice --> Undefined variable: tdate C:\xampp\htdocs\ria\application\controllers\cashbook.php 1737
+ERROR - 2019-01-05 10:36:28 --> Severity: Notice --> Undefined variable: tdate C:\xampp\htdocs\ria\application\controllers\cashbook.php 1737
+ERROR - 2019-01-05 10:36:28 --> Severity: Notice --> Undefined variable: fa C:\xampp\htdocs\ria\application\controllers\cashbook.php 1737
+ERROR - 2019-01-05 10:36:28 --> Severity: Notice --> Undefined variable: fa C:\xampp\htdocs\ria\application\controllers\cashbook.php 1737
+ERROR - 2019-01-05 10:36:28 --> Severity: Notice --> Undefined variable: fa C:\xampp\htdocs\ria\application\controllers\cashbook.php 1737
+ERROR - 2019-01-05 10:36:29 --> Severity: Notice --> Undefined variable: aa C:\xampp\htdocs\ria\application\controllers\cashbook.php 1737
+ERROR - 2019-01-05 10:36:29 --> Severity: Notice --> Undefined variable: aa C:\xampp\htdocs\ria\application\controllers\cashbook.php 1737
+ERROR - 2019-01-05 10:36:29 --> Severity: Notice --> Undefined variable: aa C:\xampp\htdocs\ria\application\controllers\cashbook.php 1737
+ERROR - 2019-01-05 10:36:30 --> Severity: Notice --> Undefined variable: financialyear C:\xampp\htdocs\ria\application\views\bankstatement.php 2
+ERROR - 2019-01-05 10:36:31 --> Severity: Warning --> Invalid argument supplied for foreach() C:\xampp\htdocs\ria\application\views\bankstatement.php 2
+ERROR - 2019-01-05 10:36:31 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 87
+ERROR - 2019-01-05 10:36:31 --> Severity: Notice --> Undefined variable: financialyear C:\xampp\htdocs\ria\application\views\bankstatement.php 2
+ERROR - 2019-01-05 10:36:31 --> Severity: Notice --> Undefined variable: financialyear C:\xampp\htdocs\ria\application\views\bankstatement.php 2
+ERROR - 2019-01-05 10:36:31 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 87
+ERROR - 2019-01-05 10:36:31 --> Severity: Warning --> Invalid argument supplied for foreach() C:\xampp\htdocs\ria\application\views\bankstatement.php 2
+ERROR - 2019-01-05 10:36:31 --> Severity: Warning --> Invalid argument supplied for foreach() C:\xampp\htdocs\ria\application\views\bankstatement.php 2
+ERROR - 2019-01-05 10:36:31 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 88
+ERROR - 2019-01-05 10:36:31 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 87
+ERROR - 2019-01-05 10:36:31 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 87
+ERROR - 2019-01-05 10:36:31 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 88
+ERROR - 2019-01-05 10:36:31 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 87
+ERROR - 2019-01-05 10:36:31 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 89
+ERROR - 2019-01-05 10:36:31 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 87
+ERROR - 2019-01-05 10:36:31 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 89
+ERROR - 2019-01-05 10:36:31 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 88
+ERROR - 2019-01-05 10:36:31 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 88
+ERROR - 2019-01-05 10:36:31 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 88
+ERROR - 2019-01-05 10:36:31 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 88
+ERROR - 2019-01-05 10:36:31 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 139
+ERROR - 2019-01-05 10:36:31 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 89
+ERROR - 2019-01-05 10:36:31 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 89
+ERROR - 2019-01-05 10:36:31 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 139
+ERROR - 2019-01-05 10:36:31 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 89
+ERROR - 2019-01-05 10:36:31 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 89
+ERROR - 2019-01-05 10:36:31 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 140
+ERROR - 2019-01-05 10:36:31 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 140
+ERROR - 2019-01-05 10:36:31 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 139
+ERROR - 2019-01-05 10:36:31 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 139
+ERROR - 2019-01-05 10:36:31 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 141
+ERROR - 2019-01-05 10:36:31 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 139
+ERROR - 2019-01-05 10:36:31 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 139
+ERROR - 2019-01-05 10:36:31 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 141
+ERROR - 2019-01-05 10:36:31 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 140
+ERROR - 2019-01-05 10:36:31 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 140
+ERROR - 2019-01-05 10:36:31 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 140
+ERROR - 2019-01-05 10:36:31 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 140
+ERROR - 2019-01-05 10:36:32 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 141
+ERROR - 2019-01-05 10:36:32 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 141
+ERROR - 2019-01-05 10:36:32 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 141
+ERROR - 2019-01-05 10:36:32 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 141
+ERROR - 2019-01-05 10:36:49 --> Severity: Notice --> Undefined variable: financialyear C:\xampp\htdocs\ria\application\views\banksettlement.php 4
+ERROR - 2019-01-05 10:36:49 --> Severity: Warning --> Invalid argument supplied for foreach() C:\xampp\htdocs\ria\application\views\banksettlement.php 4
+ERROR - 2019-01-05 10:36:49 --> Severity: Notice --> Undefined variable: t C:\xampp\htdocs\ria\application\views\banksettlement.php 278
+ERROR - 2019-01-05 10:36:49 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\banksettlement.php 278
+ERROR - 2019-01-05 10:36:49 --> Severity: Notice --> Undefined variable: t C:\xampp\htdocs\ria\application\views\banksettlement.php 278
+ERROR - 2019-01-05 10:36:49 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\banksettlement.php 278
+ERROR - 2019-01-05 10:36:49 --> Severity: Notice --> Undefined variable: rel C:\xampp\htdocs\ria\application\views\banksettlement.php 279
+ERROR - 2019-01-05 10:36:49 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\banksettlement.php 279
+ERROR - 2019-01-05 10:36:50 --> Severity: Notice --> Undefined variable: t C:\xampp\htdocs\ria\application\views\banksettlement.php 278
+ERROR - 2019-01-05 10:36:50 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\banksettlement.php 278
+ERROR - 2019-01-05 10:36:50 --> Severity: Notice --> Undefined variable: t C:\xampp\htdocs\ria\application\views\banksettlement.php 278
+ERROR - 2019-01-05 10:36:50 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\banksettlement.php 278
+ERROR - 2019-01-05 10:36:50 --> Severity: Notice --> Undefined variable: rel C:\xampp\htdocs\ria\application\views\banksettlement.php 279
+ERROR - 2019-01-05 10:36:50 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\banksettlement.php 279
+ERROR - 2019-01-05 10:36:50 --> Severity: Notice --> Undefined variable: record C:\xampp\htdocs\ria\application\views\banksettlement.php 325
+ERROR - 2019-01-05 10:36:50 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\banksettlement.php 325
+ERROR - 2019-01-05 10:36:50 --> Severity: Notice --> Undefined variable: t C:\xampp\htdocs\ria\application\views\banksettlement.php 278
+ERROR - 2019-01-05 10:36:50 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\banksettlement.php 278
+ERROR - 2019-01-05 10:36:50 --> Severity: Notice --> Undefined variable: t C:\xampp\htdocs\ria\application\views\banksettlement.php 278
+ERROR - 2019-01-05 10:36:50 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\banksettlement.php 278
+ERROR - 2019-01-05 10:36:50 --> Severity: Notice --> Undefined variable: rel C:\xampp\htdocs\ria\application\views\banksettlement.php 279
+ERROR - 2019-01-05 10:36:50 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\banksettlement.php 279
+ERROR - 2019-01-05 10:36:50 --> Severity: Notice --> Undefined variable: record C:\xampp\htdocs\ria\application\views\banksettlement.php 325
+ERROR - 2019-01-05 10:36:50 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\banksettlement.php 325
+ERROR - 2019-01-05 10:36:50 --> Severity: Notice --> Undefined variable: t C:\xampp\htdocs\ria\application\views\banksettlement.php 278
+ERROR - 2019-01-05 10:36:50 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\banksettlement.php 278
+ERROR - 2019-01-05 10:36:50 --> Severity: Notice --> Undefined variable: t C:\xampp\htdocs\ria\application\views\banksettlement.php 278
+ERROR - 2019-01-05 10:36:50 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\banksettlement.php 278
+ERROR - 2019-01-05 10:36:50 --> Severity: Notice --> Undefined variable: rel C:\xampp\htdocs\ria\application\views\banksettlement.php 279
+ERROR - 2019-01-05 10:36:50 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\banksettlement.php 279
+ERROR - 2019-01-05 10:36:51 --> Severity: Notice --> Undefined variable: t C:\xampp\htdocs\ria\application\views\banksettlement.php 278
+ERROR - 2019-01-05 10:36:51 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\banksettlement.php 278
+ERROR - 2019-01-05 10:36:51 --> Severity: Notice --> Undefined variable: t C:\xampp\htdocs\ria\application\views\banksettlement.php 278
+ERROR - 2019-01-05 10:36:51 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\banksettlement.php 278
+ERROR - 2019-01-05 10:36:51 --> Severity: Notice --> Undefined variable: rel C:\xampp\htdocs\ria\application\views\banksettlement.php 279
+ERROR - 2019-01-05 10:36:51 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\banksettlement.php 279
+ERROR - 2019-01-05 10:36:51 --> Severity: Notice --> Undefined variable: record C:\xampp\htdocs\ria\application\views\banksettlement.php 325
+ERROR - 2019-01-05 10:36:51 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\banksettlement.php 325
+ERROR - 2019-01-05 10:36:51 --> Severity: Notice --> Undefined variable: t C:\xampp\htdocs\ria\application\views\banksettlement.php 278
+ERROR - 2019-01-05 10:36:51 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\banksettlement.php 278
+ERROR - 2019-01-05 10:36:51 --> Severity: Notice --> Undefined variable: t C:\xampp\htdocs\ria\application\views\banksettlement.php 278
+ERROR - 2019-01-05 10:36:51 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\banksettlement.php 278
+ERROR - 2019-01-05 10:36:51 --> Severity: Notice --> Undefined variable: rel C:\xampp\htdocs\ria\application\views\banksettlement.php 279
+ERROR - 2019-01-05 10:36:51 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\banksettlement.php 279
+ERROR - 2019-01-05 10:36:51 --> Severity: Notice --> Undefined variable: record C:\xampp\htdocs\ria\application\views\banksettlement.php 325
+ERROR - 2019-01-05 10:36:51 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\banksettlement.php 325
+ERROR - 2019-01-05 10:37:24 --> Severity: Notice --> Undefined variable: fdate C:\xampp\htdocs\ria\application\controllers\cashbook.php 1737
+ERROR - 2019-01-05 10:37:24 --> Severity: Notice --> Undefined variable: tdate C:\xampp\htdocs\ria\application\controllers\cashbook.php 1737
+ERROR - 2019-01-05 10:37:24 --> Severity: Notice --> Undefined variable: fa C:\xampp\htdocs\ria\application\controllers\cashbook.php 1737
+ERROR - 2019-01-05 10:37:24 --> Severity: Notice --> Undefined variable: aa C:\xampp\htdocs\ria\application\controllers\cashbook.php 1737
+ERROR - 2019-01-05 10:37:26 --> Severity: Notice --> Undefined variable: financialyear C:\xampp\htdocs\ria\application\views\bankstatement.php 2
+ERROR - 2019-01-05 10:37:26 --> Severity: Warning --> Invalid argument supplied for foreach() C:\xampp\htdocs\ria\application\views\bankstatement.php 2
+ERROR - 2019-01-05 10:37:26 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 87
+ERROR - 2019-01-05 10:37:26 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 87
+ERROR - 2019-01-05 10:37:26 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 88
+ERROR - 2019-01-05 10:37:26 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 88
+ERROR - 2019-01-05 10:37:26 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 89
+ERROR - 2019-01-05 10:37:26 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 89
+ERROR - 2019-01-05 10:37:27 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 139
+ERROR - 2019-01-05 10:37:27 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 139
+ERROR - 2019-01-05 10:37:27 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 140
+ERROR - 2019-01-05 10:37:27 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 140
+ERROR - 2019-01-05 10:37:27 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 141
+ERROR - 2019-01-05 10:37:27 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 141
+ERROR - 2019-01-05 10:37:48 --> Severity: Notice --> Undefined variable: financialyear C:\xampp\htdocs\ria\application\views\bankdebit.php 2
+ERROR - 2019-01-05 10:37:48 --> Severity: Warning --> Invalid argument supplied for foreach() C:\xampp\htdocs\ria\application\views\bankdebit.php 2
+ERROR - 2019-01-05 10:38:03 --> Severity: Notice --> Undefined variable: financialyear C:\xampp\htdocs\ria\application\views\bankdebit.php 2
+ERROR - 2019-01-05 10:38:03 --> Severity: Warning --> Invalid argument supplied for foreach() C:\xampp\htdocs\ria\application\views\bankdebit.php 2
+ERROR - 2019-01-05 10:38:03 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankdebit.php 167
+ERROR - 2019-01-05 10:38:03 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\ria\application\views\bankdebit.php 169
+ERROR - 2019-01-05 10:38:03 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankdebit.php 167
+ERROR - 2019-01-05 10:38:04 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\ria\application\views\bankdebit.php 169
+ERROR - 2019-01-05 10:38:04 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankdebit.php 167
+ERROR - 2019-01-05 10:38:04 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\ria\application\views\bankdebit.php 169
+ERROR - 2019-01-05 10:38:04 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankdebit.php 167
+ERROR - 2019-01-05 10:38:04 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\ria\application\views\bankdebit.php 169
+ERROR - 2019-01-05 10:38:04 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankdebit.php 167
+ERROR - 2019-01-05 10:38:04 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\ria\application\views\bankdebit.php 169
+ERROR - 2019-01-05 10:38:04 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankdebit.php 167
+ERROR - 2019-01-05 10:38:04 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\ria\application\views\bankdebit.php 169
+ERROR - 2019-01-05 10:38:04 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankdebit.php 167
+ERROR - 2019-01-05 10:38:04 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\ria\application\views\bankdebit.php 169
+ERROR - 2019-01-05 10:38:04 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankdebit.php 167
+ERROR - 2019-01-05 10:38:04 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\ria\application\views\bankdebit.php 169
+ERROR - 2019-01-05 10:38:04 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankdebit.php 167
+ERROR - 2019-01-05 10:38:04 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\ria\application\views\bankdebit.php 169
+ERROR - 2019-01-05 10:38:04 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankdebit.php 167
+ERROR - 2019-01-05 10:38:04 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\ria\application\views\bankdebit.php 169
+ERROR - 2019-01-05 10:38:04 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankdebit.php 167
+ERROR - 2019-01-05 10:38:04 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\ria\application\views\bankdebit.php 169
+ERROR - 2019-01-05 10:38:04 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankdebit.php 167
+ERROR - 2019-01-05 10:38:04 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\ria\application\views\bankdebit.php 169
+ERROR - 2019-01-05 10:38:04 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankdebit.php 167
+ERROR - 2019-01-05 10:38:05 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\ria\application\views\bankdebit.php 169
+ERROR - 2019-01-05 10:38:05 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankdebit.php 167
+ERROR - 2019-01-05 10:38:05 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\ria\application\views\bankdebit.php 169
+ERROR - 2019-01-05 10:38:05 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankdebit.php 167
+ERROR - 2019-01-05 10:38:05 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\ria\application\views\bankdebit.php 169
+ERROR - 2019-01-05 10:38:05 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankdebit.php 167
+ERROR - 2019-01-05 10:38:05 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\ria\application\views\bankdebit.php 169
+ERROR - 2019-01-05 10:38:05 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankdebit.php 167
+ERROR - 2019-01-05 10:38:05 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\ria\application\views\bankdebit.php 169
+ERROR - 2019-01-05 10:38:05 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankdebit.php 167
+ERROR - 2019-01-05 10:38:05 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\ria\application\views\bankdebit.php 169
+ERROR - 2019-01-05 10:38:05 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankdebit.php 167
+ERROR - 2019-01-05 10:38:05 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\ria\application\views\bankdebit.php 169
+ERROR - 2019-01-05 10:38:05 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankdebit.php 167
+ERROR - 2019-01-05 10:38:05 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\ria\application\views\bankdebit.php 169
+ERROR - 2019-01-05 10:38:05 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankdebit.php 167
+ERROR - 2019-01-05 10:38:05 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\ria\application\views\bankdebit.php 169
+ERROR - 2019-01-05 10:38:05 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankdebit.php 167
+ERROR - 2019-01-05 10:38:05 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\ria\application\views\bankdebit.php 169
+ERROR - 2019-01-05 10:38:05 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankdebit.php 167
+ERROR - 2019-01-05 10:38:05 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\ria\application\views\bankdebit.php 169
+ERROR - 2019-01-05 10:38:05 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankdebit.php 167
+ERROR - 2019-01-05 10:38:06 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\ria\application\views\bankdebit.php 169
+ERROR - 2019-01-05 10:38:06 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankdebit.php 167
+ERROR - 2019-01-05 10:38:06 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\ria\application\views\bankdebit.php 169
+ERROR - 2019-01-05 10:38:06 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankdebit.php 167
+ERROR - 2019-01-05 10:38:06 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\ria\application\views\bankdebit.php 169
+ERROR - 2019-01-05 10:38:06 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankdebit.php 167
+ERROR - 2019-01-05 10:38:06 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\ria\application\views\bankdebit.php 169
+ERROR - 2019-01-05 10:38:55 --> Severity: Notice --> Undefined variable: balancetocleared C:\xampp\htdocs\ria\application\controllers\cashbook.php 1932
+ERROR - 2019-01-05 10:38:55 --> Severity: Notice --> Undefined variable: balancetocleared C:\xampp\htdocs\ria\application\controllers\cashbook.php 1932
+ERROR - 2019-01-05 10:38:55 --> Severity: Notice --> Undefined variable: clearedblnce C:\xampp\htdocs\ria\application\controllers\cashbook.php 1941
+ERROR - 2019-01-05 10:38:55 --> Severity: Notice --> Undefined variable: clearedblnce C:\xampp\htdocs\ria\application\controllers\cashbook.php 1941
+ERROR - 2019-01-05 10:38:55 --> Severity: Notice --> Undefined variable: balancetocleared C:\xampp\htdocs\ria\application\controllers\cashbook.php 1941
+ERROR - 2019-01-05 10:38:55 --> Severity: Notice --> Undefined variable: balancetocleared C:\xampp\htdocs\ria\application\controllers\cashbook.php 1941
+ERROR - 2019-01-05 10:38:56 --> Severity: Notice --> Undefined variable: data C:\xampp\htdocs\ria\application\controllers\cashbook.php 2007
+ERROR - 2019-01-05 10:38:57 --> Severity: Notice --> Undefined variable: data C:\xampp\htdocs\ria\application\controllers\cashbook.php 2007
+ERROR - 2019-01-05 10:38:57 --> Severity: Notice --> Undefined variable: data C:\xampp\htdocs\ria\application\controllers\cashbook.php 2007
+ERROR - 2019-01-05 10:38:58 --> Severity: Notice --> Undefined variable: financialyear C:\xampp\htdocs\ria\application\views\bankstatement.php 2
+ERROR - 2019-01-05 10:38:58 --> Severity: Warning --> Invalid argument supplied for foreach() C:\xampp\htdocs\ria\application\views\bankstatement.php 2
+ERROR - 2019-01-05 10:38:58 --> Severity: Notice --> Undefined variable: financialyear C:\xampp\htdocs\ria\application\views\bankstatement.php 2
+ERROR - 2019-01-05 10:38:58 --> Severity: Notice --> Undefined variable: bankreport C:\xampp\htdocs\ria\application\views\bankstatement.php 8
+ERROR - 2019-01-05 10:38:58 --> Severity: Warning --> Invalid argument supplied for foreach() C:\xampp\htdocs\ria\application\views\bankstatement.php 8
+ERROR - 2019-01-05 10:38:58 --> Severity: Warning --> Invalid argument supplied for foreach() C:\xampp\htdocs\ria\application\views\bankstatement.php 2
+ERROR - 2019-01-05 10:38:58 --> Severity: Notice --> Undefined variable: financialyear C:\xampp\htdocs\ria\application\views\bankstatement.php 2
+ERROR - 2019-01-05 10:38:58 --> Severity: Notice --> Undefined variable: bankreport C:\xampp\htdocs\ria\application\views\bankstatement.php 8
+ERROR - 2019-01-05 10:38:58 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 87
+ERROR - 2019-01-05 10:38:58 --> Severity: Warning --> Invalid argument supplied for foreach() C:\xampp\htdocs\ria\application\views\bankstatement.php 2
+ERROR - 2019-01-05 10:38:58 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 87
+ERROR - 2019-01-05 10:38:58 --> Severity: Warning --> Invalid argument supplied for foreach() C:\xampp\htdocs\ria\application\views\bankstatement.php 8
+ERROR - 2019-01-05 10:38:58 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 88
+ERROR - 2019-01-05 10:38:58 --> Severity: Notice --> Undefined variable: bankreport C:\xampp\htdocs\ria\application\views\bankstatement.php 8
+ERROR - 2019-01-05 10:38:58 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 87
+ERROR - 2019-01-05 10:38:58 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 87
+ERROR - 2019-01-05 10:38:58 --> Severity: Warning --> Invalid argument supplied for foreach() C:\xampp\htdocs\ria\application\views\bankstatement.php 8
+ERROR - 2019-01-05 10:38:58 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 88
+ERROR - 2019-01-05 10:38:58 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 88
+ERROR - 2019-01-05 10:38:58 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 87
+ERROR - 2019-01-05 10:38:58 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 89
+ERROR - 2019-01-05 10:38:58 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 88
+ERROR - 2019-01-05 10:38:58 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 87
+ERROR - 2019-01-05 10:38:58 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 89
+ERROR - 2019-01-05 10:38:58 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 88
+ERROR - 2019-01-05 10:38:58 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 139
+ERROR - 2019-01-05 10:38:58 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 89
+ERROR - 2019-01-05 10:38:58 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 88
+ERROR - 2019-01-05 10:38:58 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 89
+ERROR - 2019-01-05 10:38:58 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 139
+ERROR - 2019-01-05 10:38:58 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 140
+ERROR - 2019-01-05 10:38:58 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 139
+ERROR - 2019-01-05 10:38:58 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 89
+ERROR - 2019-01-05 10:38:58 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 89
+ERROR - 2019-01-05 10:38:58 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 140
+ERROR - 2019-01-05 10:38:58 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 139
+ERROR - 2019-01-05 10:38:58 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 141
+ERROR - 2019-01-05 10:38:58 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 140
+ERROR - 2019-01-05 10:38:58 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 139
+ERROR - 2019-01-05 10:38:58 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 139
+ERROR - 2019-01-05 10:38:58 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 141
+ERROR - 2019-01-05 10:38:58 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 140
+ERROR - 2019-01-05 10:38:58 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 140
+ERROR - 2019-01-05 10:38:58 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 141
+ERROR - 2019-01-05 10:38:58 --> Severity: Notice --> Undefined variable: finyear C:\xampp\htdocs\ria\application\views\bankstatement.php 199
+ERROR - 2019-01-05 10:38:58 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 141
+ERROR - 2019-01-05 10:38:58 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 140
+ERROR - 2019-01-05 10:38:58 --> Severity: Notice --> Undefined variable: finyear C:\xampp\htdocs\ria\application\views\bankstatement.php 199
+ERROR - 2019-01-05 10:38:58 --> Severity: Warning --> Invalid argument supplied for foreach() C:\xampp\htdocs\ria\application\views\bankstatement.php 199
+ERROR - 2019-01-05 10:38:59 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 141
+ERROR - 2019-01-05 10:38:59 --> Severity: Warning --> Invalid argument supplied for foreach() C:\xampp\htdocs\ria\application\views\bankstatement.php 199
+ERROR - 2019-01-05 10:38:59 --> Severity: Notice --> Undefined variable: Bankname C:\xampp\htdocs\ria\application\views\bankstatement.php 237
+ERROR - 2019-01-05 10:38:59 --> Severity: Notice --> Undefined variable: Bankname C:\xampp\htdocs\ria\application\views\bankstatement.php 237
+ERROR - 2019-01-05 10:38:59 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 141
+ERROR - 2019-01-05 10:38:59 --> Severity: Notice --> Undefined variable: finyear C:\xampp\htdocs\ria\application\views\bankstatement.php 199
+ERROR - 2019-01-05 10:38:59 --> Severity: Warning --> Invalid argument supplied for foreach() C:\xampp\htdocs\ria\application\views\bankstatement.php 199
+ERROR - 2019-01-05 10:38:59 --> Severity: Notice --> Undefined variable: Bankname C:\xampp\htdocs\ria\application\views\bankstatement.php 237
+ERROR - 2019-01-05 10:39:01 --> Severity: Notice --> Undefined variable: fdate C:\xampp\htdocs\ria\application\controllers\cashbook.php 1737
+ERROR - 2019-01-05 10:39:01 --> Severity: Notice --> Undefined variable: fdate C:\xampp\htdocs\ria\application\controllers\cashbook.php 1737
+ERROR - 2019-01-05 10:39:01 --> Severity: Notice --> Undefined variable: tdate C:\xampp\htdocs\ria\application\controllers\cashbook.php 1737
+ERROR - 2019-01-05 10:39:01 --> Severity: Notice --> Undefined variable: fdate C:\xampp\htdocs\ria\application\controllers\cashbook.php 1737
+ERROR - 2019-01-05 10:39:01 --> Severity: Notice --> Undefined variable: tdate C:\xampp\htdocs\ria\application\controllers\cashbook.php 1737
+ERROR - 2019-01-05 10:39:01 --> Severity: Notice --> Undefined variable: fa C:\xampp\htdocs\ria\application\controllers\cashbook.php 1737
+ERROR - 2019-01-05 10:39:01 --> Severity: Notice --> Undefined variable: tdate C:\xampp\htdocs\ria\application\controllers\cashbook.php 1737
+ERROR - 2019-01-05 10:39:01 --> Severity: Notice --> Undefined variable: aa C:\xampp\htdocs\ria\application\controllers\cashbook.php 1737
+ERROR - 2019-01-05 10:39:01 --> Severity: Notice --> Undefined variable: fa C:\xampp\htdocs\ria\application\controllers\cashbook.php 1737
+ERROR - 2019-01-05 10:39:01 --> Severity: Notice --> Undefined variable: fa C:\xampp\htdocs\ria\application\controllers\cashbook.php 1737
+ERROR - 2019-01-05 10:39:02 --> Severity: Notice --> Undefined variable: aa C:\xampp\htdocs\ria\application\controllers\cashbook.php 1737
+ERROR - 2019-01-05 10:39:02 --> Severity: Notice --> Undefined variable: aa C:\xampp\htdocs\ria\application\controllers\cashbook.php 1737
+ERROR - 2019-01-05 10:39:04 --> Severity: Notice --> Undefined variable: financialyear C:\xampp\htdocs\ria\application\views\bankstatement.php 2
+ERROR - 2019-01-05 10:39:04 --> Severity: Notice --> Undefined variable: financialyear C:\xampp\htdocs\ria\application\views\bankstatement.php 2
+ERROR - 2019-01-05 10:39:04 --> Severity: Notice --> Undefined variable: financialyear C:\xampp\htdocs\ria\application\views\bankstatement.php 2
+ERROR - 2019-01-05 10:39:04 --> Severity: Warning --> Invalid argument supplied for foreach() C:\xampp\htdocs\ria\application\views\bankstatement.php 2
+ERROR - 2019-01-05 10:39:04 --> Severity: Warning --> Invalid argument supplied for foreach() C:\xampp\htdocs\ria\application\views\bankstatement.php 2
+ERROR - 2019-01-05 10:39:04 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 87
+ERROR - 2019-01-05 10:39:04 --> Severity: Warning --> Invalid argument supplied for foreach() C:\xampp\htdocs\ria\application\views\bankstatement.php 2
+ERROR - 2019-01-05 10:39:04 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 87
+ERROR - 2019-01-05 10:39:04 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 87
+ERROR - 2019-01-05 10:39:04 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 87
+ERROR - 2019-01-05 10:39:04 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 88
+ERROR - 2019-01-05 10:39:04 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 87
+ERROR - 2019-01-05 10:39:04 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 87
+ERROR - 2019-01-05 10:39:04 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 88
+ERROR - 2019-01-05 10:39:04 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 88
+ERROR - 2019-01-05 10:39:04 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 88
+ERROR - 2019-01-05 10:39:04 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 88
+ERROR - 2019-01-05 10:39:04 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 88
+ERROR - 2019-01-05 10:39:04 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 89
+ERROR - 2019-01-05 10:39:04 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 89
+ERROR - 2019-01-05 10:39:04 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 89
+ERROR - 2019-01-05 10:39:04 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 89
+ERROR - 2019-01-05 10:39:04 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 89
+ERROR - 2019-01-05 10:39:04 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 139
+ERROR - 2019-01-05 10:39:04 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 89
+ERROR - 2019-01-05 10:39:04 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 139
+ERROR - 2019-01-05 10:39:04 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 139
+ERROR - 2019-01-05 10:39:04 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 139
+ERROR - 2019-01-05 10:39:04 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 140
+ERROR - 2019-01-05 10:39:04 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 139
+ERROR - 2019-01-05 10:39:04 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 140
+ERROR - 2019-01-05 10:39:04 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 140
+ERROR - 2019-01-05 10:39:04 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 139
+ERROR - 2019-01-05 10:39:05 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 141
+ERROR - 2019-01-05 10:39:05 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 140
+ERROR - 2019-01-05 10:39:05 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 140
+ERROR - 2019-01-05 10:39:05 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 141
+ERROR - 2019-01-05 10:39:05 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 141
+ERROR - 2019-01-05 10:39:05 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 140
+ERROR - 2019-01-05 10:39:05 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 141
+ERROR - 2019-01-05 10:39:05 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 141
+ERROR - 2019-01-05 10:39:05 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 141
+ERROR - 2019-01-05 10:39:24 --> Severity: Notice --> Undefined variable: financialyear C:\xampp\htdocs\ria\application\views\banksettlement.php 4
+ERROR - 2019-01-05 10:39:25 --> Severity: Warning --> Invalid argument supplied for foreach() C:\xampp\htdocs\ria\application\views\banksettlement.php 4
+ERROR - 2019-01-05 10:39:25 --> Severity: Notice --> Undefined variable: t C:\xampp\htdocs\ria\application\views\banksettlement.php 278
+ERROR - 2019-01-05 10:39:25 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\banksettlement.php 278
+ERROR - 2019-01-05 10:39:25 --> Severity: Notice --> Undefined variable: t C:\xampp\htdocs\ria\application\views\banksettlement.php 278
+ERROR - 2019-01-05 10:39:25 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\banksettlement.php 278
+ERROR - 2019-01-05 10:39:25 --> Severity: Notice --> Undefined variable: rel C:\xampp\htdocs\ria\application\views\banksettlement.php 279
+ERROR - 2019-01-05 10:39:25 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\banksettlement.php 279
+ERROR - 2019-01-05 10:39:25 --> Severity: Notice --> Undefined variable: record C:\xampp\htdocs\ria\application\views\banksettlement.php 325
+ERROR - 2019-01-05 10:39:25 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\banksettlement.php 325
+ERROR - 2019-01-05 10:39:25 --> Severity: Notice --> Undefined variable: t C:\xampp\htdocs\ria\application\views\banksettlement.php 278
+ERROR - 2019-01-05 10:39:25 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\banksettlement.php 278
+ERROR - 2019-01-05 10:39:25 --> Severity: Notice --> Undefined variable: t C:\xampp\htdocs\ria\application\views\banksettlement.php 278
+ERROR - 2019-01-05 10:39:25 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\banksettlement.php 278
+ERROR - 2019-01-05 10:39:25 --> Severity: Notice --> Undefined variable: rel C:\xampp\htdocs\ria\application\views\banksettlement.php 279
+ERROR - 2019-01-05 10:39:25 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\banksettlement.php 279
+ERROR - 2019-01-05 10:39:25 --> Severity: Notice --> Undefined variable: t C:\xampp\htdocs\ria\application\views\banksettlement.php 278
+ERROR - 2019-01-05 10:39:25 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\banksettlement.php 278
+ERROR - 2019-01-05 10:39:25 --> Severity: Notice --> Undefined variable: t C:\xampp\htdocs\ria\application\views\banksettlement.php 278
+ERROR - 2019-01-05 10:39:25 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\banksettlement.php 278
+ERROR - 2019-01-05 10:39:25 --> Severity: Notice --> Undefined variable: rel C:\xampp\htdocs\ria\application\views\banksettlement.php 279
+ERROR - 2019-01-05 10:39:25 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\banksettlement.php 279
+ERROR - 2019-01-05 10:39:26 --> Severity: Notice --> Undefined variable: record C:\xampp\htdocs\ria\application\views\banksettlement.php 325
+ERROR - 2019-01-05 10:39:26 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\banksettlement.php 325
+ERROR - 2019-01-05 10:43:56 --> Severity: Notice --> Undefined variable: fdate C:\xampp\htdocs\ria\application\controllers\cashbook.php 1737
+ERROR - 2019-01-05 10:43:56 --> Severity: Notice --> Undefined variable: tdate C:\xampp\htdocs\ria\application\controllers\cashbook.php 1737
+ERROR - 2019-01-05 10:43:56 --> Severity: Notice --> Undefined variable: fa C:\xampp\htdocs\ria\application\controllers\cashbook.php 1737
+ERROR - 2019-01-05 10:43:56 --> Severity: Notice --> Undefined variable: aa C:\xampp\htdocs\ria\application\controllers\cashbook.php 1737
+ERROR - 2019-01-05 10:43:58 --> Severity: Notice --> Undefined variable: financialyear C:\xampp\htdocs\ria\application\views\bankstatement.php 2
+ERROR - 2019-01-05 10:43:59 --> Severity: Warning --> Invalid argument supplied for foreach() C:\xampp\htdocs\ria\application\views\bankstatement.php 2
+ERROR - 2019-01-05 10:43:59 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 87
+ERROR - 2019-01-05 10:43:59 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 87
+ERROR - 2019-01-05 10:43:59 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 88
+ERROR - 2019-01-05 10:43:59 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 88
+ERROR - 2019-01-05 10:43:59 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 89
+ERROR - 2019-01-05 10:43:59 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 89
+ERROR - 2019-01-05 10:43:59 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 139
+ERROR - 2019-01-05 10:43:59 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 139
+ERROR - 2019-01-05 10:43:59 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 140
+ERROR - 2019-01-05 10:43:59 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 140
+ERROR - 2019-01-05 10:43:59 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 141
+ERROR - 2019-01-05 10:43:59 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 141
+ERROR - 2019-01-05 10:44:44 --> Severity: Notice --> Undefined variable: financialyear C:\xampp\htdocs\ria\application\views\bankdebit.php 2
+ERROR - 2019-01-05 10:44:44 --> Severity: Warning --> Invalid argument supplied for foreach() C:\xampp\htdocs\ria\application\views\bankdebit.php 2
+ERROR - 2019-01-05 10:45:07 --> Severity: Notice --> Undefined variable: financialyear C:\xampp\htdocs\ria\application\views\banksettlement.php 4
+ERROR - 2019-01-05 10:45:07 --> Severity: Warning --> Invalid argument supplied for foreach() C:\xampp\htdocs\ria\application\views\banksettlement.php 4
+ERROR - 2019-01-05 10:45:07 --> Severity: Notice --> Undefined variable: t C:\xampp\htdocs\ria\application\views\banksettlement.php 278
+ERROR - 2019-01-05 10:45:07 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\banksettlement.php 278
+ERROR - 2019-01-05 10:45:07 --> Severity: Notice --> Undefined variable: t C:\xampp\htdocs\ria\application\views\banksettlement.php 278
+ERROR - 2019-01-05 10:45:07 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\banksettlement.php 278
+ERROR - 2019-01-05 10:45:07 --> Severity: Notice --> Undefined variable: rel C:\xampp\htdocs\ria\application\views\banksettlement.php 279
+ERROR - 2019-01-05 10:45:07 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\banksettlement.php 279
+ERROR - 2019-01-05 10:45:07 --> Severity: Notice --> Undefined variable: record C:\xampp\htdocs\ria\application\views\banksettlement.php 325
+ERROR - 2019-01-05 10:45:07 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\banksettlement.php 325
+ERROR - 2019-01-05 10:45:07 --> Severity: Notice --> Undefined variable: t C:\xampp\htdocs\ria\application\views\banksettlement.php 278
+ERROR - 2019-01-05 10:45:07 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\banksettlement.php 278
+ERROR - 2019-01-05 10:45:07 --> Severity: Notice --> Undefined variable: t C:\xampp\htdocs\ria\application\views\banksettlement.php 278
+ERROR - 2019-01-05 10:45:07 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\banksettlement.php 278
+ERROR - 2019-01-05 10:45:07 --> Severity: Notice --> Undefined variable: rel C:\xampp\htdocs\ria\application\views\banksettlement.php 279
+ERROR - 2019-01-05 10:45:07 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\banksettlement.php 279
+ERROR - 2019-01-05 10:45:07 --> Severity: Notice --> Undefined variable: t C:\xampp\htdocs\ria\application\views\banksettlement.php 278
+ERROR - 2019-01-05 10:45:07 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\banksettlement.php 278
+ERROR - 2019-01-05 10:45:07 --> Severity: Notice --> Undefined variable: t C:\xampp\htdocs\ria\application\views\banksettlement.php 278
+ERROR - 2019-01-05 10:45:07 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\banksettlement.php 278
+ERROR - 2019-01-05 10:45:08 --> Severity: Notice --> Undefined variable: rel C:\xampp\htdocs\ria\application\views\banksettlement.php 279
+ERROR - 2019-01-05 10:45:08 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\banksettlement.php 279
+ERROR - 2019-01-05 10:45:08 --> Severity: Notice --> Undefined variable: record C:\xampp\htdocs\ria\application\views\banksettlement.php 325
+ERROR - 2019-01-05 10:45:08 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\banksettlement.php 325
+ERROR - 2019-01-05 10:45:08 --> Severity: Notice --> Undefined variable: t C:\xampp\htdocs\ria\application\views\banksettlement.php 278
+ERROR - 2019-01-05 10:45:08 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\banksettlement.php 278
+ERROR - 2019-01-05 10:45:08 --> Severity: Notice --> Undefined variable: t C:\xampp\htdocs\ria\application\views\banksettlement.php 278
+ERROR - 2019-01-05 10:45:08 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\banksettlement.php 278
+ERROR - 2019-01-05 10:45:08 --> Severity: Notice --> Undefined variable: rel C:\xampp\htdocs\ria\application\views\banksettlement.php 279
+ERROR - 2019-01-05 10:45:08 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\banksettlement.php 279
+ERROR - 2019-01-05 10:45:27 --> Severity: Notice --> Undefined variable: fdate C:\xampp\htdocs\ria\application\controllers\cashbook.php 1737
+ERROR - 2019-01-05 10:45:27 --> Severity: Notice --> Undefined variable: tdate C:\xampp\htdocs\ria\application\controllers\cashbook.php 1737
+ERROR - 2019-01-05 10:45:27 --> Severity: Notice --> Undefined variable: fa C:\xampp\htdocs\ria\application\controllers\cashbook.php 1737
+ERROR - 2019-01-05 10:45:27 --> Severity: Notice --> Undefined variable: aa C:\xampp\htdocs\ria\application\controllers\cashbook.php 1737
+ERROR - 2019-01-05 10:45:29 --> Severity: Notice --> Undefined variable: financialyear C:\xampp\htdocs\ria\application\views\bankstatement.php 2
+ERROR - 2019-01-05 10:45:29 --> Severity: Warning --> Invalid argument supplied for foreach() C:\xampp\htdocs\ria\application\views\bankstatement.php 2
+ERROR - 2019-01-05 10:45:29 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 87
+ERROR - 2019-01-05 10:45:29 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 87
+ERROR - 2019-01-05 10:45:30 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 88
+ERROR - 2019-01-05 10:45:30 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 88
+ERROR - 2019-01-05 10:45:30 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 89
+ERROR - 2019-01-05 10:45:30 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 89
+ERROR - 2019-01-05 10:45:30 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 139
+ERROR - 2019-01-05 10:45:30 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 139
+ERROR - 2019-01-05 10:45:30 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 140
+ERROR - 2019-01-05 10:45:30 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 140
+ERROR - 2019-01-05 10:45:30 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 141
+ERROR - 2019-01-05 10:45:30 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 141
+ERROR - 2019-01-05 10:45:42 --> Severity: Notice --> Undefined variable: financialyear C:\xampp\htdocs\ria\application\views\banksettlement.php 4
+ERROR - 2019-01-05 10:45:42 --> Severity: Warning --> Invalid argument supplied for foreach() C:\xampp\htdocs\ria\application\views\banksettlement.php 4
+ERROR - 2019-01-05 10:45:42 --> Severity: Notice --> Undefined variable: t C:\xampp\htdocs\ria\application\views\banksettlement.php 278
+ERROR - 2019-01-05 10:45:42 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\banksettlement.php 278
+ERROR - 2019-01-05 10:45:42 --> Severity: Notice --> Undefined variable: t C:\xampp\htdocs\ria\application\views\banksettlement.php 278
+ERROR - 2019-01-05 10:45:42 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\banksettlement.php 278
+ERROR - 2019-01-05 10:45:42 --> Severity: Notice --> Undefined variable: rel C:\xampp\htdocs\ria\application\views\banksettlement.php 279
+ERROR - 2019-01-05 10:45:43 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\banksettlement.php 279
+ERROR - 2019-01-05 10:45:43 --> Severity: Notice --> Undefined variable: record C:\xampp\htdocs\ria\application\views\banksettlement.php 325
+ERROR - 2019-01-05 10:45:43 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\banksettlement.php 325
+ERROR - 2019-01-05 10:45:43 --> Severity: Notice --> Undefined variable: t C:\xampp\htdocs\ria\application\views\banksettlement.php 278
+ERROR - 2019-01-05 10:45:43 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\banksettlement.php 278
+ERROR - 2019-01-05 10:45:43 --> Severity: Notice --> Undefined variable: t C:\xampp\htdocs\ria\application\views\banksettlement.php 278
+ERROR - 2019-01-05 10:45:43 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\banksettlement.php 278
+ERROR - 2019-01-05 10:45:43 --> Severity: Notice --> Undefined variable: rel C:\xampp\htdocs\ria\application\views\banksettlement.php 279
+ERROR - 2019-01-05 10:45:43 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\banksettlement.php 279
+ERROR - 2019-01-05 10:46:00 --> Severity: Notice --> Undefined variable: fdate C:\xampp\htdocs\ria\application\controllers\cashbook.php 1737
+ERROR - 2019-01-05 10:46:00 --> Severity: Notice --> Undefined variable: tdate C:\xampp\htdocs\ria\application\controllers\cashbook.php 1737
+ERROR - 2019-01-05 10:46:00 --> Severity: Notice --> Undefined variable: fa C:\xampp\htdocs\ria\application\controllers\cashbook.php 1737
+ERROR - 2019-01-05 10:46:00 --> Severity: Notice --> Undefined variable: aa C:\xampp\htdocs\ria\application\controllers\cashbook.php 1737
+ERROR - 2019-01-05 10:46:06 --> Severity: Notice --> Undefined variable: financialyear C:\xampp\htdocs\ria\application\views\bankstatement.php 2
+ERROR - 2019-01-05 10:46:06 --> Severity: Warning --> Invalid argument supplied for foreach() C:\xampp\htdocs\ria\application\views\bankstatement.php 2
+ERROR - 2019-01-05 10:46:06 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 87
+ERROR - 2019-01-05 10:46:06 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 87
+ERROR - 2019-01-05 10:46:06 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 88
+ERROR - 2019-01-05 10:46:06 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 88
+ERROR - 2019-01-05 10:46:06 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 89
+ERROR - 2019-01-05 10:46:06 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 89
+ERROR - 2019-01-05 10:46:06 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 139
+ERROR - 2019-01-05 10:46:06 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 139
+ERROR - 2019-01-05 10:46:06 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 140
+ERROR - 2019-01-05 10:46:06 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 140
+ERROR - 2019-01-05 10:46:06 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 141
+ERROR - 2019-01-05 10:46:06 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 141
+ERROR - 2019-01-05 10:46:17 --> Severity: Notice --> Undefined variable: financialyear C:\xampp\htdocs\ria\application\views\banksettlement.php 4
+ERROR - 2019-01-05 10:46:17 --> Severity: Warning --> Invalid argument supplied for foreach() C:\xampp\htdocs\ria\application\views\banksettlement.php 4
+ERROR - 2019-01-05 10:46:17 --> Severity: Notice --> Undefined variable: t C:\xampp\htdocs\ria\application\views\banksettlement.php 278
+ERROR - 2019-01-05 10:46:18 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\banksettlement.php 278
+ERROR - 2019-01-05 10:46:18 --> Severity: Notice --> Undefined variable: t C:\xampp\htdocs\ria\application\views\banksettlement.php 278
+ERROR - 2019-01-05 10:46:18 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\banksettlement.php 278
+ERROR - 2019-01-05 10:46:18 --> Severity: Notice --> Undefined variable: rel C:\xampp\htdocs\ria\application\views\banksettlement.php 279
+ERROR - 2019-01-05 10:46:18 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\banksettlement.php 279
+ERROR - 2019-01-05 10:46:30 --> Severity: Notice --> Undefined variable: fdate C:\xampp\htdocs\ria\application\controllers\cashbook.php 1737
+ERROR - 2019-01-05 10:46:30 --> Severity: Notice --> Undefined variable: tdate C:\xampp\htdocs\ria\application\controllers\cashbook.php 1737
+ERROR - 2019-01-05 10:46:30 --> Severity: Notice --> Undefined variable: fa C:\xampp\htdocs\ria\application\controllers\cashbook.php 1737
+ERROR - 2019-01-05 10:46:30 --> Severity: Notice --> Undefined variable: aa C:\xampp\htdocs\ria\application\controllers\cashbook.php 1737
+ERROR - 2019-01-05 10:46:32 --> Severity: Notice --> Undefined variable: financialyear C:\xampp\htdocs\ria\application\views\bankstatement.php 2
+ERROR - 2019-01-05 10:46:32 --> Severity: Warning --> Invalid argument supplied for foreach() C:\xampp\htdocs\ria\application\views\bankstatement.php 2
+ERROR - 2019-01-05 10:46:32 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 87
+ERROR - 2019-01-05 10:46:33 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 87
+ERROR - 2019-01-05 10:46:33 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 88
+ERROR - 2019-01-05 10:46:33 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 88
+ERROR - 2019-01-05 10:46:33 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 89
+ERROR - 2019-01-05 10:46:33 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 89
+ERROR - 2019-01-05 10:46:33 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 139
+ERROR - 2019-01-05 10:46:33 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 139
+ERROR - 2019-01-05 10:46:33 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 140
+ERROR - 2019-01-05 10:46:33 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 140
+ERROR - 2019-01-05 10:46:33 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 141
+ERROR - 2019-01-05 10:46:33 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 141
+ERROR - 2019-01-05 10:46:45 --> Severity: Notice --> Undefined variable: financialyear C:\xampp\htdocs\ria\application\views\banksettlement.php 4
+ERROR - 2019-01-05 10:46:45 --> Severity: Warning --> Invalid argument supplied for foreach() C:\xampp\htdocs\ria\application\views\banksettlement.php 4
+ERROR - 2019-01-05 10:46:45 --> Severity: Notice --> Undefined variable: bankid C:\xampp\htdocs\ria\application\views\banksettlement.php 170
+ERROR - 2019-01-05 10:46:45 --> Severity: Notice --> Undefined variable: bankid C:\xampp\htdocs\ria\application\views\banksettlement.php 182
+ERROR - 2019-01-05 10:49:31 --> Severity: Notice --> Undefined variable: fdate C:\xampp\htdocs\ria\application\controllers\cashbook.php 1737
+ERROR - 2019-01-05 10:49:31 --> Severity: Notice --> Undefined variable: tdate C:\xampp\htdocs\ria\application\controllers\cashbook.php 1737
+ERROR - 2019-01-05 10:49:31 --> Severity: Notice --> Undefined variable: fa C:\xampp\htdocs\ria\application\controllers\cashbook.php 1737
+ERROR - 2019-01-05 10:49:31 --> Severity: Notice --> Undefined variable: aa C:\xampp\htdocs\ria\application\controllers\cashbook.php 1737
+ERROR - 2019-01-05 10:49:33 --> Severity: Notice --> Undefined variable: financialyear C:\xampp\htdocs\ria\application\views\bankstatement.php 2
+ERROR - 2019-01-05 10:49:33 --> Severity: Warning --> Invalid argument supplied for foreach() C:\xampp\htdocs\ria\application\views\bankstatement.php 2
+ERROR - 2019-01-05 10:49:33 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 87
+ERROR - 2019-01-05 10:49:33 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 87
+ERROR - 2019-01-05 10:49:33 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 88
+ERROR - 2019-01-05 10:49:33 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 88
+ERROR - 2019-01-05 10:49:33 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 89
+ERROR - 2019-01-05 10:49:33 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 89
+ERROR - 2019-01-05 10:49:34 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 139
+ERROR - 2019-01-05 10:49:34 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 139
+ERROR - 2019-01-05 10:49:34 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 140
+ERROR - 2019-01-05 10:49:34 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 140
+ERROR - 2019-01-05 10:49:34 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 141
+ERROR - 2019-01-05 10:49:34 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 141
+ERROR - 2019-01-05 10:49:45 --> Severity: Notice --> Undefined variable: financialyear C:\xampp\htdocs\ria\application\views\banksettlement.php 4
+ERROR - 2019-01-05 10:49:45 --> Severity: Warning --> Invalid argument supplied for foreach() C:\xampp\htdocs\ria\application\views\banksettlement.php 4
+ERROR - 2019-01-05 10:49:45 --> Severity: Notice --> Undefined variable: t C:\xampp\htdocs\ria\application\views\banksettlement.php 278
+ERROR - 2019-01-05 10:49:45 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\banksettlement.php 278
+ERROR - 2019-01-05 10:49:46 --> Severity: Notice --> Undefined variable: t C:\xampp\htdocs\ria\application\views\banksettlement.php 278
+ERROR - 2019-01-05 10:49:46 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\banksettlement.php 278
+ERROR - 2019-01-05 10:49:46 --> Severity: Notice --> Undefined variable: rel C:\xampp\htdocs\ria\application\views\banksettlement.php 279
+ERROR - 2019-01-05 10:49:46 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\banksettlement.php 279
+ERROR - 2019-01-05 10:49:46 --> Severity: Notice --> Undefined variable: t C:\xampp\htdocs\ria\application\views\banksettlement.php 278
+ERROR - 2019-01-05 10:49:46 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\banksettlement.php 278
+ERROR - 2019-01-05 10:49:46 --> Severity: Notice --> Undefined variable: t C:\xampp\htdocs\ria\application\views\banksettlement.php 278
+ERROR - 2019-01-05 10:49:46 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\banksettlement.php 278
+ERROR - 2019-01-05 10:49:46 --> Severity: Notice --> Undefined variable: rel C:\xampp\htdocs\ria\application\views\banksettlement.php 279
+ERROR - 2019-01-05 10:49:46 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\banksettlement.php 279
+ERROR - 2019-01-05 10:49:46 --> Severity: Notice --> Undefined variable: record C:\xampp\htdocs\ria\application\views\banksettlement.php 325
+ERROR - 2019-01-05 10:49:46 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\banksettlement.php 325
+ERROR - 2019-01-05 10:49:46 --> Severity: Notice --> Undefined variable: t C:\xampp\htdocs\ria\application\views\banksettlement.php 278
+ERROR - 2019-01-05 10:49:46 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\banksettlement.php 278
+ERROR - 2019-01-05 10:49:46 --> Severity: Notice --> Undefined variable: t C:\xampp\htdocs\ria\application\views\banksettlement.php 278
+ERROR - 2019-01-05 10:49:46 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\banksettlement.php 278
+ERROR - 2019-01-05 10:49:46 --> Severity: Notice --> Undefined variable: rel C:\xampp\htdocs\ria\application\views\banksettlement.php 279
+ERROR - 2019-01-05 10:49:46 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\banksettlement.php 279
+ERROR - 2019-01-05 10:49:46 --> Severity: Notice --> Undefined variable: record C:\xampp\htdocs\ria\application\views\banksettlement.php 325
+ERROR - 2019-01-05 10:49:46 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\banksettlement.php 325
+ERROR - 2019-01-05 10:49:47 --> Severity: Notice --> Undefined variable: t C:\xampp\htdocs\ria\application\views\banksettlement.php 278
+ERROR - 2019-01-05 10:49:47 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\banksettlement.php 278
+ERROR - 2019-01-05 10:49:47 --> Severity: Notice --> Undefined variable: t C:\xampp\htdocs\ria\application\views\banksettlement.php 278
+ERROR - 2019-01-05 10:49:47 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\banksettlement.php 278
+ERROR - 2019-01-05 10:49:47 --> Severity: Notice --> Undefined variable: rel C:\xampp\htdocs\ria\application\views\banksettlement.php 279
+ERROR - 2019-01-05 10:49:47 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\banksettlement.php 279
+ERROR - 2019-01-05 10:49:47 --> Severity: Notice --> Undefined variable: t C:\xampp\htdocs\ria\application\views\banksettlement.php 278
+ERROR - 2019-01-05 10:49:47 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\banksettlement.php 278
+ERROR - 2019-01-05 10:49:47 --> Severity: Notice --> Undefined variable: t C:\xampp\htdocs\ria\application\views\banksettlement.php 278
+ERROR - 2019-01-05 10:49:47 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\banksettlement.php 278
+ERROR - 2019-01-05 10:49:47 --> Severity: Notice --> Undefined variable: rel C:\xampp\htdocs\ria\application\views\banksettlement.php 279
+ERROR - 2019-01-05 10:49:47 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\banksettlement.php 279
+ERROR - 2019-01-05 10:49:47 --> Severity: Notice --> Undefined variable: record C:\xampp\htdocs\ria\application\views\banksettlement.php 325
+ERROR - 2019-01-05 10:49:47 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\banksettlement.php 325
+ERROR - 2019-01-05 10:49:47 --> Severity: Notice --> Undefined variable: t C:\xampp\htdocs\ria\application\views\banksettlement.php 278
+ERROR - 2019-01-05 10:49:47 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\banksettlement.php 278
+ERROR - 2019-01-05 10:49:47 --> Severity: Notice --> Undefined variable: t C:\xampp\htdocs\ria\application\views\banksettlement.php 278
+ERROR - 2019-01-05 10:49:47 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\banksettlement.php 278
+ERROR - 2019-01-05 10:49:47 --> Severity: Notice --> Undefined variable: rel C:\xampp\htdocs\ria\application\views\banksettlement.php 279
+ERROR - 2019-01-05 10:49:47 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\banksettlement.php 279
+ERROR - 2019-01-05 10:49:47 --> Severity: Notice --> Undefined variable: record C:\xampp\htdocs\ria\application\views\banksettlement.php 325
+ERROR - 2019-01-05 10:49:48 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\banksettlement.php 325
+ERROR - 2019-01-05 10:50:10 --> Severity: Notice --> Undefined variable: fdate C:\xampp\htdocs\ria\application\controllers\cashbook.php 1737
+ERROR - 2019-01-05 10:50:10 --> Severity: Notice --> Undefined variable: tdate C:\xampp\htdocs\ria\application\controllers\cashbook.php 1737
+ERROR - 2019-01-05 10:50:10 --> Severity: Notice --> Undefined variable: fa C:\xampp\htdocs\ria\application\controllers\cashbook.php 1737
+ERROR - 2019-01-05 10:50:10 --> Severity: Notice --> Undefined variable: aa C:\xampp\htdocs\ria\application\controllers\cashbook.php 1737
+ERROR - 2019-01-05 10:50:12 --> Severity: Notice --> Undefined variable: financialyear C:\xampp\htdocs\ria\application\views\bankstatement.php 2
+ERROR - 2019-01-05 10:50:12 --> Severity: Warning --> Invalid argument supplied for foreach() C:\xampp\htdocs\ria\application\views\bankstatement.php 2
+ERROR - 2019-01-05 10:50:13 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 87
+ERROR - 2019-01-05 10:50:13 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 87
+ERROR - 2019-01-05 10:50:13 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 88
+ERROR - 2019-01-05 10:50:13 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 88
+ERROR - 2019-01-05 10:50:13 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 89
+ERROR - 2019-01-05 10:50:13 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 89
+ERROR - 2019-01-05 10:50:13 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 139
+ERROR - 2019-01-05 10:50:13 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 139
+ERROR - 2019-01-05 10:50:13 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 140
+ERROR - 2019-01-05 10:50:13 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 140
+ERROR - 2019-01-05 10:50:13 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 141
+ERROR - 2019-01-05 10:50:13 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 141
+ERROR - 2019-01-05 10:50:25 --> Severity: Notice --> Undefined variable: financialyear C:\xampp\htdocs\ria\application\views\banksettlement.php 4
+ERROR - 2019-01-05 10:50:25 --> Severity: Warning --> Invalid argument supplied for foreach() C:\xampp\htdocs\ria\application\views\banksettlement.php 4
+ERROR - 2019-01-05 10:50:25 --> Severity: Notice --> Undefined variable: t C:\xampp\htdocs\ria\application\views\banksettlement.php 278
+ERROR - 2019-01-05 10:50:25 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\banksettlement.php 278
+ERROR - 2019-01-05 10:50:25 --> Severity: Notice --> Undefined variable: t C:\xampp\htdocs\ria\application\views\banksettlement.php 278
+ERROR - 2019-01-05 10:50:25 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\banksettlement.php 278
+ERROR - 2019-01-05 10:50:25 --> Severity: Notice --> Undefined variable: rel C:\xampp\htdocs\ria\application\views\banksettlement.php 279
+ERROR - 2019-01-05 10:50:25 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\banksettlement.php 279
+ERROR - 2019-01-05 10:50:25 --> Severity: Notice --> Undefined variable: t C:\xampp\htdocs\ria\application\views\banksettlement.php 278
+ERROR - 2019-01-05 10:50:25 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\banksettlement.php 278
+ERROR - 2019-01-05 10:50:25 --> Severity: Notice --> Undefined variable: t C:\xampp\htdocs\ria\application\views\banksettlement.php 278
+ERROR - 2019-01-05 10:50:25 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\banksettlement.php 278
+ERROR - 2019-01-05 10:50:25 --> Severity: Notice --> Undefined variable: rel C:\xampp\htdocs\ria\application\views\banksettlement.php 279
+ERROR - 2019-01-05 10:50:25 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\banksettlement.php 279
+ERROR - 2019-01-05 10:50:25 --> Severity: Notice --> Undefined variable: record C:\xampp\htdocs\ria\application\views\banksettlement.php 325
+ERROR - 2019-01-05 10:50:25 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\banksettlement.php 325
+ERROR - 2019-01-05 10:50:25 --> Severity: Notice --> Undefined variable: t C:\xampp\htdocs\ria\application\views\banksettlement.php 278
+ERROR - 2019-01-05 10:50:26 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\banksettlement.php 278
+ERROR - 2019-01-05 10:50:26 --> Severity: Notice --> Undefined variable: t C:\xampp\htdocs\ria\application\views\banksettlement.php 278
+ERROR - 2019-01-05 10:50:26 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\banksettlement.php 278
+ERROR - 2019-01-05 10:50:26 --> Severity: Notice --> Undefined variable: rel C:\xampp\htdocs\ria\application\views\banksettlement.php 279
+ERROR - 2019-01-05 10:50:26 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\banksettlement.php 279
+ERROR - 2019-01-05 10:50:26 --> Severity: Notice --> Undefined variable: record C:\xampp\htdocs\ria\application\views\banksettlement.php 325
+ERROR - 2019-01-05 10:50:26 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\banksettlement.php 325
+ERROR - 2019-01-05 10:50:26 --> Severity: Notice --> Undefined variable: t C:\xampp\htdocs\ria\application\views\banksettlement.php 278
+ERROR - 2019-01-05 10:50:26 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\banksettlement.php 278
+ERROR - 2019-01-05 10:50:26 --> Severity: Notice --> Undefined variable: t C:\xampp\htdocs\ria\application\views\banksettlement.php 278
+ERROR - 2019-01-05 10:50:26 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\banksettlement.php 278
+ERROR - 2019-01-05 10:50:26 --> Severity: Notice --> Undefined variable: rel C:\xampp\htdocs\ria\application\views\banksettlement.php 279
+ERROR - 2019-01-05 10:50:26 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\banksettlement.php 279
+ERROR - 2019-01-05 10:50:26 --> Severity: Notice --> Undefined variable: t C:\xampp\htdocs\ria\application\views\banksettlement.php 278
+ERROR - 2019-01-05 10:50:26 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\banksettlement.php 278
+ERROR - 2019-01-05 10:50:26 --> Severity: Notice --> Undefined variable: t C:\xampp\htdocs\ria\application\views\banksettlement.php 278
+ERROR - 2019-01-05 10:50:26 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\banksettlement.php 278
+ERROR - 2019-01-05 10:50:26 --> Severity: Notice --> Undefined variable: rel C:\xampp\htdocs\ria\application\views\banksettlement.php 279
+ERROR - 2019-01-05 10:50:26 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\banksettlement.php 279
+ERROR - 2019-01-05 10:50:26 --> Severity: Notice --> Undefined variable: record C:\xampp\htdocs\ria\application\views\banksettlement.php 325
+ERROR - 2019-01-05 10:50:26 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\banksettlement.php 325
+ERROR - 2019-01-05 10:51:51 --> Severity: Notice --> Undefined variable: financialyear C:\xampp\htdocs\ria\application\views\bankinvoice.php 2
+ERROR - 2019-01-05 10:51:51 --> Severity: Warning --> Invalid argument supplied for foreach() C:\xampp\htdocs\ria\application\views\bankinvoice.php 2
+ERROR - 2019-01-05 10:51:51 --> Severity: Notice --> Undefined variable: cash C:\xampp\htdocs\ria\application\views\bankinvoice.php 84
+ERROR - 2019-01-05 10:51:51 --> Severity: Notice --> Undefined variable: bankid C:\xampp\htdocs\ria\application\views\bankinvoice.php 86
+ERROR - 2019-01-05 10:52:02 --> Severity: Notice --> Undefined variable: financialyear C:\xampp\htdocs\ria\application\views\bankinvoice.php 2
+ERROR - 2019-01-05 10:52:02 --> Severity: Warning --> Invalid argument supplied for foreach() C:\xampp\htdocs\ria\application\views\bankinvoice.php 2
+ERROR - 2019-01-05 10:52:02 --> Severity: Notice --> Undefined variable: cash C:\xampp\htdocs\ria\application\views\bankinvoice.php 84
+ERROR - 2019-01-05 10:52:02 --> Severity: Notice --> Undefined variable: bankid C:\xampp\htdocs\ria\application\views\bankinvoice.php 86
+ERROR - 2019-01-05 10:52:02 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 180
+ERROR - 2019-01-05 10:52:02 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 181
+ERROR - 2019-01-05 10:52:02 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 180
+ERROR - 2019-01-05 10:52:02 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 181
+ERROR - 2019-01-05 10:52:57 --> Severity: Notice --> Undefined variable: fdate C:\xampp\htdocs\ria\application\controllers\cashbook.php 1737
+ERROR - 2019-01-05 10:52:57 --> Severity: Notice --> Undefined variable: tdate C:\xampp\htdocs\ria\application\controllers\cashbook.php 1737
+ERROR - 2019-01-05 10:52:57 --> Severity: Notice --> Undefined variable: fa C:\xampp\htdocs\ria\application\controllers\cashbook.php 1737
+ERROR - 2019-01-05 10:52:57 --> Severity: Notice --> Undefined variable: aa C:\xampp\htdocs\ria\application\controllers\cashbook.php 1737
+ERROR - 2019-01-05 10:53:00 --> Severity: Notice --> Undefined variable: financialyear C:\xampp\htdocs\ria\application\views\bankstatement.php 2
+ERROR - 2019-01-05 10:53:00 --> Severity: Warning --> Invalid argument supplied for foreach() C:\xampp\htdocs\ria\application\views\bankstatement.php 2
+ERROR - 2019-01-05 10:53:00 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 87
+ERROR - 2019-01-05 10:53:00 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 87
+ERROR - 2019-01-05 10:53:00 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 88
+ERROR - 2019-01-05 10:53:00 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 88
+ERROR - 2019-01-05 10:53:00 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 89
+ERROR - 2019-01-05 10:53:00 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 89
+ERROR - 2019-01-05 10:53:00 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 139
+ERROR - 2019-01-05 10:53:00 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 139
+ERROR - 2019-01-05 10:53:00 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 140
+ERROR - 2019-01-05 10:53:00 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 140
+ERROR - 2019-01-05 10:53:00 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 141
+ERROR - 2019-01-05 10:53:00 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 141
+ERROR - 2019-01-05 10:53:17 --> Severity: Notice --> Undefined variable: financialyear C:\xampp\htdocs\ria\application\views\bankinvoicesettlement.php 7
+ERROR - 2019-01-05 10:53:17 --> Severity: Warning --> Invalid argument supplied for foreach() C:\xampp\htdocs\ria\application\views\bankinvoicesettlement.php 7
+ERROR - 2019-01-05 10:53:17 --> Severity: Notice --> Undefined variable: record C:\xampp\htdocs\ria\application\views\bankinvoicesettlement.php 178
+ERROR - 2019-01-05 10:53:17 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoicesettlement.php 178
+ERROR - 2019-01-05 10:53:17 --> Severity: Notice --> Undefined variable: record C:\xampp\htdocs\ria\application\views\bankinvoicesettlement.php 178
+ERROR - 2019-01-05 10:53:17 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoicesettlement.php 178
+ERROR - 2019-01-05 10:53:17 --> Severity: Notice --> Undefined variable: record C:\xampp\htdocs\ria\application\views\bankinvoicesettlement.php 178
+ERROR - 2019-01-05 10:53:17 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoicesettlement.php 178
+ERROR - 2019-01-05 10:53:51 --> Query error: Unknown column 'IsActive' in 'field list'
+ERROR - 2019-01-05 10:55:30 --> Severity: Notice --> Undefined variable: financialyear C:\xampp\htdocs\ria\application\views\bankinvoicesettlement.php 7
+ERROR - 2019-01-05 10:55:30 --> Severity: Warning --> Invalid argument supplied for foreach() C:\xampp\htdocs\ria\application\views\bankinvoicesettlement.php 7
+ERROR - 2019-01-05 10:55:30 --> Severity: Notice --> Undefined variable: record C:\xampp\htdocs\ria\application\views\bankinvoicesettlement.php 178
+ERROR - 2019-01-05 10:55:30 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoicesettlement.php 178
+ERROR - 2019-01-05 10:55:31 --> Severity: Notice --> Undefined variable: record C:\xampp\htdocs\ria\application\views\bankinvoicesettlement.php 178
+ERROR - 2019-01-05 10:55:31 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoicesettlement.php 178
+ERROR - 2019-01-05 10:55:31 --> Severity: Notice --> Undefined variable: record C:\xampp\htdocs\ria\application\views\bankinvoicesettlement.php 178
+ERROR - 2019-01-05 10:55:31 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoicesettlement.php 178
+ERROR - 2019-01-05 11:01:59 --> Severity: Notice --> Undefined variable: financialyear C:\xampp\htdocs\ria\application\views\bankinvoicesettlement.php 7
+ERROR - 2019-01-05 11:02:00 --> Severity: Warning --> Invalid argument supplied for foreach() C:\xampp\htdocs\ria\application\views\bankinvoicesettlement.php 7
+ERROR - 2019-01-05 11:02:00 --> Severity: Notice --> Undefined variable: record C:\xampp\htdocs\ria\application\views\bankinvoicesettlement.php 178
+ERROR - 2019-01-05 11:02:00 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoicesettlement.php 178
+ERROR - 2019-01-05 11:02:00 --> Severity: Notice --> Undefined variable: record C:\xampp\htdocs\ria\application\views\bankinvoicesettlement.php 178
+ERROR - 2019-01-05 11:02:00 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoicesettlement.php 178
+ERROR - 2019-01-05 11:02:00 --> Severity: Notice --> Undefined variable: record C:\xampp\htdocs\ria\application\views\bankinvoicesettlement.php 178
+ERROR - 2019-01-05 11:02:00 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoicesettlement.php 178
+ERROR - 2019-01-05 11:02:22 --> Severity: Notice --> Undefined variable: financialyear C:\xampp\htdocs\ria\application\views\bankinvoicesettlement.php 7
+ERROR - 2019-01-05 11:02:22 --> Severity: Warning --> Invalid argument supplied for foreach() C:\xampp\htdocs\ria\application\views\bankinvoicesettlement.php 7
+ERROR - 2019-01-05 11:02:22 --> Severity: Notice --> Undefined variable: record C:\xampp\htdocs\ria\application\views\bankinvoicesettlement.php 178
+ERROR - 2019-01-05 11:02:22 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoicesettlement.php 178
+ERROR - 2019-01-05 11:02:22 --> Severity: Notice --> Undefined variable: record C:\xampp\htdocs\ria\application\views\bankinvoicesettlement.php 178
+ERROR - 2019-01-05 11:02:22 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoicesettlement.php 178
+ERROR - 2019-01-05 11:02:22 --> Severity: Notice --> Undefined variable: record C:\xampp\htdocs\ria\application\views\bankinvoicesettlement.php 178
+ERROR - 2019-01-05 11:02:22 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoicesettlement.php 178
+ERROR - 2019-01-05 11:07:19 --> Severity: Notice --> Undefined variable: financialyear C:\xampp\htdocs\ria\application\views\bankinvoicesettlement.php 7
+ERROR - 2019-01-05 11:07:19 --> Severity: Warning --> Invalid argument supplied for foreach() C:\xampp\htdocs\ria\application\views\bankinvoicesettlement.php 7
+ERROR - 2019-01-05 11:07:19 --> Severity: Notice --> Undefined variable: record C:\xampp\htdocs\ria\application\views\bankinvoicesettlement.php 178
+ERROR - 2019-01-05 11:07:19 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoicesettlement.php 178
+ERROR - 2019-01-05 11:07:19 --> Severity: Notice --> Undefined variable: record C:\xampp\htdocs\ria\application\views\bankinvoicesettlement.php 178
+ERROR - 2019-01-05 11:07:19 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoicesettlement.php 178
+ERROR - 2019-01-05 11:07:19 --> Severity: Notice --> Undefined variable: record C:\xampp\htdocs\ria\application\views\bankinvoicesettlement.php 178
+ERROR - 2019-01-05 11:07:19 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoicesettlement.php 178
+ERROR - 2019-01-05 11:09:23 --> Severity: Notice --> Undefined variable: financialyear C:\xampp\htdocs\ria\application\views\bankinvoicesettlement.php 7
+ERROR - 2019-01-05 11:09:23 --> Severity: Warning --> Invalid argument supplied for foreach() C:\xampp\htdocs\ria\application\views\bankinvoicesettlement.php 7
+ERROR - 2019-01-05 11:09:23 --> Severity: Notice --> Undefined variable: record C:\xampp\htdocs\ria\application\views\bankinvoicesettlement.php 178
+ERROR - 2019-01-05 11:09:23 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoicesettlement.php 178
+ERROR - 2019-01-05 11:09:46 --> Severity: Notice --> Undefined variable: fdate C:\xampp\htdocs\ria\application\controllers\cashbook.php 1737
+ERROR - 2019-01-05 11:09:46 --> Severity: Notice --> Undefined variable: tdate C:\xampp\htdocs\ria\application\controllers\cashbook.php 1737
+ERROR - 2019-01-05 11:09:46 --> Severity: Notice --> Undefined variable: fa C:\xampp\htdocs\ria\application\controllers\cashbook.php 1737
+ERROR - 2019-01-05 11:09:46 --> Severity: Notice --> Undefined variable: aa C:\xampp\htdocs\ria\application\controllers\cashbook.php 1737
+ERROR - 2019-01-05 11:09:49 --> Severity: Notice --> Undefined variable: financialyear C:\xampp\htdocs\ria\application\views\bankstatement.php 2
+ERROR - 2019-01-05 11:09:49 --> Severity: Warning --> Invalid argument supplied for foreach() C:\xampp\htdocs\ria\application\views\bankstatement.php 2
+ERROR - 2019-01-05 11:09:49 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 87
+ERROR - 2019-01-05 11:09:49 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 87
+ERROR - 2019-01-05 11:09:49 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 88
+ERROR - 2019-01-05 11:09:49 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 88
+ERROR - 2019-01-05 11:09:49 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 89
+ERROR - 2019-01-05 11:09:49 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 89
+ERROR - 2019-01-05 11:09:49 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 139
+ERROR - 2019-01-05 11:09:49 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 139
+ERROR - 2019-01-05 11:09:49 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 140
+ERROR - 2019-01-05 11:09:49 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 140
+ERROR - 2019-01-05 11:09:49 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 141
+ERROR - 2019-01-05 11:09:49 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 141
+ERROR - 2019-01-05 11:10:10 --> Severity: Notice --> Undefined variable: financialyear C:\xampp\htdocs\ria\application\views\bankinvoicesettlement.php 7
+ERROR - 2019-01-05 11:10:10 --> Severity: Warning --> Invalid argument supplied for foreach() C:\xampp\htdocs\ria\application\views\bankinvoicesettlement.php 7
+ERROR - 2019-01-05 11:10:10 --> Severity: Notice --> Undefined variable: record C:\xampp\htdocs\ria\application\views\bankinvoicesettlement.php 178
+ERROR - 2019-01-05 11:10:10 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoicesettlement.php 178
+ERROR - 2019-01-05 11:10:32 --> Severity: Notice --> Undefined variable: fdate C:\xampp\htdocs\ria\application\controllers\cashbook.php 1737
+ERROR - 2019-01-05 11:10:32 --> Severity: Notice --> Undefined variable: tdate C:\xampp\htdocs\ria\application\controllers\cashbook.php 1737
+ERROR - 2019-01-05 11:10:32 --> Severity: Notice --> Undefined variable: fa C:\xampp\htdocs\ria\application\controllers\cashbook.php 1737
+ERROR - 2019-01-05 11:10:32 --> Severity: Notice --> Undefined variable: aa C:\xampp\htdocs\ria\application\controllers\cashbook.php 1737
+ERROR - 2019-01-05 11:10:35 --> Severity: Notice --> Undefined variable: financialyear C:\xampp\htdocs\ria\application\views\bankstatement.php 2
+ERROR - 2019-01-05 11:10:35 --> Severity: Warning --> Invalid argument supplied for foreach() C:\xampp\htdocs\ria\application\views\bankstatement.php 2
+ERROR - 2019-01-05 11:10:35 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 87
+ERROR - 2019-01-05 11:10:35 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 87
+ERROR - 2019-01-05 11:10:35 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 88
+ERROR - 2019-01-05 11:10:35 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 88
+ERROR - 2019-01-05 11:10:35 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 89
+ERROR - 2019-01-05 11:10:35 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 89
+ERROR - 2019-01-05 11:10:35 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 139
+ERROR - 2019-01-05 11:10:35 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 139
+ERROR - 2019-01-05 11:10:35 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 140
+ERROR - 2019-01-05 11:10:35 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 140
+ERROR - 2019-01-05 11:10:35 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 141
+ERROR - 2019-01-05 11:10:36 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 141
+ERROR - 2019-01-05 11:10:58 --> Severity: Notice --> Undefined variable: financialyear C:\xampp\htdocs\ria\application\views\bankinvoice.php 2
+ERROR - 2019-01-05 11:10:58 --> Severity: Warning --> Invalid argument supplied for foreach() C:\xampp\htdocs\ria\application\views\bankinvoice.php 2
+ERROR - 2019-01-05 11:10:58 --> Severity: Notice --> Undefined variable: cash C:\xampp\htdocs\ria\application\views\bankinvoice.php 84
+ERROR - 2019-01-05 11:10:58 --> Severity: Notice --> Undefined variable: bankid C:\xampp\htdocs\ria\application\views\bankinvoice.php 86
+ERROR - 2019-01-05 11:11:19 --> Severity: Notice --> Undefined variable: financialyear C:\xampp\htdocs\ria\application\views\bankinvoice.php 2
+ERROR - 2019-01-05 11:11:19 --> Severity: Warning --> Invalid argument supplied for foreach() C:\xampp\htdocs\ria\application\views\bankinvoice.php 2
+ERROR - 2019-01-05 11:11:20 --> Severity: Notice --> Undefined variable: cash C:\xampp\htdocs\ria\application\views\bankinvoice.php 84
+ERROR - 2019-01-05 11:11:20 --> Severity: Notice --> Undefined variable: bankid C:\xampp\htdocs\ria\application\views\bankinvoice.php 86
+ERROR - 2019-01-05 11:11:20 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 180
+ERROR - 2019-01-05 11:11:20 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 181
+ERROR - 2019-01-05 11:11:20 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 180
+ERROR - 2019-01-05 11:11:20 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 181
+ERROR - 2019-01-05 11:12:01 --> Severity: Notice --> Undefined variable: fdate C:\xampp\htdocs\ria\application\controllers\cashbook.php 1737
+ERROR - 2019-01-05 11:12:01 --> Severity: Notice --> Undefined variable: tdate C:\xampp\htdocs\ria\application\controllers\cashbook.php 1737
+ERROR - 2019-01-05 11:12:01 --> Severity: Notice --> Undefined variable: fa C:\xampp\htdocs\ria\application\controllers\cashbook.php 1737
+ERROR - 2019-01-05 11:12:01 --> Severity: Notice --> Undefined variable: aa C:\xampp\htdocs\ria\application\controllers\cashbook.php 1737
+ERROR - 2019-01-05 11:12:04 --> Severity: Notice --> Undefined variable: financialyear C:\xampp\htdocs\ria\application\views\bankstatement.php 2
+ERROR - 2019-01-05 11:12:04 --> Severity: Warning --> Invalid argument supplied for foreach() C:\xampp\htdocs\ria\application\views\bankstatement.php 2
+ERROR - 2019-01-05 11:12:04 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 87
+ERROR - 2019-01-05 11:12:04 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 87
+ERROR - 2019-01-05 11:12:04 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 88
+ERROR - 2019-01-05 11:12:04 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 88
+ERROR - 2019-01-05 11:12:04 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 89
+ERROR - 2019-01-05 11:12:04 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 89
+ERROR - 2019-01-05 11:12:04 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 139
+ERROR - 2019-01-05 11:12:04 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 139
+ERROR - 2019-01-05 11:12:04 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 140
+ERROR - 2019-01-05 11:12:04 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 140
+ERROR - 2019-01-05 11:12:04 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 141
+ERROR - 2019-01-05 11:12:04 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 141
+ERROR - 2019-01-05 11:12:40 --> Severity: Notice --> Undefined variable: financialyear C:\xampp\htdocs\ria\application\views\bankinvoicesettlement.php 7
+ERROR - 2019-01-05 11:12:40 --> Severity: Warning --> Invalid argument supplied for foreach() C:\xampp\htdocs\ria\application\views\bankinvoicesettlement.php 7
+ERROR - 2019-01-05 11:12:41 --> Severity: Notice --> Undefined variable: record C:\xampp\htdocs\ria\application\views\bankinvoicesettlement.php 178
+ERROR - 2019-01-05 11:12:41 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoicesettlement.php 178
+ERROR - 2019-01-05 11:14:54 --> Severity: Notice --> Undefined variable: fdate C:\xampp\htdocs\ria\application\controllers\cashbook.php 1737
+ERROR - 2019-01-05 11:14:54 --> Severity: Notice --> Undefined variable: tdate C:\xampp\htdocs\ria\application\controllers\cashbook.php 1737
+ERROR - 2019-01-05 11:14:54 --> Severity: Notice --> Undefined variable: fa C:\xampp\htdocs\ria\application\controllers\cashbook.php 1737
+ERROR - 2019-01-05 11:14:54 --> Severity: Notice --> Undefined variable: aa C:\xampp\htdocs\ria\application\controllers\cashbook.php 1737
+ERROR - 2019-01-05 11:14:56 --> Severity: Notice --> Undefined variable: financialyear C:\xampp\htdocs\ria\application\views\bankstatement.php 2
+ERROR - 2019-01-05 11:14:56 --> Severity: Warning --> Invalid argument supplied for foreach() C:\xampp\htdocs\ria\application\views\bankstatement.php 2
+ERROR - 2019-01-05 11:14:57 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 87
+ERROR - 2019-01-05 11:14:57 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 87
+ERROR - 2019-01-05 11:14:57 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 88
+ERROR - 2019-01-05 11:14:57 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 88
+ERROR - 2019-01-05 11:14:57 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 89
+ERROR - 2019-01-05 11:14:57 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 89
+ERROR - 2019-01-05 11:14:57 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 139
+ERROR - 2019-01-05 11:14:57 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 139
+ERROR - 2019-01-05 11:14:57 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 140
+ERROR - 2019-01-05 11:14:57 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 140
+ERROR - 2019-01-05 11:14:57 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 141
+ERROR - 2019-01-05 11:14:57 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 141
+ERROR - 2019-01-05 11:15:18 --> Severity: Notice --> Undefined variable: financialyear C:\xampp\htdocs\ria\application\views\bankinvoice.php 2
+ERROR - 2019-01-05 11:15:19 --> Severity: Warning --> Invalid argument supplied for foreach() C:\xampp\htdocs\ria\application\views\bankinvoice.php 2
+ERROR - 2019-01-05 11:15:19 --> Severity: Notice --> Undefined variable: cash C:\xampp\htdocs\ria\application\views\bankinvoice.php 84
+ERROR - 2019-01-05 11:15:19 --> Severity: Notice --> Undefined variable: bankid C:\xampp\htdocs\ria\application\views\bankinvoice.php 86
+ERROR - 2019-01-05 11:15:36 --> Severity: Notice --> Undefined variable: financialyear C:\xampp\htdocs\ria\application\views\bankinvoice.php 2
+ERROR - 2019-01-05 11:15:36 --> Severity: Warning --> Invalid argument supplied for foreach() C:\xampp\htdocs\ria\application\views\bankinvoice.php 2
+ERROR - 2019-01-05 11:15:37 --> Severity: Notice --> Undefined variable: cash C:\xampp\htdocs\ria\application\views\bankinvoice.php 84
+ERROR - 2019-01-05 11:15:37 --> Severity: Notice --> Undefined variable: bankid C:\xampp\htdocs\ria\application\views\bankinvoice.php 86
+ERROR - 2019-01-05 11:15:37 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 180
+ERROR - 2019-01-05 11:15:37 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 181
+ERROR - 2019-01-05 11:15:37 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 180
+ERROR - 2019-01-05 11:15:37 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 181
+ERROR - 2019-01-05 11:17:38 --> Severity: Notice --> Undefined variable: fdate C:\xampp\htdocs\ria\application\controllers\cashbook.php 1737
+ERROR - 2019-01-05 11:17:38 --> Severity: Notice --> Undefined variable: tdate C:\xampp\htdocs\ria\application\controllers\cashbook.php 1737
+ERROR - 2019-01-05 11:17:38 --> Severity: Notice --> Undefined variable: fa C:\xampp\htdocs\ria\application\controllers\cashbook.php 1737
+ERROR - 2019-01-05 11:17:38 --> Severity: Notice --> Undefined variable: aa C:\xampp\htdocs\ria\application\controllers\cashbook.php 1737
+ERROR - 2019-01-05 11:17:41 --> Severity: Notice --> Undefined variable: financialyear C:\xampp\htdocs\ria\application\views\bankstatement.php 2
+ERROR - 2019-01-05 11:17:41 --> Severity: Warning --> Invalid argument supplied for foreach() C:\xampp\htdocs\ria\application\views\bankstatement.php 2
+ERROR - 2019-01-05 11:17:41 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 87
+ERROR - 2019-01-05 11:17:41 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 87
+ERROR - 2019-01-05 11:17:41 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 88
+ERROR - 2019-01-05 11:17:41 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 88
+ERROR - 2019-01-05 11:17:41 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 89
+ERROR - 2019-01-05 11:17:41 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 89
+ERROR - 2019-01-05 11:17:41 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 139
+ERROR - 2019-01-05 11:17:41 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 139
+ERROR - 2019-01-05 11:17:41 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 140
+ERROR - 2019-01-05 11:17:41 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 140
+ERROR - 2019-01-05 11:17:41 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 141
+ERROR - 2019-01-05 11:17:42 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 141
+ERROR - 2019-01-05 11:18:09 --> Severity: Notice --> Undefined variable: financialyear C:\xampp\htdocs\ria\application\views\bankinvoicesettlement.php 7
+ERROR - 2019-01-05 11:18:09 --> Severity: Warning --> Invalid argument supplied for foreach() C:\xampp\htdocs\ria\application\views\bankinvoicesettlement.php 7
+ERROR - 2019-01-05 11:18:09 --> Severity: Notice --> Undefined variable: record C:\xampp\htdocs\ria\application\views\bankinvoicesettlement.php 178
+ERROR - 2019-01-05 11:18:09 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoicesettlement.php 178
+ERROR - 2019-01-05 11:18:09 --> Severity: Notice --> Undefined variable: record C:\xampp\htdocs\ria\application\views\bankinvoicesettlement.php 178
+ERROR - 2019-01-05 11:18:09 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoicesettlement.php 178
+ERROR - 2019-01-05 11:19:12 --> Query error: Unknown column 'IsActive' in 'field list'
+ERROR - 2019-01-05 11:33:16 --> Severity: Notice --> Undefined variable: fdate C:\xampp\htdocs\ria\application\controllers\cashbook.php 1737
+ERROR - 2019-01-05 11:33:16 --> Severity: Notice --> Undefined variable: tdate C:\xampp\htdocs\ria\application\controllers\cashbook.php 1737
+ERROR - 2019-01-05 11:33:16 --> Severity: Notice --> Undefined variable: fa C:\xampp\htdocs\ria\application\controllers\cashbook.php 1737
+ERROR - 2019-01-05 11:33:16 --> Severity: Notice --> Undefined variable: aa C:\xampp\htdocs\ria\application\controllers\cashbook.php 1737
+ERROR - 2019-01-05 11:33:18 --> Severity: Notice --> Undefined variable: financialyear C:\xampp\htdocs\ria\application\views\bankstatement.php 2
+ERROR - 2019-01-05 11:33:18 --> Severity: Warning --> Invalid argument supplied for foreach() C:\xampp\htdocs\ria\application\views\bankstatement.php 2
+ERROR - 2019-01-05 11:33:18 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 87
+ERROR - 2019-01-05 11:33:18 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 87
+ERROR - 2019-01-05 11:33:18 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 88
+ERROR - 2019-01-05 11:33:18 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 88
+ERROR - 2019-01-05 11:33:18 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 89
+ERROR - 2019-01-05 11:33:18 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 89
+ERROR - 2019-01-05 11:33:18 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 139
+ERROR - 2019-01-05 11:33:18 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 139
+ERROR - 2019-01-05 11:33:18 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 140
+ERROR - 2019-01-05 11:33:18 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 140
+ERROR - 2019-01-05 11:33:18 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 141
+ERROR - 2019-01-05 11:33:18 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 141
+ERROR - 2019-01-05 11:33:19 --> Severity: Notice --> Undefined variable: financialyear C:\xampp\htdocs\ria\application\views\bankinvoice.php 2
+ERROR - 2019-01-05 11:33:19 --> Severity: Warning --> Invalid argument supplied for foreach() C:\xampp\htdocs\ria\application\views\bankinvoice.php 2
+ERROR - 2019-01-05 11:33:19 --> Severity: Notice --> Undefined variable: cash C:\xampp\htdocs\ria\application\views\bankinvoice.php 84
+ERROR - 2019-01-05 11:33:19 --> Severity: Notice --> Undefined variable: bankid C:\xampp\htdocs\ria\application\views\bankinvoice.php 86
+ERROR - 2019-01-05 11:33:19 --> Severity: Notice --> Undefined variable: financialyear C:\xampp\htdocs\ria\application\views\bankinvoice.php 2
+ERROR - 2019-01-05 11:33:19 --> Severity: Warning --> Invalid argument supplied for foreach() C:\xampp\htdocs\ria\application\views\bankinvoice.php 2
+ERROR - 2019-01-05 11:33:19 --> Severity: Notice --> Undefined variable: cash C:\xampp\htdocs\ria\application\views\bankinvoice.php 84
+ERROR - 2019-01-05 11:33:19 --> Severity: Notice --> Undefined variable: bankid C:\xampp\htdocs\ria\application\views\bankinvoice.php 86
+ERROR - 2019-01-05 11:33:19 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 180
+ERROR - 2019-01-05 11:33:19 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 181
+ERROR - 2019-01-05 11:33:19 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 180
+ERROR - 2019-01-05 11:33:19 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 181
+ERROR - 2019-01-05 11:33:33 --> Severity: Notice --> Undefined variable: financialyear C:\xampp\htdocs\ria\application\views\bankinvoice.php 2
+ERROR - 2019-01-05 11:33:33 --> Severity: Warning --> Invalid argument supplied for foreach() C:\xampp\htdocs\ria\application\views\bankinvoice.php 2
+ERROR - 2019-01-05 11:33:34 --> Severity: Notice --> Undefined variable: cash C:\xampp\htdocs\ria\application\views\bankinvoice.php 84
+ERROR - 2019-01-05 11:33:34 --> Severity: Notice --> Undefined variable: bankid C:\xampp\htdocs\ria\application\views\bankinvoice.php 86
+ERROR - 2019-01-05 11:33:34 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 180
+ERROR - 2019-01-05 11:33:34 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 181
+ERROR - 2019-01-05 11:33:34 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 180
+ERROR - 2019-01-05 11:33:34 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 181
+ERROR - 2019-01-05 11:42:43 --> Severity: Notice --> Undefined variable: financialyear C:\xampp\htdocs\ria\application\views\bankinvoice.php 2
+ERROR - 2019-01-05 11:42:43 --> Severity: Warning --> Invalid argument supplied for foreach() C:\xampp\htdocs\ria\application\views\bankinvoice.php 2
+ERROR - 2019-01-05 11:42:43 --> Severity: Notice --> Undefined variable: cash C:\xampp\htdocs\ria\application\views\bankinvoice.php 84
+ERROR - 2019-01-05 11:42:43 --> Severity: Notice --> Undefined variable: bankid C:\xampp\htdocs\ria\application\views\bankinvoice.php 86
+ERROR - 2019-01-05 11:42:44 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 180
+ERROR - 2019-01-05 11:42:44 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 181
+ERROR - 2019-01-05 11:42:44 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 180
+ERROR - 2019-01-05 11:42:44 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 181
+ERROR - 2019-01-05 11:43:13 --> Severity: Notice --> Undefined variable: financialyear C:\xampp\htdocs\ria\application\views\bankinvoice.php 2
+ERROR - 2019-01-05 11:43:14 --> Severity: Warning --> Invalid argument supplied for foreach() C:\xampp\htdocs\ria\application\views\bankinvoice.php 2
+ERROR - 2019-01-05 11:43:14 --> Severity: Notice --> Undefined variable: cash C:\xampp\htdocs\ria\application\views\bankinvoice.php 84
+ERROR - 2019-01-05 11:43:14 --> Severity: Notice --> Undefined variable: bankid C:\xampp\htdocs\ria\application\views\bankinvoice.php 86
+ERROR - 2019-01-05 11:43:14 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 180
+ERROR - 2019-01-05 11:43:14 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 181
+ERROR - 2019-01-05 11:43:14 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 180
+ERROR - 2019-01-05 11:43:14 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 181
+ERROR - 2019-01-05 11:43:53 --> Severity: Notice --> Undefined variable: creditdebit C:\xampp\htdocs\ria\application\views\bankingfile.php 132
+ERROR - 2019-01-05 11:44:04 --> Severity: Notice --> Undefined variable: fdate C:\xampp\htdocs\ria\application\controllers\cashbook.php 1737
+ERROR - 2019-01-05 11:44:04 --> Severity: Notice --> Undefined variable: tdate C:\xampp\htdocs\ria\application\controllers\cashbook.php 1737
+ERROR - 2019-01-05 11:44:04 --> Severity: Notice --> Undefined variable: fa C:\xampp\htdocs\ria\application\controllers\cashbook.php 1737
+ERROR - 2019-01-05 11:44:04 --> Severity: Notice --> Undefined variable: aa C:\xampp\htdocs\ria\application\controllers\cashbook.php 1737
+ERROR - 2019-01-05 11:44:05 --> Severity: Notice --> Undefined variable: financialyear C:\xampp\htdocs\ria\application\views\bankstatement.php 2
+ERROR - 2019-01-05 11:44:06 --> Severity: Warning --> Invalid argument supplied for foreach() C:\xampp\htdocs\ria\application\views\bankstatement.php 2
+ERROR - 2019-01-05 11:44:06 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 87
+ERROR - 2019-01-05 11:44:06 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 87
+ERROR - 2019-01-05 11:44:06 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 88
+ERROR - 2019-01-05 11:44:06 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 88
+ERROR - 2019-01-05 11:44:06 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 89
+ERROR - 2019-01-05 11:44:06 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 89
+ERROR - 2019-01-05 11:44:06 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 139
+ERROR - 2019-01-05 11:44:06 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 139
+ERROR - 2019-01-05 11:44:06 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 140
+ERROR - 2019-01-05 11:44:06 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 140
+ERROR - 2019-01-05 11:44:06 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 141
+ERROR - 2019-01-05 11:44:06 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 141
+ERROR - 2019-01-05 11:44:06 --> Severity: Notice --> Undefined variable: Bankname C:\xampp\htdocs\ria\application\views\bankstatement.php 237
+ERROR - 2019-01-05 11:44:22 --> Severity: Notice --> Undefined variable: creditdebit C:\xampp\htdocs\ria\application\views\bankingfile.php 132
+ERROR - 2019-01-05 11:44:46 --> Severity: Notice --> Undefined variable: filename C:\xampp\htdocs\ria\application\controllers\cashbook.php 235
+ERROR - 2019-01-05 11:44:46 --> The upload path does not appear to be valid.
+ERROR - 2019-01-05 11:44:50 --> Severity: Warning --> DOMDocument::loadHTML(): Attribute width redefined in Entity, line: 21 C:\xampp\htdocs\ria\application\third_party\PHPExcel\Reader\HTML.php 495
+ERROR - 2019-01-05 11:44:50 --> Severity: Warning --> DOMDocument::loadHTML(): Unexpected end tag : table-- in Entity, line: 156 C:\xampp\htdocs\ria\application\third_party\PHPExcel\Reader\HTML.php 495
+ERROR - 2019-01-05 11:44:51 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 444
+ERROR - 2019-01-05 11:44:51 --> Severity: Notice --> Undefined index: Balance C:\xampp\htdocs\ria\application\models\cashbook_model.php 394
+ERROR - 2019-01-05 11:44:52 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 444
+ERROR - 2019-01-05 11:44:52 --> Severity: Notice --> Undefined index: reportdate C:\xampp\htdocs\ria\application\models\cashbook_model.php 392
+ERROR - 2019-01-05 11:44:52 --> Severity: Notice --> Undefined index: Narration C:\xampp\htdocs\ria\application\models\cashbook_model.php 393
+ERROR - 2019-01-05 11:44:52 --> Severity: Notice --> Undefined index: Balance C:\xampp\htdocs\ria\application\models\cashbook_model.php 394
+ERROR - 2019-01-05 11:44:53 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 444
+ERROR - 2019-01-05 11:44:53 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 444
+ERROR - 2019-01-05 11:44:54 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 444
+ERROR - 2019-01-05 11:44:55 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 444
+ERROR - 2019-01-05 11:44:56 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 444
+ERROR - 2019-01-05 11:44:56 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 444
+ERROR - 2019-01-05 11:45:03 --> Severity: Notice --> Undefined variable: fdate C:\xampp\htdocs\ria\application\controllers\cashbook.php 1737
+ERROR - 2019-01-05 11:45:03 --> Severity: Notice --> Undefined variable: tdate C:\xampp\htdocs\ria\application\controllers\cashbook.php 1737
+ERROR - 2019-01-05 11:45:03 --> Severity: Notice --> Undefined variable: fa C:\xampp\htdocs\ria\application\controllers\cashbook.php 1737
+ERROR - 2019-01-05 11:45:03 --> Severity: Notice --> Undefined variable: aa C:\xampp\htdocs\ria\application\controllers\cashbook.php 1737
+ERROR - 2019-01-05 11:45:05 --> Severity: Notice --> Undefined variable: financialyear C:\xampp\htdocs\ria\application\views\bankstatement.php 2
+ERROR - 2019-01-05 11:45:05 --> Severity: Warning --> Invalid argument supplied for foreach() C:\xampp\htdocs\ria\application\views\bankstatement.php 2
+ERROR - 2019-01-05 11:45:05 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 87
+ERROR - 2019-01-05 11:45:05 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 87
+ERROR - 2019-01-05 11:45:05 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 88
+ERROR - 2019-01-05 11:45:05 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 88
+ERROR - 2019-01-05 11:45:05 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 89
+ERROR - 2019-01-05 11:45:05 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 89
+ERROR - 2019-01-05 11:45:05 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 139
+ERROR - 2019-01-05 11:45:05 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 139
+ERROR - 2019-01-05 11:45:05 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 140
+ERROR - 2019-01-05 11:45:05 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 140
+ERROR - 2019-01-05 11:45:05 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 141
+ERROR - 2019-01-05 11:45:05 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 141
+ERROR - 2019-01-05 11:45:45 --> Severity: Notice --> Undefined variable: fdate C:\xampp\htdocs\ria\application\controllers\cashbook.php 1737
+ERROR - 2019-01-05 11:45:45 --> Severity: Notice --> Undefined variable: tdate C:\xampp\htdocs\ria\application\controllers\cashbook.php 1737
+ERROR - 2019-01-05 11:45:45 --> Severity: Notice --> Undefined variable: fa C:\xampp\htdocs\ria\application\controllers\cashbook.php 1737
+ERROR - 2019-01-05 11:45:45 --> Severity: Notice --> Undefined variable: aa C:\xampp\htdocs\ria\application\controllers\cashbook.php 1737
+ERROR - 2019-01-05 11:45:47 --> Severity: Notice --> Undefined variable: financialyear C:\xampp\htdocs\ria\application\views\bankstatement.php 2
+ERROR - 2019-01-05 11:45:47 --> Severity: Warning --> Invalid argument supplied for foreach() C:\xampp\htdocs\ria\application\views\bankstatement.php 2
+ERROR - 2019-01-05 11:45:47 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 87
+ERROR - 2019-01-05 11:45:47 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 87
+ERROR - 2019-01-05 11:45:47 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 88
+ERROR - 2019-01-05 11:45:47 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 88
+ERROR - 2019-01-05 11:45:47 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 89
+ERROR - 2019-01-05 11:45:47 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 89
+ERROR - 2019-01-05 11:45:47 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 139
+ERROR - 2019-01-05 11:45:47 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 139
+ERROR - 2019-01-05 11:45:47 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 140
+ERROR - 2019-01-05 11:45:47 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 140
+ERROR - 2019-01-05 11:45:48 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 141
+ERROR - 2019-01-05 11:45:48 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 141
+ERROR - 2019-01-05 11:45:48 --> Severity: Notice --> Undefined variable: Bankname C:\xampp\htdocs\ria\application\views\bankstatement.php 237
+ERROR - 2019-01-05 11:45:58 --> Severity: Notice --> Undefined variable: creditdebit C:\xampp\htdocs\ria\application\views\bankingfile.php 132
+ERROR - 2019-01-05 11:46:33 --> Severity: Notice --> Undefined variable: filename C:\xampp\htdocs\ria\application\controllers\cashbook.php 235
+ERROR - 2019-01-05 11:46:33 --> The upload path does not appear to be valid.
+ERROR - 2019-01-05 11:46:33 --> Severity: Warning --> DOMDocument::loadHTML(): htmlParseStartTag: invalid element name in Entity, line: 13 C:\xampp\htdocs\ria\application\third_party\PHPExcel\Reader\HTML.php 495
+ERROR - 2019-01-05 11:46:33 --> Severity: Warning --> DOMDocument::loadHTML(): ID shLink already defined in Entity, line: 16 C:\xampp\htdocs\ria\application\third_party\PHPExcel\Reader\HTML.php 495
+ERROR - 2019-01-05 11:46:34 --> Severity: Warning --> DOMDocument::loadHTML(): Unexpected end tag : frameset in Entity, line: 57 C:\xampp\htdocs\ria\application\third_party\PHPExcel\Reader\HTML.php 495
+ERROR - 2019-01-05 11:46:34 --> Severity: Warning --> DOMDocument::loadHTML(): Unexpected end tag : frameset in Entity, line: 57 C:\xampp\htdocs\ria\application\third_party\PHPExcel\Reader\HTML.php 495
+ERROR - 2019-01-05 11:46:34 --> Severity: Warning --> DOMDocument::loadHTML(): Unexpected end tag : style in Entity, line: 72 C:\xampp\htdocs\ria\application\third_party\PHPExcel\Reader\HTML.php 495
+ERROR - 2019-01-05 11:46:34 --> Severity: Warning --> DOMDocument::loadHTML(): htmlParseStartTag: misplaced <body> tag in Entity, line: 73 C:\xampp\htdocs\ria\application\third_party\PHPExcel\Reader\HTML.php 495
+ERROR - 2019-01-05 11:46:34 --> Severity: Warning --> DOMDocument::loadHTML(): ID tdScroll already defined in Entity, line: 77 C:\xampp\htdocs\ria\application\third_party\PHPExcel\Reader\HTML.php 495
+ERROR - 2019-01-05 11:46:34 --> Severity: Warning --> DOMDocument::loadHTML(): htmlParseEntityRef: expecting ';' in Entity, line: 77 C:\xampp\htdocs\ria\application\third_party\PHPExcel\Reader\HTML.php 495
+ERROR - 2019-01-05 11:46:34 --> Severity: Warning --> DOMDocument::loadHTML(): ID tdScroll already defined in Entity, line: 78 C:\xampp\htdocs\ria\application\third_party\PHPExcel\Reader\HTML.php 495
+ERROR - 2019-01-05 11:46:34 --> Severity: Warning --> DOMDocument::loadHTML(): htmlParseEntityRef: expecting ';' in Entity, line: 78 C:\xampp\htdocs\ria\application\third_party\PHPExcel\Reader\HTML.php 495
+ERROR - 2019-01-05 11:46:34 --> Severity: Warning --> DOMDocument::loadHTML(): ID tdScroll already defined in Entity, line: 79 C:\xampp\htdocs\ria\application\third_party\PHPExcel\Reader\HTML.php 495
+ERROR - 2019-01-05 11:46:34 --> Severity: Warning --> DOMDocument::loadHTML(): htmlParseStartTag: misplaced <html> tag in Entity, line: 89 C:\xampp\htdocs\ria\application\third_party\PHPExcel\Reader\HTML.php 495
+ERROR - 2019-01-05 11:46:34 --> Severity: Warning --> DOMDocument::loadHTML(): error parsing attribute name in Entity, line: 99 C:\xampp\htdocs\ria\application\third_party\PHPExcel\Reader\HTML.php 495
+ERROR - 2019-01-05 11:46:34 --> Severity: Warning --> DOMDocument::loadHTML(): error parsing attribute name in Entity, line: 100 C:\xampp\htdocs\ria\application\third_party\PHPExcel\Reader\HTML.php 495
+ERROR - 2019-01-05 11:46:34 --> Severity: Warning --> DOMDocument::loadHTML(): Tag icellcount invalid in Entity, line: 100 C:\xampp\htdocs\ria\application\third_party\PHPExcel\Reader\HTML.php 495
+ERROR - 2019-01-05 11:46:34 --> Severity: Warning --> DOMDocument::loadHTML(): htmlParseStartTag: invalid element name in Entity, line: 103 C:\xampp\htdocs\ria\application\third_party\PHPExcel\Reader\HTML.php 495
+ERROR - 2019-01-05 11:46:34 --> Severity: Warning --> DOMDocument::loadHTML(): error parsing attribute name in Entity, line: 111 C:\xampp\htdocs\ria\application\third_party\PHPExcel\Reader\HTML.php 495
+ERROR - 2019-01-05 11:46:34 --> Severity: Warning --> DOMDocument::loadHTML(): error parsing attribute name in Entity, line: 112 C:\xampp\htdocs\ria\application\third_party\PHPExcel\Reader\HTML.php 495
+ERROR - 2019-01-05 11:46:34 --> Severity: Warning --> DOMDocument::loadHTML(): Tag icellcount invalid in Entity, line: 112 C:\xampp\htdocs\ria\application\third_party\PHPExcel\Reader\HTML.php 495
+ERROR - 2019-01-05 11:46:34 --> Severity: Warning --> DOMDocument::loadHTML(): Unexpected end tag : td in Entity, line: 112 C:\xampp\htdocs\ria\application\third_party\PHPExcel\Reader\HTML.php 495
+ERROR - 2019-01-05 11:46:34 --> Severity: Warning --> DOMDocument::loadHTML(): error parsing attribute name in Entity, line: 114 C:\xampp\htdocs\ria\application\third_party\PHPExcel\Reader\HTML.php 495
+ERROR - 2019-01-05 11:46:35 --> Severity: Warning --> DOMDocument::loadHTML(): error parsing attribute name in Entity, line: 114 C:\xampp\htdocs\ria\application\third_party\PHPExcel\Reader\HTML.php 495
+ERROR - 2019-01-05 11:46:35 --> Severity: Warning --> DOMDocument::loadHTML(): error parsing attribute name in Entity, line: 115 C:\xampp\htdocs\ria\application\third_party\PHPExcel\Reader\HTML.php 495
+ERROR - 2019-01-05 11:46:35 --> Severity: Warning --> DOMDocument::loadHTML(): Tag c_ltabs invalid in Entity, line: 115 C:\xampp\htdocs\ria\application\third_party\PHPExcel\Reader\HTML.php 495
+ERROR - 2019-01-05 11:46:35 --> Severity: Warning --> DOMDocument::loadHTML(): Unexpected end tag : td in Entity, line: 115 C:\xampp\htdocs\ria\application\third_party\PHPExcel\Reader\HTML.php 495
+ERROR - 2019-01-05 11:46:35 --> Severity: Warning --> DOMDocument::loadHTML(): ID tdTab already defined in Entity, line: 120 C:\xampp\htdocs\ria\application\third_party\PHPExcel\Reader\HTML.php 495
+ERROR - 2019-01-05 11:46:35 --> Severity: Warning --> DOMDocument::loadHTML(): ID aTab already defined in Entity, line: 120 C:\xampp\htdocs\ria\application\third_party\PHPExcel\Reader\HTML.php 495
+ERROR - 2019-01-05 11:46:35 --> Severity: Warning --> DOMDocument::loadHTML(): error parsing attribute name in Entity, line: 122 C:\xampp\htdocs\ria\application\third_party\PHPExcel\Reader\HTML.php 495
+ERROR - 2019-01-05 11:46:35 --> Severity: Warning --> DOMDocument::loadHTML(): error parsing attribute name in Entity, line: 123 C:\xampp\htdocs\ria\application\third_party\PHPExcel\Reader\HTML.php 495
+ERROR - 2019-01-05 11:46:35 --> Severity: Warning --> DOMDocument::loadHTML(): Tag c_ltabs invalid in Entity, line: 123 C:\xampp\htdocs\ria\application\third_party\PHPExcel\Reader\HTML.php 495
+ERROR - 2019-01-05 11:46:35 --> Severity: Warning --> DOMDocument::loadHTML(): Unexpected end tag : td in Entity, line: 123 C:\xampp\htdocs\ria\application\third_party\PHPExcel\Reader\HTML.php 495
+ERROR - 2019-01-05 11:46:35 --> Severity: Warning --> DOMDocument::loadHTML(): error parsing attribute name in Entity, line: 126 C:\xampp\htdocs\ria\application\third_party\PHPExcel\Reader\HTML.php 495
+ERROR - 2019-01-05 11:46:35 --> Severity: Warning --> DOMDocument::loadHTML(): error parsing attribute name in Entity, line: 127 C:\xampp\htdocs\ria\application\third_party\PHPExcel\Reader\HTML.php 495
+ERROR - 2019-01-05 11:46:35 --> Severity: Warning --> DOMDocument::loadHTML(): Tag icellcount invalid in Entity, line: 127 C:\xampp\htdocs\ria\application\third_party\PHPExcel\Reader\HTML.php 495
+ERROR - 2019-01-05 11:46:35 --> Severity: Warning --> DOMDocument::loadHTML(): Unexpected end tag : td in Entity, line: 127 C:\xampp\htdocs\ria\application\third_party\PHPExcel\Reader\HTML.php 495
+ERROR - 2019-01-05 11:46:35 --> Severity: Warning --> DOMDocument::loadHTML(): error parsing attribute name in Entity, line: 129 C:\xampp\htdocs\ria\application\third_party\PHPExcel\Reader\HTML.php 495
+ERROR - 2019-01-05 11:46:35 --> Severity: Warning --> DOMDocument::loadHTML(): error parsing attribute name in Entity, line: 130 C:\xampp\htdocs\ria\application\third_party\PHPExcel\Reader\HTML.php 495
+ERROR - 2019-01-05 11:46:35 --> Severity: Warning --> DOMDocument::loadHTML(): Tag c_ltabs invalid in Entity, line: 130 C:\xampp\htdocs\ria\application\third_party\PHPExcel\Reader\HTML.php 495
+ERROR - 2019-01-05 11:46:35 --> Severity: Warning --> DOMDocument::loadHTML(): Unexpected end tag : td in Entity, line: 130 C:\xampp\htdocs\ria\application\third_party\PHPExcel\Reader\HTML.php 495
+ERROR - 2019-01-05 11:46:35 --> Severity: Warning --> DOMDocument::loadHTML(): Unexpected end tag : tr in Entity, line: 134 C:\xampp\htdocs\ria\application\third_party\PHPExcel\Reader\HTML.php 495
+ERROR - 2019-01-05 11:46:35 --> Severity: Warning --> DOMDocument::loadHTML(): htmlParseStartTag: invalid element name in Entity, line: 150 C:\xampp\htdocs\ria\application\third_party\PHPExcel\Reader\HTML.php 495
+ERROR - 2019-01-05 11:46:36 --> Severity: Warning --> DOMDocument::loadHTML(): error parsing attribute name in Entity, line: 168 C:\xampp\htdocs\ria\application\third_party\PHPExcel\Reader\HTML.php 495
+ERROR - 2019-01-05 11:46:36 --> Severity: Warning --> DOMDocument::loadHTML(): error parsing attribute name in Entity, line: 169 C:\xampp\htdocs\ria\application\third_party\PHPExcel\Reader\HTML.php 495
+ERROR - 2019-01-05 11:46:36 --> Severity: Warning --> DOMDocument::loadHTML(): error parsing attribute name in Entity, line: 171 C:\xampp\htdocs\ria\application\third_party\PHPExcel\Reader\HTML.php 495
+ERROR - 2019-01-05 11:46:36 --> Severity: Warning --> DOMDocument::loadHTML(): error parsing attribute name in Entity, line: 172 C:\xampp\htdocs\ria\application\third_party\PHPExcel\Reader\HTML.php 495
+ERROR - 2019-01-05 11:46:36 --> Severity: Warning --> DOMDocument::loadHTML(): error parsing attribute name in Entity, line: 172 C:\xampp\htdocs\ria\application\third_party\PHPExcel\Reader\HTML.php 495
+ERROR - 2019-01-05 11:46:36 --> Severity: Warning --> DOMDocument::loadHTML(): Attribute if redefined in Entity, line: 173 C:\xampp\htdocs\ria\application\third_party\PHPExcel\Reader\HTML.php 495
+ERROR - 2019-01-05 11:46:36 --> Severity: Warning --> DOMDocument::loadHTML(): error parsing attribute name in Entity, line: 173 C:\xampp\htdocs\ria\application\third_party\PHPExcel\Reader\HTML.php 495
+ERROR - 2019-01-05 11:46:36 --> Severity: Warning --> DOMDocument::loadHTML(): Tag c_ltabs invalid in Entity, line: 173 C:\xampp\htdocs\ria\application\third_party\PHPExcel\Reader\HTML.php 495
+ERROR - 2019-01-05 11:46:36 --> Severity: Warning --> DOMDocument::loadHTML(): error parsing attribute name in Entity, line: 174 C:\xampp\htdocs\ria\application\third_party\PHPExcel\Reader\HTML.php 495
+ERROR - 2019-01-05 11:46:36 --> Severity: Warning --> DOMDocument::loadHTML(): error parsing attribute name in Entity, line: 175 C:\xampp\htdocs\ria\application\third_party\PHPExcel\Reader\HTML.php 495
+ERROR - 2019-01-05 11:46:36 --> Severity: Warning --> DOMDocument::loadHTML(): error parsing attribute name in Entity, line: 177 C:\xampp\htdocs\ria\application\third_party\PHPExcel\Reader\HTML.php 495
+ERROR - 2019-01-05 11:46:36 --> Severity: Warning --> DOMDocument::loadHTML(): error parsing attribute name in Entity, line: 178 C:\xampp\htdocs\ria\application\third_party\PHPExcel\Reader\HTML.php 495
+ERROR - 2019-01-05 11:46:36 --> Severity: Warning --> DOMDocument::loadHTML(): error parsing attribute name in Entity, line: 179 C:\xampp\htdocs\ria\application\third_party\PHPExcel\Reader\HTML.php 495
+ERROR - 2019-01-05 11:46:36 --> Severity: Warning --> DOMDocument::loadHTML(): Attribute inexttab redefined in Entity, line: 180 C:\xampp\htdocs\ria\application\third_party\PHPExcel\Reader\HTML.php 495
+ERROR - 2019-01-05 11:46:36 --> Severity: Warning --> DOMDocument::loadHTML(): error parsing attribute name in Entity, line: 180 C:\xampp\htdocs\ria\application\third_party\PHPExcel\Reader\HTML.php 495
+ERROR - 2019-01-05 11:46:36 --> Severity: Warning --> DOMDocument::loadHTML(): error parsing attribute name in Entity, line: 181 C:\xampp\htdocs\ria\application\third_party\PHPExcel\Reader\HTML.php 495
+ERROR - 2019-01-05 11:46:36 --> Severity: Warning --> DOMDocument::loadHTML(): error parsing attribute name in Entity, line: 183 C:\xampp\htdocs\ria\application\third_party\PHPExcel\Reader\HTML.php 495
+ERROR - 2019-01-05 11:46:36 --> Severity: Warning --> DOMDocument::loadHTML(): error parsing attribute name in Entity, line: 184 C:\xampp\htdocs\ria\application\third_party\PHPExcel\Reader\HTML.php 495
+ERROR - 2019-01-05 11:46:37 --> Severity: Warning --> DOMDocument::loadHTML(): Attribute inexttab redefined in Entity, line: 185 C:\xampp\htdocs\ria\application\third_party\PHPExcel\Reader\HTML.php 495
+ERROR - 2019-01-05 11:46:37 --> Severity: Warning --> DOMDocument::loadHTML(): Attribute if redefined in Entity, line: 187 C:\xampp\htdocs\ria\application\third_party\PHPExcel\Reader\HTML.php 495
+ERROR - 2019-01-05 11:46:37 --> Severity: Warning --> DOMDocument::loadHTML(): error parsing attribute name in Entity, line: 187 C:\xampp\htdocs\ria\application\third_party\PHPExcel\Reader\HTML.php 495
+ERROR - 2019-01-05 11:46:37 --> Severity: Warning --> DOMDocument::loadHTML(): Tag c_ltabs invalid in Entity, line: 187 C:\xampp\htdocs\ria\application\third_party\PHPExcel\Reader\HTML.php 495
+ERROR - 2019-01-05 11:46:37 --> Severity: Warning --> DOMDocument::loadHTML(): htmlParseStartTag: invalid element name in Entity, line: 210 C:\xampp\htdocs\ria\application\third_party\PHPExcel\Reader\HTML.php 495
+ERROR - 2019-01-05 11:46:37 --> Severity: Warning --> DOMDocument::loadHTML(): htmlParseEntityRef: no name in Entity, line: 214 C:\xampp\htdocs\ria\application\third_party\PHPExcel\Reader\HTML.php 495
+ERROR - 2019-01-05 11:46:37 --> Severity: Warning --> DOMDocument::loadHTML(): htmlParseEntityRef: no name in Entity, line: 214 C:\xampp\htdocs\ria\application\third_party\PHPExcel\Reader\HTML.php 495
+ERROR - 2019-01-05 11:46:37 --> Severity: Warning --> DOMDocument::loadHTML(): htmlParseStartTag: invalid element name in Entity, line: 214 C:\xampp\htdocs\ria\application\third_party\PHPExcel\Reader\HTML.php 495
+ERROR - 2019-01-05 11:46:37 --> Severity: Warning --> DOMDocument::loadHTML(): htmlParseEntityRef: no name in Entity, line: 271 C:\xampp\htdocs\ria\application\third_party\PHPExcel\Reader\HTML.php 495
+ERROR - 2019-01-05 11:46:37 --> Severity: Warning --> DOMDocument::loadHTML(): htmlParseEntityRef: no name in Entity, line: 271 C:\xampp\htdocs\ria\application\third_party\PHPExcel\Reader\HTML.php 495
+ERROR - 2019-01-05 11:46:37 --> Severity: Warning --> DOMDocument::loadHTML(): htmlParseEntityRef: no name in Entity, line: 272 C:\xampp\htdocs\ria\application\third_party\PHPExcel\Reader\HTML.php 495
+ERROR - 2019-01-05 11:46:37 --> Severity: Warning --> DOMDocument::loadHTML(): htmlParseEntityRef: no name in Entity, line: 272 C:\xampp\htdocs\ria\application\third_party\PHPExcel\Reader\HTML.php 495
+ERROR - 2019-01-05 11:46:37 --> Severity: Warning --> DOMDocument::loadHTML(): Unexpected end tag : script in Entity, line: 296 C:\xampp\htdocs\ria\application\third_party\PHPExcel\Reader\HTML.php 495
+ERROR - 2019-01-05 11:46:37 --> Severity: Warning --> DOMDocument::loadHTML(): htmlParseStartTag: invalid element name in Entity, line: 297 C:\xampp\htdocs\ria\application\third_party\PHPExcel\Reader\HTML.php 495
+ERROR - 2019-01-05 11:46:37 --> Severity: Warning --> DOMDocument::loadHTML(): Unexpected end tag : head in Entity, line: 316 C:\xampp\htdocs\ria\application\third_party\PHPExcel\Reader\HTML.php 495
+ERROR - 2019-01-05 11:46:44 --> Severity: Notice --> Undefined variable: fdate C:\xampp\htdocs\ria\application\controllers\cashbook.php 1737
+ERROR - 2019-01-05 11:46:44 --> Severity: Notice --> Undefined variable: tdate C:\xampp\htdocs\ria\application\controllers\cashbook.php 1737
+ERROR - 2019-01-05 11:46:44 --> Severity: Notice --> Undefined variable: fa C:\xampp\htdocs\ria\application\controllers\cashbook.php 1737
+ERROR - 2019-01-05 11:46:44 --> Severity: Notice --> Undefined variable: aa C:\xampp\htdocs\ria\application\controllers\cashbook.php 1737
+ERROR - 2019-01-05 11:46:46 --> Severity: Notice --> Undefined variable: financialyear C:\xampp\htdocs\ria\application\views\bankstatement.php 2
+ERROR - 2019-01-05 11:46:46 --> Severity: Warning --> Invalid argument supplied for foreach() C:\xampp\htdocs\ria\application\views\bankstatement.php 2
+ERROR - 2019-01-05 11:46:46 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 87
+ERROR - 2019-01-05 11:46:46 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 87
+ERROR - 2019-01-05 11:46:46 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 88
+ERROR - 2019-01-05 11:46:46 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 88
+ERROR - 2019-01-05 11:46:46 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 89
+ERROR - 2019-01-05 11:46:47 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 89
+ERROR - 2019-01-05 11:46:47 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 139
+ERROR - 2019-01-05 11:46:47 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 139
+ERROR - 2019-01-05 11:46:47 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 140
+ERROR - 2019-01-05 11:46:47 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 140
+ERROR - 2019-01-05 11:46:47 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 141
+ERROR - 2019-01-05 11:46:47 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 141
+ERROR - 2019-01-05 11:46:47 --> Severity: Notice --> Undefined variable: Bankname C:\xampp\htdocs\ria\application\views\bankstatement.php 237
+ERROR - 2019-01-05 11:48:16 --> Severity: Warning --> mysqli_connect(): php_network_getaddresses: getaddrinfo failed: No such host is known. C:\xampp\htdocs\ria\system\database\drivers\mysqli\mysqli_driver.php 77
+ERROR - 2019-01-05 11:48:16 --> Severity: Warning --> mysqli_connect(): (HY000/2002): php_network_getaddresses: getaddrinfo failed: No such host is known. C:\xampp\htdocs\ria\system\database\drivers\mysqli\mysqli_driver.php 77
+ERROR - 2019-01-05 11:48:16 --> Unable to connect to the database
+ERROR - 2019-01-05 11:48:22 --> Severity: Warning --> mysqli_connect(): php_network_getaddresses: getaddrinfo failed: No such host is known. C:\xampp\htdocs\ria\system\database\drivers\mysqli\mysqli_driver.php 77
+ERROR - 2019-01-05 11:48:22 --> Severity: Warning --> mysqli_connect(): (HY000/2002): php_network_getaddresses: getaddrinfo failed: No such host is known. C:\xampp\htdocs\ria\system\database\drivers\mysqli\mysqli_driver.php 77
+ERROR - 2019-01-05 11:48:22 --> Unable to connect to the database
+ERROR - 2019-01-05 11:48:26 --> Severity: Warning --> mysqli_query(): MySQL server has gone away C:\xampp\htdocs\ria\system\database\drivers\mysqli\mysqli_driver.php 180
+ERROR - 2019-01-05 11:48:26 --> Severity: Warning --> mysqli_query(): Error reading result set's header C:\xampp\htdocs\ria\system\database\drivers\mysqli\mysqli_driver.php 180
+ERROR - 2019-01-05 11:48:26 --> Query error: MySQL server has gone away
+ERROR - 2019-01-05 11:48:48 --> Severity: Notice --> Undefined variable: creditdebit C:\xampp\htdocs\ria\application\views\bankingfile.php 132
+ERROR - 2019-01-05 11:49:21 --> Severity: Notice --> Undefined variable: filename C:\xampp\htdocs\ria\application\controllers\cashbook.php 235
+ERROR - 2019-01-05 11:49:21 --> The upload path does not appear to be valid.
+ERROR - 2019-01-05 11:49:21 --> Severity: Warning --> DOMDocument::loadHTML(): Attribute width redefined in Entity, line: 21 C:\xampp\htdocs\ria\application\third_party\PHPExcel\Reader\HTML.php 495
+ERROR - 2019-01-05 11:49:21 --> Severity: Warning --> DOMDocument::loadHTML(): Unexpected end tag : table-- in Entity, line: 156 C:\xampp\htdocs\ria\application\third_party\PHPExcel\Reader\HTML.php 495
+ERROR - 2019-01-05 11:49:21 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 444
+ERROR - 2019-01-05 11:49:21 --> Severity: Notice --> Undefined index: reportdate C:\xampp\htdocs\ria\application\models\cashbook_model.php 392
+ERROR - 2019-01-05 11:49:21 --> Severity: Notice --> Undefined index: Narration C:\xampp\htdocs\ria\application\models\cashbook_model.php 393
+ERROR - 2019-01-05 11:49:21 --> Severity: Notice --> Undefined index: Balance C:\xampp\htdocs\ria\application\models\cashbook_model.php 394
+ERROR - 2019-01-05 11:49:21 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 444
+ERROR - 2019-01-05 11:49:22 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 444
+ERROR - 2019-01-05 11:49:22 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 444
+ERROR - 2019-01-05 11:49:22 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 444
+ERROR - 2019-01-05 11:49:22 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 444
+ERROR - 2019-01-05 11:49:22 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 444
+ERROR - 2019-01-05 11:49:26 --> Severity: Notice --> Undefined variable: fdate C:\xampp\htdocs\ria\application\controllers\cashbook.php 1737
+ERROR - 2019-01-05 11:49:26 --> Severity: Notice --> Undefined variable: tdate C:\xampp\htdocs\ria\application\controllers\cashbook.php 1737
+ERROR - 2019-01-05 11:49:26 --> Severity: Notice --> Undefined variable: fa C:\xampp\htdocs\ria\application\controllers\cashbook.php 1737
+ERROR - 2019-01-05 11:49:26 --> Severity: Notice --> Undefined variable: aa C:\xampp\htdocs\ria\application\controllers\cashbook.php 1737
+ERROR - 2019-01-05 11:49:26 --> Severity: Notice --> Undefined variable: financialyear C:\xampp\htdocs\ria\application\views\bankstatement.php 2
+ERROR - 2019-01-05 11:49:26 --> Severity: Warning --> Invalid argument supplied for foreach() C:\xampp\htdocs\ria\application\views\bankstatement.php 2
+ERROR - 2019-01-05 11:49:26 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 87
+ERROR - 2019-01-05 11:49:26 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 87
+ERROR - 2019-01-05 11:49:26 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 88
+ERROR - 2019-01-05 11:49:26 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 88
+ERROR - 2019-01-05 11:49:27 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 89
+ERROR - 2019-01-05 11:49:27 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 89
+ERROR - 2019-01-05 11:49:27 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 139
+ERROR - 2019-01-05 11:49:27 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 139
+ERROR - 2019-01-05 11:49:27 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 140
+ERROR - 2019-01-05 11:49:27 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 140
+ERROR - 2019-01-05 11:49:27 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 141
+ERROR - 2019-01-05 11:49:27 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 141
+ERROR - 2019-01-05 11:50:09 --> Severity: Notice --> Undefined variable: creditdebit C:\xampp\htdocs\ria\application\views\bankingfile.php 132
+ERROR - 2019-01-05 11:50:30 --> Severity: Notice --> Undefined variable: filename C:\xampp\htdocs\ria\application\controllers\cashbook.php 235
+ERROR - 2019-01-05 11:50:30 --> The upload path does not appear to be valid.
+ERROR - 2019-01-05 11:50:40 --> Severity: Notice --> Undefined variable: fdate C:\xampp\htdocs\ria\application\controllers\cashbook.php 1737
+ERROR - 2019-01-05 11:50:40 --> Severity: Notice --> Undefined variable: tdate C:\xampp\htdocs\ria\application\controllers\cashbook.php 1737
+ERROR - 2019-01-05 11:50:40 --> Severity: Notice --> Undefined variable: fa C:\xampp\htdocs\ria\application\controllers\cashbook.php 1737
+ERROR - 2019-01-05 11:50:40 --> Severity: Notice --> Undefined variable: aa C:\xampp\htdocs\ria\application\controllers\cashbook.php 1737
+ERROR - 2019-01-05 11:50:40 --> Severity: Notice --> Undefined variable: financialyear C:\xampp\htdocs\ria\application\views\bankstatement.php 2
+ERROR - 2019-01-05 11:50:40 --> Severity: Warning --> Invalid argument supplied for foreach() C:\xampp\htdocs\ria\application\views\bankstatement.php 2
+ERROR - 2019-01-05 11:50:41 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 87
+ERROR - 2019-01-05 11:50:41 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 87
+ERROR - 2019-01-05 11:50:41 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 88
+ERROR - 2019-01-05 11:50:41 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 88
+ERROR - 2019-01-05 11:50:41 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 89
+ERROR - 2019-01-05 11:50:41 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 89
+ERROR - 2019-01-05 11:50:41 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 139
+ERROR - 2019-01-05 11:50:41 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 139
+ERROR - 2019-01-05 11:50:41 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 140
+ERROR - 2019-01-05 11:50:41 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 140
+ERROR - 2019-01-05 11:50:41 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 141
+ERROR - 2019-01-05 11:50:41 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 141
+ERROR - 2019-01-05 11:51:11 --> Severity: Notice --> Undefined variable: financialyear C:\xampp\htdocs\ria\application\views\bankinvoice.php 2
+ERROR - 2019-01-05 11:51:11 --> Severity: Warning --> Invalid argument supplied for foreach() C:\xampp\htdocs\ria\application\views\bankinvoice.php 2
+ERROR - 2019-01-05 11:51:11 --> Severity: Notice --> Undefined variable: cash C:\xampp\htdocs\ria\application\views\bankinvoice.php 84
+ERROR - 2019-01-05 11:51:11 --> Severity: Notice --> Undefined variable: bankid C:\xampp\htdocs\ria\application\views\bankinvoice.php 86
+ERROR - 2019-01-05 11:51:18 --> Severity: Notice --> Undefined variable: financialyear C:\xampp\htdocs\ria\application\views\bankinvoice.php 2
+ERROR - 2019-01-05 11:51:18 --> Severity: Warning --> Invalid argument supplied for foreach() C:\xampp\htdocs\ria\application\views\bankinvoice.php 2
+ERROR - 2019-01-05 11:51:19 --> Severity: Notice --> Undefined variable: cash C:\xampp\htdocs\ria\application\views\bankinvoice.php 84
+ERROR - 2019-01-05 11:51:19 --> Severity: Notice --> Undefined variable: bankid C:\xampp\htdocs\ria\application\views\bankinvoice.php 86
+ERROR - 2019-01-05 11:51:19 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 180
+ERROR - 2019-01-05 11:51:19 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 181
+ERROR - 2019-01-05 11:51:19 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 180
+ERROR - 2019-01-05 11:51:19 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 181
+ERROR - 2019-01-05 11:51:35 --> Severity: Notice --> Undefined variable: fdate C:\xampp\htdocs\ria\application\controllers\cashbook.php 1737
+ERROR - 2019-01-05 11:51:35 --> Severity: Notice --> Undefined variable: tdate C:\xampp\htdocs\ria\application\controllers\cashbook.php 1737
+ERROR - 2019-01-05 11:51:35 --> Severity: Notice --> Undefined variable: fa C:\xampp\htdocs\ria\application\controllers\cashbook.php 1737
+ERROR - 2019-01-05 11:51:35 --> Severity: Notice --> Undefined variable: aa C:\xampp\htdocs\ria\application\controllers\cashbook.php 1737
+ERROR - 2019-01-05 11:51:35 --> Severity: Notice --> Undefined variable: financialyear C:\xampp\htdocs\ria\application\views\bankstatement.php 2
+ERROR - 2019-01-05 11:51:35 --> Severity: Warning --> Invalid argument supplied for foreach() C:\xampp\htdocs\ria\application\views\bankstatement.php 2
+ERROR - 2019-01-05 11:51:35 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 87
+ERROR - 2019-01-05 11:51:35 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 87
+ERROR - 2019-01-05 11:51:35 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 88
+ERROR - 2019-01-05 11:51:35 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 88
+ERROR - 2019-01-05 11:51:35 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 89
+ERROR - 2019-01-05 11:51:36 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 89
+ERROR - 2019-01-05 11:51:36 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 139
+ERROR - 2019-01-05 11:51:36 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 139
+ERROR - 2019-01-05 11:51:36 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 140
+ERROR - 2019-01-05 11:51:36 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 140
+ERROR - 2019-01-05 11:51:36 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 141
+ERROR - 2019-01-05 11:51:36 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 141
+ERROR - 2019-01-05 11:51:46 --> Severity: Notice --> Undefined variable: financialyear C:\xampp\htdocs\ria\application\views\bankinvoicesettlement.php 7
+ERROR - 2019-01-05 11:51:46 --> Severity: Warning --> Invalid argument supplied for foreach() C:\xampp\htdocs\ria\application\views\bankinvoicesettlement.php 7
+ERROR - 2019-01-05 11:51:46 --> Severity: Notice --> Undefined variable: record C:\xampp\htdocs\ria\application\views\bankinvoicesettlement.php 178
+ERROR - 2019-01-05 11:51:46 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoicesettlement.php 178
+ERROR - 2019-01-05 11:52:11 --> Severity: Notice --> Undefined variable: financialyear C:\xampp\htdocs\ria\application\views\bankinvoice.php 2
+ERROR - 2019-01-05 11:52:11 --> Severity: Warning --> Invalid argument supplied for foreach() C:\xampp\htdocs\ria\application\views\bankinvoice.php 2
+ERROR - 2019-01-05 11:52:11 --> Severity: Notice --> Undefined variable: cash C:\xampp\htdocs\ria\application\views\bankinvoice.php 84
+ERROR - 2019-01-05 11:52:11 --> Severity: Notice --> Undefined variable: bankid C:\xampp\htdocs\ria\application\views\bankinvoice.php 86
+ERROR - 2019-01-05 11:52:16 --> Severity: Notice --> Undefined variable: financialyear C:\xampp\htdocs\ria\application\views\bankinvoice.php 2
+ERROR - 2019-01-05 11:52:16 --> Severity: Warning --> Invalid argument supplied for foreach() C:\xampp\htdocs\ria\application\views\bankinvoice.php 2
+ERROR - 2019-01-05 11:52:16 --> Severity: Notice --> Undefined variable: cash C:\xampp\htdocs\ria\application\views\bankinvoice.php 84
+ERROR - 2019-01-05 11:52:16 --> Severity: Notice --> Undefined variable: bankid C:\xampp\htdocs\ria\application\views\bankinvoice.php 86
+ERROR - 2019-01-05 11:52:16 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 180
+ERROR - 2019-01-05 11:52:16 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 181
+ERROR - 2019-01-05 11:52:16 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 180
+ERROR - 2019-01-05 11:52:16 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 181
+ERROR - 2019-01-05 11:52:34 --> Severity: Notice --> Undefined variable: fdate C:\xampp\htdocs\ria\application\controllers\cashbook.php 1737
+ERROR - 2019-01-05 11:52:34 --> Severity: Notice --> Undefined variable: tdate C:\xampp\htdocs\ria\application\controllers\cashbook.php 1737
+ERROR - 2019-01-05 11:52:34 --> Severity: Notice --> Undefined variable: fa C:\xampp\htdocs\ria\application\controllers\cashbook.php 1737
+ERROR - 2019-01-05 11:52:34 --> Severity: Notice --> Undefined variable: aa C:\xampp\htdocs\ria\application\controllers\cashbook.php 1737
+ERROR - 2019-01-05 11:52:35 --> Severity: Notice --> Undefined variable: financialyear C:\xampp\htdocs\ria\application\views\bankstatement.php 2
+ERROR - 2019-01-05 11:52:35 --> Severity: Warning --> Invalid argument supplied for foreach() C:\xampp\htdocs\ria\application\views\bankstatement.php 2
+ERROR - 2019-01-05 11:52:35 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 87
+ERROR - 2019-01-05 11:52:35 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 87
+ERROR - 2019-01-05 11:52:35 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 88
+ERROR - 2019-01-05 11:52:35 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 88
+ERROR - 2019-01-05 11:52:35 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 89
+ERROR - 2019-01-05 11:52:35 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 89
+ERROR - 2019-01-05 11:52:35 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 139
+ERROR - 2019-01-05 11:52:35 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 139
+ERROR - 2019-01-05 11:52:35 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 140
+ERROR - 2019-01-05 11:52:35 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 140
+ERROR - 2019-01-05 11:52:35 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 141
+ERROR - 2019-01-05 11:52:35 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 141
+ERROR - 2019-01-05 11:52:46 --> Severity: Notice --> Undefined variable: financialyear C:\xampp\htdocs\ria\application\views\bankinvoicesettlement.php 7
+ERROR - 2019-01-05 11:52:46 --> Severity: Warning --> Invalid argument supplied for foreach() C:\xampp\htdocs\ria\application\views\bankinvoicesettlement.php 7
+ERROR - 2019-01-05 11:52:46 --> Severity: Notice --> Undefined variable: record C:\xampp\htdocs\ria\application\views\bankinvoicesettlement.php 178
+ERROR - 2019-01-05 11:52:46 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoicesettlement.php 178
+ERROR - 2019-01-05 13:21:31 --> Severity: Notice --> Undefined variable: financialyear C:\xampp\htdocs\ria\application\views\bankinvoicesettlement.php 7
+ERROR - 2019-01-05 13:21:31 --> Severity: Warning --> Invalid argument supplied for foreach() C:\xampp\htdocs\ria\application\views\bankinvoicesettlement.php 7
+ERROR - 2019-01-05 13:21:31 --> Severity: Notice --> Undefined variable: record C:\xampp\htdocs\ria\application\views\bankinvoicesettlement.php 178
+ERROR - 2019-01-05 13:21:31 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoicesettlement.php 178
+ERROR - 2019-01-05 13:21:55 --> Severity: Notice --> Undefined variable: financialyear C:\xampp\htdocs\ria\application\views\bankinvoicesettlement.php 7
+ERROR - 2019-01-05 13:21:55 --> Severity: Warning --> Invalid argument supplied for foreach() C:\xampp\htdocs\ria\application\views\bankinvoicesettlement.php 7
+ERROR - 2019-01-05 13:21:55 --> Severity: Notice --> Undefined variable: record C:\xampp\htdocs\ria\application\views\bankinvoicesettlement.php 178
+ERROR - 2019-01-05 13:21:56 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoicesettlement.php 178
+ERROR - 2019-01-05 13:21:57 --> Severity: Notice --> Undefined variable: financialyear C:\xampp\htdocs\ria\application\views\bankinvoicesettlement.php 7
+ERROR - 2019-01-05 13:21:57 --> Severity: Notice --> Undefined variable: financialyear C:\xampp\htdocs\ria\application\views\bankinvoicesettlement.php 7
+ERROR - 2019-01-05 13:21:57 --> Severity: Notice --> Undefined variable: financialyear C:\xampp\htdocs\ria\application\views\bankinvoicesettlement.php 7
+ERROR - 2019-01-05 13:21:57 --> Severity: Notice --> Undefined variable: financialyear C:\xampp\htdocs\ria\application\views\bankinvoicesettlement.php 7
+ERROR - 2019-01-05 13:21:57 --> Severity: Notice --> Undefined variable: financialyear C:\xampp\htdocs\ria\application\views\bankinvoicesettlement.php 7
+ERROR - 2019-01-05 13:21:57 --> Severity: Warning --> Invalid argument supplied for foreach() C:\xampp\htdocs\ria\application\views\bankinvoicesettlement.php 7
+ERROR - 2019-01-05 13:21:57 --> Severity: Notice --> Undefined variable: financialyear C:\xampp\htdocs\ria\application\views\bankinvoicesettlement.php 7
+ERROR - 2019-01-05 13:21:57 --> Severity: Notice --> Undefined variable: financialyear C:\xampp\htdocs\ria\application\views\bankinvoicesettlement.php 7
+ERROR - 2019-01-05 13:21:58 --> Severity: Notice --> Undefined variable: financialyear C:\xampp\htdocs\ria\application\views\bankinvoicesettlement.php 7
+ERROR - 2019-01-05 13:21:58 --> Severity: Warning --> Invalid argument supplied for foreach() C:\xampp\htdocs\ria\application\views\bankinvoicesettlement.php 7
+ERROR - 2019-01-05 13:21:58 --> Severity: Warning --> Invalid argument supplied for foreach() C:\xampp\htdocs\ria\application\views\bankinvoicesettlement.php 7
+ERROR - 2019-01-05 13:21:58 --> Severity: Warning --> Invalid argument supplied for foreach() C:\xampp\htdocs\ria\application\views\bankinvoicesettlement.php 7
+ERROR - 2019-01-05 13:21:58 --> Severity: Warning --> Invalid argument supplied for foreach() C:\xampp\htdocs\ria\application\views\bankinvoicesettlement.php 7
+ERROR - 2019-01-05 13:21:58 --> Severity: Notice --> Undefined variable: record C:\xampp\htdocs\ria\application\views\bankinvoicesettlement.php 178
+ERROR - 2019-01-05 13:21:58 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoicesettlement.php 178
+ERROR - 2019-01-05 13:21:58 --> Severity: Warning --> Invalid argument supplied for foreach() C:\xampp\htdocs\ria\application\views\bankinvoicesettlement.php 7
+ERROR - 2019-01-05 13:21:58 --> Severity: Warning --> Invalid argument supplied for foreach() C:\xampp\htdocs\ria\application\views\bankinvoicesettlement.php 7
+ERROR - 2019-01-05 13:21:58 --> Severity: Notice --> Undefined variable: record C:\xampp\htdocs\ria\application\views\bankinvoicesettlement.php 178
+ERROR - 2019-01-05 13:21:58 --> Severity: Notice --> Undefined variable: record C:\xampp\htdocs\ria\application\views\bankinvoicesettlement.php 178
+ERROR - 2019-01-05 13:21:58 --> Severity: Notice --> Undefined variable: record C:\xampp\htdocs\ria\application\views\bankinvoicesettlement.php 178
+ERROR - 2019-01-05 13:21:58 --> Severity: Warning --> Invalid argument supplied for foreach() C:\xampp\htdocs\ria\application\views\bankinvoicesettlement.php 7
+ERROR - 2019-01-05 13:21:58 --> Severity: Notice --> Undefined variable: record C:\xampp\htdocs\ria\application\views\bankinvoicesettlement.php 178
+ERROR - 2019-01-05 13:21:58 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoicesettlement.php 178
+ERROR - 2019-01-05 13:21:59 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoicesettlement.php 178
+ERROR - 2019-01-05 13:21:59 --> Severity: Notice --> Undefined variable: financialyear C:\xampp\htdocs\ria\application\views\bankinvoicesettlement.php 7
+ERROR - 2019-01-05 13:21:59 --> Severity: Notice --> Undefined variable: financialyear C:\xampp\htdocs\ria\application\views\bankinvoicesettlement.php 7
+ERROR - 2019-01-05 13:21:59 --> Severity: Notice --> Undefined variable: financialyear C:\xampp\htdocs\ria\application\views\bankinvoicesettlement.php 7
+ERROR - 2019-01-05 13:21:59 --> Severity: Notice --> Undefined variable: financialyear C:\xampp\htdocs\ria\application\views\bankinvoicesettlement.php 7
+ERROR - 2019-01-05 13:21:59 --> Severity: Notice --> Undefined variable: financialyear C:\xampp\htdocs\ria\application\views\bankinvoicesettlement.php 7
+ERROR - 2019-01-05 13:21:59 --> Severity: Notice --> Undefined variable: financialyear C:\xampp\htdocs\ria\application\views\bankinvoicesettlement.php 7
+ERROR - 2019-01-05 13:21:59 --> Severity: Warning --> Invalid argument supplied for foreach() C:\xampp\htdocs\ria\application\views\bankinvoicesettlement.php 7
+ERROR - 2019-01-05 13:21:59 --> Severity: Notice --> Undefined variable: financialyear C:\xampp\htdocs\ria\application\views\bankinvoicesettlement.php 7
+ERROR - 2019-01-05 13:21:59 --> Severity: Notice --> Undefined variable: record C:\xampp\htdocs\ria\application\views\bankinvoicesettlement.php 178
+ERROR - 2019-01-05 13:22:00 --> Severity: Notice --> Undefined variable: financialyear C:\xampp\htdocs\ria\application\views\bankinvoicesettlement.php 7
+ERROR - 2019-01-05 13:22:00 --> Severity: Notice --> Undefined variable: financialyear C:\xampp\htdocs\ria\application\views\bankinvoicesettlement.php 7
+ERROR - 2019-01-05 13:22:00 --> Severity: Warning --> Invalid argument supplied for foreach() C:\xampp\htdocs\ria\application\views\bankinvoicesettlement.php 7
+ERROR - 2019-01-05 13:22:00 --> Severity: Notice --> Undefined variable: financialyear C:\xampp\htdocs\ria\application\views\bankinvoicesettlement.php 7
+ERROR - 2019-01-05 13:22:00 --> Severity: Warning --> Invalid argument supplied for foreach() C:\xampp\htdocs\ria\application\views\bankinvoicesettlement.php 7
+ERROR - 2019-01-05 13:22:00 --> Severity: Notice --> Undefined variable: record C:\xampp\htdocs\ria\application\views\bankinvoicesettlement.php 178
+ERROR - 2019-01-05 13:22:00 --> Severity: Notice --> Undefined variable: record C:\xampp\htdocs\ria\application\views\bankinvoicesettlement.php 178
+ERROR - 2019-01-05 13:22:00 --> Severity: Warning --> Invalid argument supplied for foreach() C:\xampp\htdocs\ria\application\views\bankinvoicesettlement.php 7
+ERROR - 2019-01-05 13:22:00 --> Severity: Warning --> Invalid argument supplied for foreach() C:\xampp\htdocs\ria\application\views\bankinvoicesettlement.php 7
+ERROR - 2019-01-05 13:22:00 --> Severity: Notice --> Undefined variable: financialyear C:\xampp\htdocs\ria\application\views\bankinvoicesettlement.php 7
+ERROR - 2019-01-05 13:22:00 --> Severity: Notice --> Undefined variable: financialyear C:\xampp\htdocs\ria\application\views\bankinvoicesettlement.php 7
+ERROR - 2019-01-05 13:22:00 --> Severity: Warning --> Invalid argument supplied for foreach() C:\xampp\htdocs\ria\application\views\bankinvoicesettlement.php 7
+ERROR - 2019-01-05 13:22:01 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoicesettlement.php 178
+ERROR - 2019-01-05 13:22:01 --> Severity: Notice --> Undefined variable: record C:\xampp\htdocs\ria\application\views\bankinvoicesettlement.php 178
+ERROR - 2019-01-05 13:22:01 --> Severity: Warning --> Invalid argument supplied for foreach() C:\xampp\htdocs\ria\application\views\bankinvoicesettlement.php 7
+ERROR - 2019-01-05 13:22:01 --> Severity: Notice --> Undefined variable: record C:\xampp\htdocs\ria\application\views\bankinvoicesettlement.php 178
+ERROR - 2019-01-05 13:22:01 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoicesettlement.php 178
+ERROR - 2019-01-05 13:22:01 --> Severity: Notice --> Undefined variable: record C:\xampp\htdocs\ria\application\views\bankinvoicesettlement.php 178
+ERROR - 2019-01-05 13:22:01 --> Severity: Notice --> Undefined variable: record C:\xampp\htdocs\ria\application\views\bankinvoicesettlement.php 178
+ERROR - 2019-01-05 13:22:01 --> Severity: Notice --> Undefined variable: financialyear C:\xampp\htdocs\ria\application\views\bankinvoicesettlement.php 7
+ERROR - 2019-01-05 13:22:01 --> Severity: Warning --> Invalid argument supplied for foreach() C:\xampp\htdocs\ria\application\views\bankinvoicesettlement.php 7
+ERROR - 2019-01-05 13:22:01 --> Severity: Warning --> Invalid argument supplied for foreach() C:\xampp\htdocs\ria\application\views\bankinvoicesettlement.php 7
+ERROR - 2019-01-05 13:22:01 --> Severity: Warning --> Invalid argument supplied for foreach() C:\xampp\htdocs\ria\application\views\bankinvoicesettlement.php 7
+ERROR - 2019-01-05 13:22:01 --> Severity: Notice --> Undefined variable: financialyear C:\xampp\htdocs\ria\application\views\bankinvoicesettlement.php 7
+ERROR - 2019-01-05 13:22:02 --> Severity: Notice --> Undefined variable: record C:\xampp\htdocs\ria\application\views\bankinvoicesettlement.php 178
+ERROR - 2019-01-05 13:22:02 --> Severity: Notice --> Undefined variable: financialyear C:\xampp\htdocs\ria\application\views\bankinvoicesettlement.php 7
+ERROR - 2019-01-05 13:22:02 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoicesettlement.php 178
+ERROR - 2019-01-05 13:22:02 --> Severity: Warning --> Invalid argument supplied for foreach() C:\xampp\htdocs\ria\application\views\bankinvoicesettlement.php 7
+ERROR - 2019-01-05 13:22:02 --> Severity: Warning --> Invalid argument supplied for foreach() C:\xampp\htdocs\ria\application\views\bankinvoicesettlement.php 7
+ERROR - 2019-01-05 13:22:02 --> Severity: Warning --> Invalid argument supplied for foreach() C:\xampp\htdocs\ria\application\views\bankinvoicesettlement.php 7
+ERROR - 2019-01-05 13:22:02 --> Severity: Notice --> Undefined variable: record C:\xampp\htdocs\ria\application\views\bankinvoicesettlement.php 178
+ERROR - 2019-01-05 13:22:03 --> Severity: Notice --> Undefined variable: record C:\xampp\htdocs\ria\application\views\bankinvoicesettlement.php 178
+ERROR - 2019-01-05 13:22:03 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoicesettlement.php 178
+ERROR - 2019-01-05 13:22:03 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoicesettlement.php 178
+ERROR - 2019-01-05 13:22:03 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoicesettlement.php 178
+ERROR - 2019-01-05 13:22:03 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoicesettlement.php 178
+ERROR - 2019-01-05 13:22:03 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoicesettlement.php 178
+ERROR - 2019-01-05 13:22:03 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoicesettlement.php 178
+ERROR - 2019-01-05 13:22:03 --> Severity: Notice --> Undefined variable: record C:\xampp\htdocs\ria\application\views\bankinvoicesettlement.php 178
+ERROR - 2019-01-05 13:22:03 --> Severity: Notice --> Undefined variable: record C:\xampp\htdocs\ria\application\views\bankinvoicesettlement.php 178
+ERROR - 2019-01-05 13:22:03 --> Severity: Notice --> Undefined variable: record C:\xampp\htdocs\ria\application\views\bankinvoicesettlement.php 178
+ERROR - 2019-01-05 13:22:03 --> Severity: Warning --> Invalid argument supplied for foreach() C:\xampp\htdocs\ria\application\views\bankinvoicesettlement.php 7
+ERROR - 2019-01-05 13:22:03 --> Severity: Notice --> Undefined variable: financialyear C:\xampp\htdocs\ria\application\views\bankinvoicesettlement.php 7
+ERROR - 2019-01-05 13:22:03 --> Severity: Notice --> Undefined variable: financialyear C:\xampp\htdocs\ria\application\views\bankinvoicesettlement.php 7
+ERROR - 2019-01-05 13:22:03 --> Severity: Notice --> Undefined variable: financialyear C:\xampp\htdocs\ria\application\views\bankinvoicesettlement.php 7
+ERROR - 2019-01-05 13:22:03 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoicesettlement.php 178
+ERROR - 2019-01-05 13:22:03 --> Severity: Warning --> Invalid argument supplied for foreach() C:\xampp\htdocs\ria\application\views\bankinvoicesettlement.php 7
+ERROR - 2019-01-05 13:22:03 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoicesettlement.php 178
+ERROR - 2019-01-05 13:22:03 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoicesettlement.php 178
+ERROR - 2019-01-05 13:22:03 --> Severity: Notice --> Undefined variable: record C:\xampp\htdocs\ria\application\views\bankinvoicesettlement.php 178
+ERROR - 2019-01-05 13:22:03 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoicesettlement.php 178
+ERROR - 2019-01-05 13:22:03 --> Severity: Warning --> Invalid argument supplied for foreach() C:\xampp\htdocs\ria\application\views\bankinvoicesettlement.php 7
+ERROR - 2019-01-05 13:22:03 --> Severity: Notice --> Undefined variable: record C:\xampp\htdocs\ria\application\views\bankinvoicesettlement.php 178
+ERROR - 2019-01-05 13:22:03 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoicesettlement.php 178
+ERROR - 2019-01-05 13:22:03 --> Severity: Warning --> Invalid argument supplied for foreach() C:\xampp\htdocs\ria\application\views\bankinvoicesettlement.php 7
+ERROR - 2019-01-05 13:22:03 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoicesettlement.php 178
+ERROR - 2019-01-05 13:22:03 --> Severity: Notice --> Undefined variable: record C:\xampp\htdocs\ria\application\views\bankinvoicesettlement.php 178
+ERROR - 2019-01-05 13:22:03 --> Severity: Notice --> Undefined variable: record C:\xampp\htdocs\ria\application\views\bankinvoicesettlement.php 178
+ERROR - 2019-01-05 13:22:03 --> Severity: Notice --> Undefined variable: record C:\xampp\htdocs\ria\application\views\bankinvoicesettlement.php 178
+ERROR - 2019-01-05 13:22:04 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoicesettlement.php 178
+ERROR - 2019-01-05 13:22:04 --> Severity: Warning --> Invalid argument supplied for foreach() C:\xampp\htdocs\ria\application\views\bankinvoicesettlement.php 7
+ERROR - 2019-01-05 13:22:04 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoicesettlement.php 178
+ERROR - 2019-01-05 13:22:04 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoicesettlement.php 178
+ERROR - 2019-01-05 13:22:04 --> Severity: Notice --> Undefined variable: record C:\xampp\htdocs\ria\application\views\bankinvoicesettlement.php 178
+ERROR - 2019-01-05 13:22:04 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoicesettlement.php 178
+ERROR - 2019-01-05 13:22:04 --> Severity: Notice --> Undefined variable: record C:\xampp\htdocs\ria\application\views\bankinvoicesettlement.php 178
+ERROR - 2019-01-05 13:22:04 --> Severity: Notice --> Undefined variable: record C:\xampp\htdocs\ria\application\views\bankinvoicesettlement.php 178
+ERROR - 2019-01-05 13:22:04 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoicesettlement.php 178
+ERROR - 2019-01-05 13:22:04 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoicesettlement.php 178
+ERROR - 2019-01-05 13:22:04 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoicesettlement.php 178
+ERROR - 2019-01-05 13:22:04 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoicesettlement.php 178
+ERROR - 2019-01-05 13:23:22 --> Severity: Notice --> Undefined variable: financialyear C:\xampp\htdocs\ria\application\views\bankinvoicesettlement.php 7
+ERROR - 2019-01-05 13:23:22 --> Severity: Warning --> Invalid argument supplied for foreach() C:\xampp\htdocs\ria\application\views\bankinvoicesettlement.php 7
+ERROR - 2019-01-05 13:23:22 --> Severity: Notice --> Undefined variable: record C:\xampp\htdocs\ria\application\views\bankinvoicesettlement.php 178
+ERROR - 2019-01-05 13:23:22 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoicesettlement.php 178
+ERROR - 2019-01-05 13:25:38 --> Severity: Notice --> Undefined variable: financialyear C:\xampp\htdocs\ria\application\views\bankinvoicesettlement.php 7
+ERROR - 2019-01-05 13:25:38 --> Severity: Warning --> Invalid argument supplied for foreach() C:\xampp\htdocs\ria\application\views\bankinvoicesettlement.php 7
+ERROR - 2019-01-05 13:25:38 --> Severity: Notice --> Undefined variable: record C:\xampp\htdocs\ria\application\views\bankinvoicesettlement.php 178
+ERROR - 2019-01-05 13:25:38 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoicesettlement.php 178
+ERROR - 2019-01-05 13:33:27 --> Severity: Notice --> Undefined variable: financialyear C:\xampp\htdocs\ria\application\views\bankinvoicesettlement.php 7
+ERROR - 2019-01-05 13:33:27 --> Severity: Warning --> Invalid argument supplied for foreach() C:\xampp\htdocs\ria\application\views\bankinvoicesettlement.php 7
+ERROR - 2019-01-05 13:33:27 --> Severity: Notice --> Undefined variable: record C:\xampp\htdocs\ria\application\views\bankinvoicesettlement.php 178
+ERROR - 2019-01-05 13:33:27 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoicesettlement.php 178
+ERROR - 2019-01-05 13:33:55 --> Severity: Notice --> Undefined variable: financialyear C:\xampp\htdocs\ria\application\views\bankinvoice.php 2
+ERROR - 2019-01-05 13:33:55 --> Severity: Warning --> Invalid argument supplied for foreach() C:\xampp\htdocs\ria\application\views\bankinvoice.php 2
+ERROR - 2019-01-05 13:33:55 --> Severity: Notice --> Undefined variable: cash C:\xampp\htdocs\ria\application\views\bankinvoice.php 84
+ERROR - 2019-01-05 13:33:55 --> Severity: Notice --> Undefined variable: bankid C:\xampp\htdocs\ria\application\views\bankinvoice.php 86
+ERROR - 2019-01-05 13:34:05 --> Severity: Notice --> Undefined variable: financialyear C:\xampp\htdocs\ria\application\views\bankinvoice.php 2
+ERROR - 2019-01-05 13:34:05 --> Severity: Warning --> Invalid argument supplied for foreach() C:\xampp\htdocs\ria\application\views\bankinvoice.php 2
+ERROR - 2019-01-05 13:34:05 --> Severity: Notice --> Undefined variable: cash C:\xampp\htdocs\ria\application\views\bankinvoice.php 84
+ERROR - 2019-01-05 13:34:05 --> Severity: Notice --> Undefined variable: bankid C:\xampp\htdocs\ria\application\views\bankinvoice.php 86
+ERROR - 2019-01-05 13:34:05 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 180
+ERROR - 2019-01-05 13:34:05 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 181
+ERROR - 2019-01-05 13:34:05 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 180
+ERROR - 2019-01-05 13:34:05 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 181
+ERROR - 2019-01-05 13:34:42 --> Severity: Notice --> Undefined variable: fdate C:\xampp\htdocs\ria\application\controllers\cashbook.php 1737
+ERROR - 2019-01-05 13:34:42 --> Severity: Notice --> Undefined variable: tdate C:\xampp\htdocs\ria\application\controllers\cashbook.php 1737
+ERROR - 2019-01-05 13:34:42 --> Severity: Notice --> Undefined variable: fa C:\xampp\htdocs\ria\application\controllers\cashbook.php 1737
+ERROR - 2019-01-05 13:34:42 --> Severity: Notice --> Undefined variable: aa C:\xampp\htdocs\ria\application\controllers\cashbook.php 1737
+ERROR - 2019-01-05 13:34:43 --> Severity: Notice --> Undefined variable: financialyear C:\xampp\htdocs\ria\application\views\bankstatement.php 2
+ERROR - 2019-01-05 13:34:43 --> Severity: Warning --> Invalid argument supplied for foreach() C:\xampp\htdocs\ria\application\views\bankstatement.php 2
+ERROR - 2019-01-05 13:34:43 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 87
+ERROR - 2019-01-05 13:34:43 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 87
+ERROR - 2019-01-05 13:34:43 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 88
+ERROR - 2019-01-05 13:34:43 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 88
+ERROR - 2019-01-05 13:34:43 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 89
+ERROR - 2019-01-05 13:34:43 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 89
+ERROR - 2019-01-05 13:34:43 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 139
+ERROR - 2019-01-05 13:34:43 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 139
+ERROR - 2019-01-05 13:34:43 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 140
+ERROR - 2019-01-05 13:34:43 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 140
+ERROR - 2019-01-05 13:34:43 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 141
+ERROR - 2019-01-05 13:34:43 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 141
+ERROR - 2019-01-05 13:34:55 --> Severity: Notice --> Undefined variable: fdate C:\xampp\htdocs\ria\application\controllers\cashbook.php 1737
+ERROR - 2019-01-05 13:34:55 --> Severity: Notice --> Undefined variable: tdate C:\xampp\htdocs\ria\application\controllers\cashbook.php 1737
+ERROR - 2019-01-05 13:34:55 --> Severity: Notice --> Undefined variable: fa C:\xampp\htdocs\ria\application\controllers\cashbook.php 1737
+ERROR - 2019-01-05 13:34:55 --> Severity: Notice --> Undefined variable: aa C:\xampp\htdocs\ria\application\controllers\cashbook.php 1737
+ERROR - 2019-01-05 13:34:56 --> Severity: Notice --> Undefined variable: financialyear C:\xampp\htdocs\ria\application\views\bankstatement.php 2
+ERROR - 2019-01-05 13:34:56 --> Severity: Warning --> Invalid argument supplied for foreach() C:\xampp\htdocs\ria\application\views\bankstatement.php 2
+ERROR - 2019-01-05 13:34:56 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 87
+ERROR - 2019-01-05 13:34:56 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 87
+ERROR - 2019-01-05 13:34:56 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 88
+ERROR - 2019-01-05 13:34:56 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 88
+ERROR - 2019-01-05 13:34:56 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 89
+ERROR - 2019-01-05 13:34:56 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 89
+ERROR - 2019-01-05 13:34:56 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 139
+ERROR - 2019-01-05 13:34:56 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 139
+ERROR - 2019-01-05 13:34:56 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 140
+ERROR - 2019-01-05 13:34:56 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 140
+ERROR - 2019-01-05 13:34:56 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 141
+ERROR - 2019-01-05 13:34:56 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 141
+ERROR - 2019-01-05 13:35:03 --> Severity: Notice --> Undefined variable: financialyear C:\xampp\htdocs\ria\application\views\bankinvoicesettlement.php 7
+ERROR - 2019-01-05 13:35:03 --> Severity: Warning --> Invalid argument supplied for foreach() C:\xampp\htdocs\ria\application\views\bankinvoicesettlement.php 7
+ERROR - 2019-01-05 13:35:03 --> Severity: Notice --> Undefined variable: record C:\xampp\htdocs\ria\application\views\bankinvoicesettlement.php 178
+ERROR - 2019-01-05 13:35:03 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoicesettlement.php 178
+ERROR - 2019-01-05 13:35:45 --> Severity: Notice --> Undefined variable: financialyear C:\xampp\htdocs\ria\application\views\bankinvoicesettlement.php 7
+ERROR - 2019-01-05 13:35:45 --> Severity: Warning --> Invalid argument supplied for foreach() C:\xampp\htdocs\ria\application\views\bankinvoicesettlement.php 7
+ERROR - 2019-01-05 13:35:45 --> Severity: Notice --> Undefined variable: record C:\xampp\htdocs\ria\application\views\bankinvoicesettlement.php 178
+ERROR - 2019-01-05 13:35:45 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoicesettlement.php 178
+ERROR - 2019-01-05 13:36:52 --> Severity: Notice --> Undefined variable: creditdebit C:\xampp\htdocs\ria\application\views\bankingfile.php 132
+ERROR - 2019-01-05 13:37:22 --> Severity: Notice --> Undefined variable: fdate C:\xampp\htdocs\ria\application\controllers\cashbook.php 1737
+ERROR - 2019-01-05 13:37:22 --> Severity: Notice --> Undefined variable: tdate C:\xampp\htdocs\ria\application\controllers\cashbook.php 1737
+ERROR - 2019-01-05 13:37:22 --> Severity: Notice --> Undefined variable: fa C:\xampp\htdocs\ria\application\controllers\cashbook.php 1737
+ERROR - 2019-01-05 13:37:22 --> Severity: Notice --> Undefined variable: aa C:\xampp\htdocs\ria\application\controllers\cashbook.php 1737
+ERROR - 2019-01-05 13:37:22 --> Severity: Notice --> Undefined variable: financialyear C:\xampp\htdocs\ria\application\views\bankstatement.php 2
+ERROR - 2019-01-05 13:37:22 --> Severity: Warning --> Invalid argument supplied for foreach() C:\xampp\htdocs\ria\application\views\bankstatement.php 2
+ERROR - 2019-01-05 13:37:22 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 87
+ERROR - 2019-01-05 13:37:22 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 87
+ERROR - 2019-01-05 13:37:22 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 88
+ERROR - 2019-01-05 13:37:23 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 88
+ERROR - 2019-01-05 13:37:23 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 89
+ERROR - 2019-01-05 13:37:23 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 89
+ERROR - 2019-01-05 13:37:23 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 139
+ERROR - 2019-01-05 13:37:23 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 139
+ERROR - 2019-01-05 13:37:23 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 140
+ERROR - 2019-01-05 13:37:23 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 140
+ERROR - 2019-01-05 13:37:23 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 141
+ERROR - 2019-01-05 13:37:23 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 141
+ERROR - 2019-01-05 13:37:46 --> Severity: Notice --> Undefined variable: financialyear C:\xampp\htdocs\ria\application\views\bankamountreceived.php 10
+ERROR - 2019-01-05 13:37:46 --> Severity: Warning --> Invalid argument supplied for foreach() C:\xampp\htdocs\ria\application\views\bankamountreceived.php 10
+ERROR - 2019-01-05 13:37:55 --> Severity: Notice --> Undefined variable: financialyear C:\xampp\htdocs\ria\application\views\bankamountreceived.php 10
+ERROR - 2019-01-05 13:37:55 --> Severity: Warning --> Invalid argument supplied for foreach() C:\xampp\htdocs\ria\application\views\bankamountreceived.php 10
+ERROR - 2019-01-05 13:37:55 --> Severity: Notice --> Undefined variable: t C:\xampp\htdocs\ria\application\views\bankamountreceived.php 164
+ERROR - 2019-01-05 13:37:55 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankamountreceived.php 164
+ERROR - 2019-01-05 13:37:55 --> Severity: Notice --> Undefined variable: t C:\xampp\htdocs\ria\application\views\bankamountreceived.php 164
+ERROR - 2019-01-05 13:37:55 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankamountreceived.php 164
+ERROR - 2019-01-05 13:37:56 --> Severity: Notice --> Undefined variable: record C:\xampp\htdocs\ria\application\views\bankamountreceived.php 171
+ERROR - 2019-01-05 13:37:56 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankamountreceived.php 171
+ERROR - 2019-01-05 13:37:56 --> Severity: Notice --> Undefined variable: t C:\xampp\htdocs\ria\application\views\bankamountreceived.php 164
+ERROR - 2019-01-05 13:37:56 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankamountreceived.php 164
+ERROR - 2019-01-05 13:37:56 --> Severity: Notice --> Undefined variable: t C:\xampp\htdocs\ria\application\views\bankamountreceived.php 164
+ERROR - 2019-01-05 13:37:56 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankamountreceived.php 164
+ERROR - 2019-01-05 13:37:56 --> Severity: Notice --> Undefined variable: record C:\xampp\htdocs\ria\application\views\bankamountreceived.php 171
+ERROR - 2019-01-05 13:37:56 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankamountreceived.php 171
+ERROR - 2019-01-05 13:37:56 --> Severity: Notice --> Undefined variable: t C:\xampp\htdocs\ria\application\views\bankamountreceived.php 164
+ERROR - 2019-01-05 13:37:56 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankamountreceived.php 164
+ERROR - 2019-01-05 13:37:56 --> Severity: Notice --> Undefined variable: t C:\xampp\htdocs\ria\application\views\bankamountreceived.php 164
+ERROR - 2019-01-05 13:37:56 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankamountreceived.php 164
+ERROR - 2019-01-05 13:37:56 --> Severity: Notice --> Undefined variable: record C:\xampp\htdocs\ria\application\views\bankamountreceived.php 171
+ERROR - 2019-01-05 13:37:56 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankamountreceived.php 171
+ERROR - 2019-01-05 13:45:51 --> Severity: Notice --> Undefined variable: financialyear C:\xampp\htdocs\ria\application\views\bankamountreceived.php 10
+ERROR - 2019-01-05 13:45:51 --> Severity: Warning --> Invalid argument supplied for foreach() C:\xampp\htdocs\ria\application\views\bankamountreceived.php 10
+ERROR - 2019-01-05 13:45:51 --> Severity: Notice --> Undefined variable: t C:\xampp\htdocs\ria\application\views\bankamountreceived.php 164
+ERROR - 2019-01-05 13:45:51 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankamountreceived.php 164
+ERROR - 2019-01-05 13:45:51 --> Severity: Notice --> Undefined variable: t C:\xampp\htdocs\ria\application\views\bankamountreceived.php 164
+ERROR - 2019-01-05 13:45:52 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankamountreceived.php 164
+ERROR - 2019-01-05 13:45:52 --> Severity: Notice --> Undefined variable: record C:\xampp\htdocs\ria\application\views\bankamountreceived.php 174
+ERROR - 2019-01-05 13:45:52 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankamountreceived.php 174
+ERROR - 2019-01-05 13:45:52 --> Severity: Notice --> Undefined variable: t C:\xampp\htdocs\ria\application\views\bankamountreceived.php 164
+ERROR - 2019-01-05 13:45:52 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankamountreceived.php 164
+ERROR - 2019-01-05 13:45:52 --> Severity: Notice --> Undefined variable: t C:\xampp\htdocs\ria\application\views\bankamountreceived.php 164
+ERROR - 2019-01-05 13:45:52 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankamountreceived.php 164
+ERROR - 2019-01-05 13:45:52 --> Severity: Notice --> Undefined variable: record C:\xampp\htdocs\ria\application\views\bankamountreceived.php 174
+ERROR - 2019-01-05 13:45:52 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankamountreceived.php 174
+ERROR - 2019-01-05 13:45:52 --> Severity: Notice --> Undefined variable: t C:\xampp\htdocs\ria\application\views\bankamountreceived.php 164
+ERROR - 2019-01-05 13:45:52 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankamountreceived.php 164
+ERROR - 2019-01-05 13:45:52 --> Severity: Notice --> Undefined variable: t C:\xampp\htdocs\ria\application\views\bankamountreceived.php 164
+ERROR - 2019-01-05 13:45:52 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankamountreceived.php 164
+ERROR - 2019-01-05 13:45:52 --> Severity: Notice --> Undefined variable: record C:\xampp\htdocs\ria\application\views\bankamountreceived.php 174
+ERROR - 2019-01-05 13:45:52 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankamountreceived.php 174
+ERROR - 2019-01-05 13:46:39 --> Severity: Notice --> Undefined variable: fdate C:\xampp\htdocs\ria\application\controllers\cashbook.php 1737
+ERROR - 2019-01-05 13:46:39 --> Severity: Notice --> Undefined variable: tdate C:\xampp\htdocs\ria\application\controllers\cashbook.php 1737
+ERROR - 2019-01-05 13:46:39 --> Severity: Notice --> Undefined variable: fa C:\xampp\htdocs\ria\application\controllers\cashbook.php 1737
+ERROR - 2019-01-05 13:46:39 --> Severity: Notice --> Undefined variable: aa C:\xampp\htdocs\ria\application\controllers\cashbook.php 1737
+ERROR - 2019-01-05 13:46:39 --> Severity: Notice --> Undefined variable: financialyear C:\xampp\htdocs\ria\application\views\bankstatement.php 2
+ERROR - 2019-01-05 13:46:39 --> Severity: Warning --> Invalid argument supplied for foreach() C:\xampp\htdocs\ria\application\views\bankstatement.php 2
+ERROR - 2019-01-05 13:46:40 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 87
+ERROR - 2019-01-05 13:46:40 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 87
+ERROR - 2019-01-05 13:46:40 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 88
+ERROR - 2019-01-05 13:46:40 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 88
+ERROR - 2019-01-05 13:46:40 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 89
+ERROR - 2019-01-05 13:46:40 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 89
+ERROR - 2019-01-05 13:46:40 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 139
+ERROR - 2019-01-05 13:46:40 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 139
+ERROR - 2019-01-05 13:46:40 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 140
+ERROR - 2019-01-05 13:46:40 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 140
+ERROR - 2019-01-05 13:46:40 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 141
+ERROR - 2019-01-05 13:46:40 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 141
+ERROR - 2019-01-05 13:46:50 --> Severity: Notice --> Undefined variable: financialyear C:\xampp\htdocs\ria\application\views\bankinvoicesettlement.php 7
+ERROR - 2019-01-05 13:46:50 --> Severity: Warning --> Invalid argument supplied for foreach() C:\xampp\htdocs\ria\application\views\bankinvoicesettlement.php 7
+ERROR - 2019-01-05 13:46:50 --> Severity: Notice --> Undefined variable: record C:\xampp\htdocs\ria\application\views\bankinvoicesettlement.php 178
+ERROR - 2019-01-05 13:46:50 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoicesettlement.php 178
+ERROR - 2019-01-05 13:47:10 --> Severity: Notice --> Undefined variable: financialyear C:\xampp\htdocs\ria\application\views\bankinvoicesettlement.php 7
+ERROR - 2019-01-05 13:47:10 --> Severity: Warning --> Invalid argument supplied for foreach() C:\xampp\htdocs\ria\application\views\bankinvoicesettlement.php 7
+ERROR - 2019-01-05 13:47:10 --> Severity: Notice --> Undefined variable: record C:\xampp\htdocs\ria\application\views\bankinvoicesettlement.php 178
+ERROR - 2019-01-05 13:47:10 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoicesettlement.php 178
+ERROR - 2019-01-05 13:47:35 --> Severity: Notice --> Undefined variable: financialyear C:\xampp\htdocs\ria\application\views\bankinvoicesettlement.php 7
+ERROR - 2019-01-05 13:47:35 --> Severity: Warning --> Invalid argument supplied for foreach() C:\xampp\htdocs\ria\application\views\bankinvoicesettlement.php 7
+ERROR - 2019-01-05 13:47:36 --> Severity: Notice --> Undefined variable: record C:\xampp\htdocs\ria\application\views\bankinvoicesettlement.php 178
+ERROR - 2019-01-05 13:47:36 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoicesettlement.php 178
+ERROR - 2019-01-05 13:50:04 --> Query error: Unknown column 'IsActive' in 'field list'
+ERROR - 2019-01-05 14:08:42 --> Severity: Notice --> Undefined variable: financialyear C:\xampp\htdocs\ria\application\views\bankdebit.php 2
+ERROR - 2019-01-05 14:08:42 --> Severity: Warning --> Invalid argument supplied for foreach() C:\xampp\htdocs\ria\application\views\bankdebit.php 2
+ERROR - 2019-01-05 14:08:52 --> Severity: Notice --> Undefined variable: financialyear C:\xampp\htdocs\ria\application\views\bankdebit.php 2
+ERROR - 2019-01-05 14:08:52 --> Severity: Warning --> Invalid argument supplied for foreach() C:\xampp\htdocs\ria\application\views\bankdebit.php 2
+ERROR - 2019-01-05 14:08:52 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankdebit.php 167
+ERROR - 2019-01-05 14:08:52 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\ria\application\views\bankdebit.php 169
+ERROR - 2019-01-05 14:08:52 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankdebit.php 167
+ERROR - 2019-01-05 14:08:52 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\ria\application\views\bankdebit.php 169
+ERROR - 2019-01-05 14:08:53 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankdebit.php 167
+ERROR - 2019-01-05 14:08:53 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\ria\application\views\bankdebit.php 169
+ERROR - 2019-01-05 14:08:53 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankdebit.php 167
+ERROR - 2019-01-05 14:08:53 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\ria\application\views\bankdebit.php 169
+ERROR - 2019-01-05 14:08:53 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankdebit.php 167
+ERROR - 2019-01-05 14:08:53 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\ria\application\views\bankdebit.php 169
+ERROR - 2019-01-05 14:08:53 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankdebit.php 167
+ERROR - 2019-01-05 14:08:53 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\ria\application\views\bankdebit.php 169
+ERROR - 2019-01-05 14:08:53 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankdebit.php 167
+ERROR - 2019-01-05 14:08:53 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\ria\application\views\bankdebit.php 169
+ERROR - 2019-01-05 14:08:53 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankdebit.php 167
+ERROR - 2019-01-05 14:08:53 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\ria\application\views\bankdebit.php 169
+ERROR - 2019-01-05 14:08:53 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankdebit.php 167
+ERROR - 2019-01-05 14:08:53 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\ria\application\views\bankdebit.php 169
+ERROR - 2019-01-05 14:08:53 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankdebit.php 167
+ERROR - 2019-01-05 14:08:53 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\ria\application\views\bankdebit.php 169
+ERROR - 2019-01-05 14:08:53 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankdebit.php 167
+ERROR - 2019-01-05 14:08:53 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\ria\application\views\bankdebit.php 169
+ERROR - 2019-01-05 14:08:54 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankdebit.php 167
+ERROR - 2019-01-05 14:08:54 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\ria\application\views\bankdebit.php 169
+ERROR - 2019-01-05 14:08:54 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankdebit.php 167
+ERROR - 2019-01-05 14:08:54 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\ria\application\views\bankdebit.php 169
+ERROR - 2019-01-05 14:08:54 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankdebit.php 167
+ERROR - 2019-01-05 14:08:54 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\ria\application\views\bankdebit.php 169
+ERROR - 2019-01-05 14:08:54 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankdebit.php 167
+ERROR - 2019-01-05 14:08:54 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\ria\application\views\bankdebit.php 169
+ERROR - 2019-01-05 14:08:54 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankdebit.php 167
+ERROR - 2019-01-05 14:08:54 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\ria\application\views\bankdebit.php 169
+ERROR - 2019-01-05 14:08:54 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankdebit.php 167
+ERROR - 2019-01-05 14:08:54 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\ria\application\views\bankdebit.php 169
+ERROR - 2019-01-05 14:08:54 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankdebit.php 167
+ERROR - 2019-01-05 14:08:54 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\ria\application\views\bankdebit.php 169
+ERROR - 2019-01-05 14:08:54 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankdebit.php 167
+ERROR - 2019-01-05 14:08:54 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\ria\application\views\bankdebit.php 169
+ERROR - 2019-01-05 14:08:54 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankdebit.php 167
+ERROR - 2019-01-05 14:08:55 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\ria\application\views\bankdebit.php 169
+ERROR - 2019-01-05 14:08:55 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankdebit.php 167
+ERROR - 2019-01-05 14:08:55 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\ria\application\views\bankdebit.php 169
+ERROR - 2019-01-05 14:08:55 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankdebit.php 167
+ERROR - 2019-01-05 14:08:55 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\ria\application\views\bankdebit.php 169
+ERROR - 2019-01-05 14:08:55 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankdebit.php 167
+ERROR - 2019-01-05 14:08:55 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\ria\application\views\bankdebit.php 169
+ERROR - 2019-01-05 14:08:55 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankdebit.php 167
+ERROR - 2019-01-05 14:08:55 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\ria\application\views\bankdebit.php 169
+ERROR - 2019-01-05 14:08:55 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankdebit.php 167
+ERROR - 2019-01-05 14:08:55 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\ria\application\views\bankdebit.php 169
+ERROR - 2019-01-05 14:08:55 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankdebit.php 167
+ERROR - 2019-01-05 14:08:55 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\ria\application\views\bankdebit.php 169
+ERROR - 2019-01-05 14:08:55 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankdebit.php 167
+ERROR - 2019-01-05 14:08:55 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\ria\application\views\bankdebit.php 169
+ERROR - 2019-01-05 14:10:29 --> Severity: Notice --> Undefined variable: balancetocleared C:\xampp\htdocs\ria\application\controllers\cashbook.php 1932
+ERROR - 2019-01-05 14:10:29 --> Severity: Notice --> Undefined variable: balancetocleared C:\xampp\htdocs\ria\application\controllers\cashbook.php 1932
+ERROR - 2019-01-05 14:10:29 --> Severity: Notice --> Undefined variable: balancetocleared C:\xampp\htdocs\ria\application\controllers\cashbook.php 1932
+ERROR - 2019-01-05 14:10:29 --> Severity: Notice --> Undefined variable: clearedblnce C:\xampp\htdocs\ria\application\controllers\cashbook.php 1941
+ERROR - 2019-01-05 14:10:29 --> Severity: Notice --> Undefined variable: clearedblnce C:\xampp\htdocs\ria\application\controllers\cashbook.php 1941
+ERROR - 2019-01-05 14:10:29 --> Severity: Notice --> Undefined variable: balancetocleared C:\xampp\htdocs\ria\application\controllers\cashbook.php 1941
+ERROR - 2019-01-05 14:10:29 --> Severity: Notice --> Undefined variable: balancetocleared C:\xampp\htdocs\ria\application\controllers\cashbook.php 1941
+ERROR - 2019-01-05 14:10:29 --> Severity: Notice --> Undefined variable: clearedblnce C:\xampp\htdocs\ria\application\controllers\cashbook.php 1941
+ERROR - 2019-01-05 14:10:29 --> Severity: Notice --> Undefined variable: balancetocleared C:\xampp\htdocs\ria\application\controllers\cashbook.php 1941
+ERROR - 2019-01-05 14:10:29 --> Severity: Notice --> Undefined variable: data C:\xampp\htdocs\ria\application\controllers\cashbook.php 2007
+ERROR - 2019-01-05 14:10:29 --> Severity: Notice --> Undefined variable: data C:\xampp\htdocs\ria\application\controllers\cashbook.php 2007
+ERROR - 2019-01-05 14:10:30 --> Severity: Notice --> Undefined variable: data C:\xampp\htdocs\ria\application\controllers\cashbook.php 2007
+ERROR - 2019-01-05 14:10:30 --> Severity: Notice --> Undefined variable: data C:\xampp\htdocs\ria\application\controllers\cashbook.php 2007
+ERROR - 2019-01-05 14:10:30 --> Severity: Notice --> Undefined variable: financialyear C:\xampp\htdocs\ria\application\views\bankstatement.php 2
+ERROR - 2019-01-05 14:10:30 --> Severity: Notice --> Undefined variable: financialyear C:\xampp\htdocs\ria\application\views\bankstatement.php 2
+ERROR - 2019-01-05 14:10:30 --> Severity: Notice --> Undefined variable: financialyear C:\xampp\htdocs\ria\application\views\bankstatement.php 2
+ERROR - 2019-01-05 14:10:30 --> Severity: Warning --> Invalid argument supplied for foreach() C:\xampp\htdocs\ria\application\views\bankstatement.php 2
+ERROR - 2019-01-05 14:10:30 --> Severity: Warning --> Invalid argument supplied for foreach() C:\xampp\htdocs\ria\application\views\bankstatement.php 2
+ERROR - 2019-01-05 14:10:30 --> Severity: Notice --> Undefined variable: financialyear C:\xampp\htdocs\ria\application\views\bankstatement.php 2
+ERROR - 2019-01-05 14:10:30 --> Severity: Notice --> Undefined variable: bankreport C:\xampp\htdocs\ria\application\views\bankstatement.php 8
+ERROR - 2019-01-05 14:10:30 --> Severity: Notice --> Undefined variable: bankreport C:\xampp\htdocs\ria\application\views\bankstatement.php 8
+ERROR - 2019-01-05 14:10:30 --> Severity: Warning --> Invalid argument supplied for foreach() C:\xampp\htdocs\ria\application\views\bankstatement.php 2
+ERROR - 2019-01-05 14:10:30 --> Severity: Warning --> Invalid argument supplied for foreach() C:\xampp\htdocs\ria\application\views\bankstatement.php 2
+ERROR - 2019-01-05 14:10:30 --> Severity: Notice --> Undefined variable: bankreport C:\xampp\htdocs\ria\application\views\bankstatement.php 8
+ERROR - 2019-01-05 14:10:30 --> Severity: Warning --> Invalid argument supplied for foreach() C:\xampp\htdocs\ria\application\views\bankstatement.php 8
+ERROR - 2019-01-05 14:10:30 --> Severity: Warning --> Invalid argument supplied for foreach() C:\xampp\htdocs\ria\application\views\bankstatement.php 8
+ERROR - 2019-01-05 14:10:30 --> Severity: Notice --> Undefined variable: bankreport C:\xampp\htdocs\ria\application\views\bankstatement.php 8
+ERROR - 2019-01-05 14:10:30 --> Severity: Warning --> Invalid argument supplied for foreach() C:\xampp\htdocs\ria\application\views\bankstatement.php 8
+ERROR - 2019-01-05 14:10:30 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 87
+ERROR - 2019-01-05 14:10:30 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 87
+ERROR - 2019-01-05 14:10:30 --> Severity: Warning --> Invalid argument supplied for foreach() C:\xampp\htdocs\ria\application\views\bankstatement.php 8
+ERROR - 2019-01-05 14:10:30 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 87
+ERROR - 2019-01-05 14:10:30 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 87
+ERROR - 2019-01-05 14:10:30 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 87
+ERROR - 2019-01-05 14:10:30 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 87
+ERROR - 2019-01-05 14:10:30 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 88
+ERROR - 2019-01-05 14:10:30 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 87
+ERROR - 2019-01-05 14:10:30 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 88
+ERROR - 2019-01-05 14:10:30 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 87
+ERROR - 2019-01-05 14:10:30 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 88
+ERROR - 2019-01-05 14:10:30 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 88
+ERROR - 2019-01-05 14:10:30 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 88
+ERROR - 2019-01-05 14:10:30 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 88
+ERROR - 2019-01-05 14:10:30 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 88
+ERROR - 2019-01-05 14:10:30 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 89
+ERROR - 2019-01-05 14:10:30 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 89
+ERROR - 2019-01-05 14:10:30 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 88
+ERROR - 2019-01-05 14:10:30 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 89
+ERROR - 2019-01-05 14:10:30 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 89
+ERROR - 2019-01-05 14:10:30 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 89
+ERROR - 2019-01-05 14:10:30 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 89
+ERROR - 2019-01-05 14:10:30 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 89
+ERROR - 2019-01-05 14:10:30 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 139
+ERROR - 2019-01-05 14:10:30 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 139
+ERROR - 2019-01-05 14:10:30 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 89
+ERROR - 2019-01-05 14:10:30 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 139
+ERROR - 2019-01-05 14:10:30 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 139
+ERROR - 2019-01-05 14:10:30 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 139
+ERROR - 2019-01-05 14:10:31 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 140
+ERROR - 2019-01-05 14:10:31 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 140
+ERROR - 2019-01-05 14:10:31 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 139
+ERROR - 2019-01-05 14:10:31 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 139
+ERROR - 2019-01-05 14:10:31 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 139
+ERROR - 2019-01-05 14:10:31 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 140
+ERROR - 2019-01-05 14:10:31 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 140
+ERROR - 2019-01-05 14:10:31 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 140
+ERROR - 2019-01-05 14:10:31 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 141
+ERROR - 2019-01-05 14:10:31 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 140
+ERROR - 2019-01-05 14:10:31 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 140
+ERROR - 2019-01-05 14:10:31 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 141
+ERROR - 2019-01-05 14:10:31 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 141
+ERROR - 2019-01-05 14:10:31 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 141
+ERROR - 2019-01-05 14:10:31 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 140
+ERROR - 2019-01-05 14:10:31 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 141
+ERROR - 2019-01-05 14:10:31 --> Severity: Notice --> Undefined variable: finyear C:\xampp\htdocs\ria\application\views\bankstatement.php 199
+ERROR - 2019-01-05 14:10:31 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 141
+ERROR - 2019-01-05 14:10:31 --> Severity: Notice --> Undefined variable: finyear C:\xampp\htdocs\ria\application\views\bankstatement.php 199
+ERROR - 2019-01-05 14:10:31 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 141
+ERROR - 2019-01-05 14:10:31 --> Severity: Warning --> Invalid argument supplied for foreach() C:\xampp\htdocs\ria\application\views\bankstatement.php 199
+ERROR - 2019-01-05 14:10:31 --> Severity: Warning --> Invalid argument supplied for foreach() C:\xampp\htdocs\ria\application\views\bankstatement.php 199
+ERROR - 2019-01-05 14:10:31 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 141
+ERROR - 2019-01-05 14:10:31 --> Severity: Notice --> Undefined variable: finyear C:\xampp\htdocs\ria\application\views\bankstatement.php 199
+ERROR - 2019-01-05 14:10:31 --> Severity: Warning --> Invalid argument supplied for foreach() C:\xampp\htdocs\ria\application\views\bankstatement.php 199
+ERROR - 2019-01-05 14:10:31 --> Severity: Notice --> Undefined variable: finyear C:\xampp\htdocs\ria\application\views\bankstatement.php 199
+ERROR - 2019-01-05 14:10:31 --> Severity: Notice --> Undefined variable: Bankname C:\xampp\htdocs\ria\application\views\bankstatement.php 237
+ERROR - 2019-01-05 14:10:31 --> Severity: Notice --> Undefined variable: Bankname C:\xampp\htdocs\ria\application\views\bankstatement.php 237
+ERROR - 2019-01-05 14:10:31 --> Severity: Warning --> Invalid argument supplied for foreach() C:\xampp\htdocs\ria\application\views\bankstatement.php 199
+ERROR - 2019-01-05 14:10:31 --> Severity: Notice --> Undefined variable: Bankname C:\xampp\htdocs\ria\application\views\bankstatement.php 237
+ERROR - 2019-01-05 14:10:31 --> Severity: Notice --> Undefined variable: Bankname C:\xampp\htdocs\ria\application\views\bankstatement.php 237
+ERROR - 2019-01-05 14:10:32 --> Severity: Notice --> Undefined variable: fdate C:\xampp\htdocs\ria\application\controllers\cashbook.php 1737
+ERROR - 2019-01-05 14:10:32 --> Severity: Notice --> Undefined variable: fdate C:\xampp\htdocs\ria\application\controllers\cashbook.php 1737
+ERROR - 2019-01-05 14:10:32 --> Severity: Notice --> Undefined variable: tdate C:\xampp\htdocs\ria\application\controllers\cashbook.php 1737
+ERROR - 2019-01-05 14:10:32 --> Severity: Notice --> Undefined variable: fdate C:\xampp\htdocs\ria\application\controllers\cashbook.php 1737
+ERROR - 2019-01-05 14:10:32 --> Severity: Notice --> Undefined variable: fa C:\xampp\htdocs\ria\application\controllers\cashbook.php 1737
+ERROR - 2019-01-05 14:10:32 --> Severity: Notice --> Undefined variable: tdate C:\xampp\htdocs\ria\application\controllers\cashbook.php 1737
+ERROR - 2019-01-05 14:10:32 --> Severity: Notice --> Undefined variable: tdate C:\xampp\htdocs\ria\application\controllers\cashbook.php 1737
+ERROR - 2019-01-05 14:10:32 --> Severity: Notice --> Undefined variable: fa C:\xampp\htdocs\ria\application\controllers\cashbook.php 1737
+ERROR - 2019-01-05 14:10:32 --> Severity: Notice --> Undefined variable: fa C:\xampp\htdocs\ria\application\controllers\cashbook.php 1737
+ERROR - 2019-01-05 14:10:32 --> Severity: Notice --> Undefined variable: aa C:\xampp\htdocs\ria\application\controllers\cashbook.php 1737
+ERROR - 2019-01-05 14:10:32 --> Severity: Notice --> Undefined variable: aa C:\xampp\htdocs\ria\application\controllers\cashbook.php 1737
+ERROR - 2019-01-05 14:10:32 --> Severity: Notice --> Undefined variable: aa C:\xampp\htdocs\ria\application\controllers\cashbook.php 1737
+ERROR - 2019-01-05 14:10:32 --> Severity: Notice --> Undefined variable: financialyear C:\xampp\htdocs\ria\application\views\bankstatement.php 2
+ERROR - 2019-01-05 14:10:32 --> Severity: Notice --> Undefined variable: financialyear C:\xampp\htdocs\ria\application\views\bankstatement.php 2
+ERROR - 2019-01-05 14:10:32 --> Severity: Warning --> Invalid argument supplied for foreach() C:\xampp\htdocs\ria\application\views\bankstatement.php 2
+ERROR - 2019-01-05 14:10:33 --> Severity: Notice --> Undefined variable: financialyear C:\xampp\htdocs\ria\application\views\bankstatement.php 2
+ERROR - 2019-01-05 14:10:33 --> Severity: Warning --> Invalid argument supplied for foreach() C:\xampp\htdocs\ria\application\views\bankstatement.php 2
+ERROR - 2019-01-05 14:10:33 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 87
+ERROR - 2019-01-05 14:10:33 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 87
+ERROR - 2019-01-05 14:10:33 --> Severity: Warning --> Invalid argument supplied for foreach() C:\xampp\htdocs\ria\application\views\bankstatement.php 2
+ERROR - 2019-01-05 14:10:33 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 87
+ERROR - 2019-01-05 14:10:33 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 87
+ERROR - 2019-01-05 14:10:33 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 88
+ERROR - 2019-01-05 14:10:33 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 87
+ERROR - 2019-01-05 14:10:33 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 88
+ERROR - 2019-01-05 14:10:33 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 87
+ERROR - 2019-01-05 14:10:33 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 88
+ERROR - 2019-01-05 14:10:33 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 88
+ERROR - 2019-01-05 14:10:33 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 89
+ERROR - 2019-01-05 14:10:33 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 88
+ERROR - 2019-01-05 14:10:33 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 89
+ERROR - 2019-01-05 14:10:33 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 89
+ERROR - 2019-01-05 14:10:33 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 88
+ERROR - 2019-01-05 14:10:33 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 139
+ERROR - 2019-01-05 14:10:33 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 89
+ERROR - 2019-01-05 14:10:33 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 89
+ERROR - 2019-01-05 14:10:33 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 89
+ERROR - 2019-01-05 14:10:33 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 139
+ERROR - 2019-01-05 14:10:33 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 139
+ERROR - 2019-01-05 14:10:33 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 139
+ERROR - 2019-01-05 14:10:33 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 139
+ERROR - 2019-01-05 14:10:33 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 140
+ERROR - 2019-01-05 14:10:33 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 140
+ERROR - 2019-01-05 14:10:33 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 140
+ERROR - 2019-01-05 14:10:33 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 139
+ERROR - 2019-01-05 14:10:33 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 140
+ERROR - 2019-01-05 14:10:33 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 140
+ERROR - 2019-01-05 14:10:33 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 141
+ERROR - 2019-01-05 14:10:33 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 141
+ERROR - 2019-01-05 14:10:33 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 141
+ERROR - 2019-01-05 14:10:33 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 140
+ERROR - 2019-01-05 14:10:33 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 141
+ERROR - 2019-01-05 14:10:33 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 141
+ERROR - 2019-01-05 14:10:33 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 141
+ERROR - 2019-01-05 14:10:42 --> Severity: Notice --> Undefined variable: financialyear C:\xampp\htdocs\ria\application\views\banksettlement.php 4
+ERROR - 2019-01-05 14:10:42 --> Severity: Warning --> Invalid argument supplied for foreach() C:\xampp\htdocs\ria\application\views\banksettlement.php 4
+ERROR - 2019-01-05 14:10:42 --> Severity: Notice --> Undefined variable: t C:\xampp\htdocs\ria\application\views\banksettlement.php 278
+ERROR - 2019-01-05 14:10:42 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\banksettlement.php 278
+ERROR - 2019-01-05 14:10:42 --> Severity: Notice --> Undefined variable: t C:\xampp\htdocs\ria\application\views\banksettlement.php 278
+ERROR - 2019-01-05 14:10:42 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\banksettlement.php 278
+ERROR - 2019-01-05 14:10:42 --> Severity: Notice --> Undefined variable: rel C:\xampp\htdocs\ria\application\views\banksettlement.php 279
+ERROR - 2019-01-05 14:10:43 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\banksettlement.php 279
+ERROR - 2019-01-05 14:10:43 --> Severity: Notice --> Undefined variable: record C:\xampp\htdocs\ria\application\views\banksettlement.php 325
+ERROR - 2019-01-05 14:10:43 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\banksettlement.php 325
+ERROR - 2019-01-05 14:10:43 --> Severity: Notice --> Undefined variable: t C:\xampp\htdocs\ria\application\views\banksettlement.php 278
+ERROR - 2019-01-05 14:10:43 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\banksettlement.php 278
+ERROR - 2019-01-05 14:10:43 --> Severity: Notice --> Undefined variable: t C:\xampp\htdocs\ria\application\views\banksettlement.php 278
+ERROR - 2019-01-05 14:10:43 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\banksettlement.php 278
+ERROR - 2019-01-05 14:10:43 --> Severity: Notice --> Undefined variable: rel C:\xampp\htdocs\ria\application\views\banksettlement.php 279
+ERROR - 2019-01-05 14:10:43 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\banksettlement.php 279
+ERROR - 2019-01-05 14:10:43 --> Severity: Notice --> Undefined variable: t C:\xampp\htdocs\ria\application\views\banksettlement.php 278
+ERROR - 2019-01-05 14:10:43 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\banksettlement.php 278
+ERROR - 2019-01-05 14:10:43 --> Severity: Notice --> Undefined variable: t C:\xampp\htdocs\ria\application\views\banksettlement.php 278
+ERROR - 2019-01-05 14:10:43 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\banksettlement.php 278
+ERROR - 2019-01-05 14:10:43 --> Severity: Notice --> Undefined variable: rel C:\xampp\htdocs\ria\application\views\banksettlement.php 279
+ERROR - 2019-01-05 14:10:43 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\banksettlement.php 279
+ERROR - 2019-01-05 14:10:43 --> Severity: Notice --> Undefined variable: t C:\xampp\htdocs\ria\application\views\banksettlement.php 278
+ERROR - 2019-01-05 14:10:43 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\banksettlement.php 278
+ERROR - 2019-01-05 14:10:44 --> Severity: Notice --> Undefined variable: t C:\xampp\htdocs\ria\application\views\banksettlement.php 278
+ERROR - 2019-01-05 14:10:44 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\banksettlement.php 278
+ERROR - 2019-01-05 14:10:44 --> Severity: Notice --> Undefined variable: rel C:\xampp\htdocs\ria\application\views\banksettlement.php 279
+ERROR - 2019-01-05 14:10:44 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\banksettlement.php 279
+ERROR - 2019-01-05 14:10:44 --> Severity: Notice --> Undefined variable: record C:\xampp\htdocs\ria\application\views\banksettlement.php 325
+ERROR - 2019-01-05 14:10:44 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\banksettlement.php 325
+ERROR - 2019-01-05 14:10:57 --> Severity: Notice --> Undefined variable: fdate C:\xampp\htdocs\ria\application\controllers\cashbook.php 1737
+ERROR - 2019-01-05 14:10:57 --> Severity: Notice --> Undefined variable: tdate C:\xampp\htdocs\ria\application\controllers\cashbook.php 1737
+ERROR - 2019-01-05 14:10:57 --> Severity: Notice --> Undefined variable: fa C:\xampp\htdocs\ria\application\controllers\cashbook.php 1737
+ERROR - 2019-01-05 14:10:57 --> Severity: Notice --> Undefined variable: aa C:\xampp\htdocs\ria\application\controllers\cashbook.php 1737
+ERROR - 2019-01-05 14:10:58 --> Severity: Notice --> Undefined variable: financialyear C:\xampp\htdocs\ria\application\views\bankstatement.php 2
+ERROR - 2019-01-05 14:10:58 --> Severity: Warning --> Invalid argument supplied for foreach() C:\xampp\htdocs\ria\application\views\bankstatement.php 2
+ERROR - 2019-01-05 14:10:58 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 87
+ERROR - 2019-01-05 14:10:58 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 87
+ERROR - 2019-01-05 14:10:58 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 88
+ERROR - 2019-01-05 14:10:58 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 88
+ERROR - 2019-01-05 14:10:58 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 89
+ERROR - 2019-01-05 14:10:58 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 89
+ERROR - 2019-01-05 14:10:58 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 139
+ERROR - 2019-01-05 14:10:58 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 139
+ERROR - 2019-01-05 14:10:58 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 140
+ERROR - 2019-01-05 14:10:58 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 140
+ERROR - 2019-01-05 14:10:58 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 141
+ERROR - 2019-01-05 14:10:58 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 141
+ERROR - 2019-01-05 14:11:05 --> Severity: Notice --> Undefined variable: financialyear C:\xampp\htdocs\ria\application\views\banksettlement.php 4
+ERROR - 2019-01-05 14:11:05 --> Severity: Warning --> Invalid argument supplied for foreach() C:\xampp\htdocs\ria\application\views\banksettlement.php 4
+ERROR - 2019-01-05 14:11:06 --> Severity: Notice --> Undefined variable: t C:\xampp\htdocs\ria\application\views\banksettlement.php 278
+ERROR - 2019-01-05 14:11:06 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\banksettlement.php 278
+ERROR - 2019-01-05 14:11:06 --> Severity: Notice --> Undefined variable: t C:\xampp\htdocs\ria\application\views\banksettlement.php 278
+ERROR - 2019-01-05 14:11:06 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\banksettlement.php 278
+ERROR - 2019-01-05 14:11:06 --> Severity: Notice --> Undefined variable: rel C:\xampp\htdocs\ria\application\views\banksettlement.php 279
+ERROR - 2019-01-05 14:11:06 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\banksettlement.php 279
+ERROR - 2019-01-05 14:11:06 --> Severity: Notice --> Undefined variable: record C:\xampp\htdocs\ria\application\views\banksettlement.php 325
+ERROR - 2019-01-05 14:11:06 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\banksettlement.php 325
+ERROR - 2019-01-05 14:11:06 --> Severity: Notice --> Undefined variable: t C:\xampp\htdocs\ria\application\views\banksettlement.php 278
+ERROR - 2019-01-05 14:11:06 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\banksettlement.php 278
+ERROR - 2019-01-05 14:11:06 --> Severity: Notice --> Undefined variable: t C:\xampp\htdocs\ria\application\views\banksettlement.php 278
+ERROR - 2019-01-05 14:11:06 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\banksettlement.php 278
+ERROR - 2019-01-05 14:11:06 --> Severity: Notice --> Undefined variable: rel C:\xampp\htdocs\ria\application\views\banksettlement.php 279
+ERROR - 2019-01-05 14:11:06 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\banksettlement.php 279
+ERROR - 2019-01-05 14:11:06 --> Severity: Notice --> Undefined variable: t C:\xampp\htdocs\ria\application\views\banksettlement.php 278
+ERROR - 2019-01-05 14:11:06 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\banksettlement.php 278
+ERROR - 2019-01-05 14:11:07 --> Severity: Notice --> Undefined variable: t C:\xampp\htdocs\ria\application\views\banksettlement.php 278
+ERROR - 2019-01-05 14:11:07 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\banksettlement.php 278
+ERROR - 2019-01-05 14:11:07 --> Severity: Notice --> Undefined variable: rel C:\xampp\htdocs\ria\application\views\banksettlement.php 279
+ERROR - 2019-01-05 14:11:07 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\banksettlement.php 279
+ERROR - 2019-01-05 14:11:30 --> Severity: Notice --> Undefined variable: financialyear C:\xampp\htdocs\ria\application\views\bankdebit.php 2
+ERROR - 2019-01-05 14:11:30 --> Severity: Warning --> Invalid argument supplied for foreach() C:\xampp\htdocs\ria\application\views\bankdebit.php 2
+ERROR - 2019-01-05 14:11:48 --> Severity: Notice --> Undefined variable: financialyear C:\xampp\htdocs\ria\application\views\bankdebit.php 2
+ERROR - 2019-01-05 14:11:48 --> Severity: Warning --> Invalid argument supplied for foreach() C:\xampp\htdocs\ria\application\views\bankdebit.php 2
+ERROR - 2019-01-05 14:11:48 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankdebit.php 167
+ERROR - 2019-01-05 14:11:48 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\ria\application\views\bankdebit.php 169
+ERROR - 2019-01-05 14:11:48 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankdebit.php 167
+ERROR - 2019-01-05 14:11:48 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\ria\application\views\bankdebit.php 169
+ERROR - 2019-01-05 14:11:48 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankdebit.php 167
+ERROR - 2019-01-05 14:11:48 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\ria\application\views\bankdebit.php 169
+ERROR - 2019-01-05 14:11:48 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankdebit.php 167
+ERROR - 2019-01-05 14:11:48 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\ria\application\views\bankdebit.php 169
+ERROR - 2019-01-05 14:11:48 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankdebit.php 167
+ERROR - 2019-01-05 14:11:48 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\ria\application\views\bankdebit.php 169
+ERROR - 2019-01-05 14:11:48 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankdebit.php 167
+ERROR - 2019-01-05 14:11:49 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\ria\application\views\bankdebit.php 169
+ERROR - 2019-01-05 14:11:49 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankdebit.php 167
+ERROR - 2019-01-05 14:11:49 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\ria\application\views\bankdebit.php 169
+ERROR - 2019-01-05 14:11:49 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankdebit.php 167
+ERROR - 2019-01-05 14:11:49 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\ria\application\views\bankdebit.php 169
+ERROR - 2019-01-05 14:11:49 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankdebit.php 167
+ERROR - 2019-01-05 14:11:49 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\ria\application\views\bankdebit.php 169
+ERROR - 2019-01-05 14:11:49 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankdebit.php 167
+ERROR - 2019-01-05 14:11:49 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\ria\application\views\bankdebit.php 169
+ERROR - 2019-01-05 14:11:49 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankdebit.php 167
+ERROR - 2019-01-05 14:11:49 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\ria\application\views\bankdebit.php 169
+ERROR - 2019-01-05 14:11:49 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankdebit.php 167
+ERROR - 2019-01-05 14:11:49 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\ria\application\views\bankdebit.php 169
+ERROR - 2019-01-05 14:11:49 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankdebit.php 167
+ERROR - 2019-01-05 14:11:49 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\ria\application\views\bankdebit.php 169
+ERROR - 2019-01-05 14:11:50 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankdebit.php 167
+ERROR - 2019-01-05 14:11:50 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\ria\application\views\bankdebit.php 169
+ERROR - 2019-01-05 14:11:50 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankdebit.php 167
+ERROR - 2019-01-05 14:11:50 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\ria\application\views\bankdebit.php 169
+ERROR - 2019-01-05 14:11:50 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankdebit.php 167
+ERROR - 2019-01-05 14:11:50 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\ria\application\views\bankdebit.php 169
+ERROR - 2019-01-05 14:11:50 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankdebit.php 167
+ERROR - 2019-01-05 14:11:50 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\ria\application\views\bankdebit.php 169
+ERROR - 2019-01-05 14:11:50 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankdebit.php 167
+ERROR - 2019-01-05 14:11:50 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\ria\application\views\bankdebit.php 169
+ERROR - 2019-01-05 14:11:50 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankdebit.php 167
+ERROR - 2019-01-05 14:11:50 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\ria\application\views\bankdebit.php 169
+ERROR - 2019-01-05 14:11:50 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankdebit.php 167
+ERROR - 2019-01-05 14:11:50 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\ria\application\views\bankdebit.php 169
+ERROR - 2019-01-05 14:11:50 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankdebit.php 167
+ERROR - 2019-01-05 14:11:50 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\ria\application\views\bankdebit.php 169
+ERROR - 2019-01-05 14:11:51 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankdebit.php 167
+ERROR - 2019-01-05 14:11:51 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\ria\application\views\bankdebit.php 169
+ERROR - 2019-01-05 14:11:51 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankdebit.php 167
+ERROR - 2019-01-05 14:11:51 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\ria\application\views\bankdebit.php 169
+ERROR - 2019-01-05 14:11:51 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankdebit.php 167
+ERROR - 2019-01-05 14:11:51 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\ria\application\views\bankdebit.php 169
+ERROR - 2019-01-05 14:11:51 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankdebit.php 167
+ERROR - 2019-01-05 14:11:51 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\ria\application\views\bankdebit.php 169
+ERROR - 2019-01-05 14:11:51 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankdebit.php 167
+ERROR - 2019-01-05 14:11:51 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\ria\application\views\bankdebit.php 169
+ERROR - 2019-01-05 14:11:51 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankdebit.php 167
+ERROR - 2019-01-05 14:11:51 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\ria\application\views\bankdebit.php 169
+ERROR - 2019-01-05 14:12:52 --> Severity: Notice --> Undefined variable: balancetocleared C:\xampp\htdocs\ria\application\controllers\cashbook.php 1932
+ERROR - 2019-01-05 14:12:52 --> Severity: Notice --> Undefined variable: balancetocleared C:\xampp\htdocs\ria\application\controllers\cashbook.php 1932
+ERROR - 2019-01-05 14:12:52 --> Severity: Notice --> Undefined variable: balancetocleared C:\xampp\htdocs\ria\application\controllers\cashbook.php 1932
+ERROR - 2019-01-05 14:12:52 --> Severity: Notice --> Undefined variable: clearedblnce C:\xampp\htdocs\ria\application\controllers\cashbook.php 1941
+ERROR - 2019-01-05 14:12:52 --> Severity: Notice --> Undefined variable: clearedblnce C:\xampp\htdocs\ria\application\controllers\cashbook.php 1941
+ERROR - 2019-01-05 14:12:52 --> Severity: Notice --> Undefined variable: clearedblnce C:\xampp\htdocs\ria\application\controllers\cashbook.php 1941
+ERROR - 2019-01-05 14:12:52 --> Severity: Notice --> Undefined variable: balancetocleared C:\xampp\htdocs\ria\application\controllers\cashbook.php 1941
+ERROR - 2019-01-05 14:12:52 --> Severity: Notice --> Undefined variable: balancetocleared C:\xampp\htdocs\ria\application\controllers\cashbook.php 1941
+ERROR - 2019-01-05 14:12:52 --> Severity: Notice --> Undefined variable: balancetocleared C:\xampp\htdocs\ria\application\controllers\cashbook.php 1941
+ERROR - 2019-01-05 14:13:03 --> Severity: Notice --> Undefined variable: data C:\xampp\htdocs\ria\application\controllers\cashbook.php 2007
+ERROR - 2019-01-05 14:13:03 --> Severity: Notice --> Undefined variable: data C:\xampp\htdocs\ria\application\controllers\cashbook.php 2007
+ERROR - 2019-01-05 14:13:03 --> Severity: Notice --> Undefined variable: data C:\xampp\htdocs\ria\application\controllers\cashbook.php 2007
+ERROR - 2019-01-05 14:13:04 --> Severity: Notice --> Undefined variable: data C:\xampp\htdocs\ria\application\controllers\cashbook.php 2007
+ERROR - 2019-01-05 14:13:06 --> Severity: Notice --> Undefined variable: financialyear C:\xampp\htdocs\ria\application\views\bankstatement.php 2
+ERROR - 2019-01-05 14:13:06 --> Severity: Notice --> Undefined variable: financialyear C:\xampp\htdocs\ria\application\views\bankstatement.php 2
+ERROR - 2019-01-05 14:13:06 --> Severity: Notice --> Undefined variable: financialyear C:\xampp\htdocs\ria\application\views\bankstatement.php 2
+ERROR - 2019-01-05 14:13:06 --> Severity: Warning --> Invalid argument supplied for foreach() C:\xampp\htdocs\ria\application\views\bankstatement.php 2
+ERROR - 2019-01-05 14:13:06 --> Severity: Warning --> Invalid argument supplied for foreach() C:\xampp\htdocs\ria\application\views\bankstatement.php 2
+ERROR - 2019-01-05 14:13:06 --> Severity: Warning --> Invalid argument supplied for foreach() C:\xampp\htdocs\ria\application\views\bankstatement.php 2
+ERROR - 2019-01-05 14:13:07 --> Severity: Notice --> Undefined variable: bankreport C:\xampp\htdocs\ria\application\views\bankstatement.php 8
+ERROR - 2019-01-05 14:13:07 --> Severity: Notice --> Undefined variable: bankreport C:\xampp\htdocs\ria\application\views\bankstatement.php 8
+ERROR - 2019-01-05 14:13:07 --> Severity: Notice --> Undefined variable: bankreport C:\xampp\htdocs\ria\application\views\bankstatement.php 8
+ERROR - 2019-01-05 14:13:07 --> Severity: Warning --> Invalid argument supplied for foreach() C:\xampp\htdocs\ria\application\views\bankstatement.php 8
+ERROR - 2019-01-05 14:13:07 --> Severity: Warning --> Invalid argument supplied for foreach() C:\xampp\htdocs\ria\application\views\bankstatement.php 8
+ERROR - 2019-01-05 14:13:07 --> Severity: Warning --> Invalid argument supplied for foreach() C:\xampp\htdocs\ria\application\views\bankstatement.php 8
+ERROR - 2019-01-05 14:13:07 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 87
+ERROR - 2019-01-05 14:13:07 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 87
+ERROR - 2019-01-05 14:13:07 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 87
+ERROR - 2019-01-05 14:13:07 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 87
+ERROR - 2019-01-05 14:13:07 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 87
+ERROR - 2019-01-05 14:13:07 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 87
+ERROR - 2019-01-05 14:13:07 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 88
+ERROR - 2019-01-05 14:13:07 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 88
+ERROR - 2019-01-05 14:13:07 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 88
+ERROR - 2019-01-05 14:13:07 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 88
+ERROR - 2019-01-05 14:13:07 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 88
+ERROR - 2019-01-05 14:13:07 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 88
+ERROR - 2019-01-05 14:13:07 --> Severity: Notice --> Undefined variable: financialyear C:\xampp\htdocs\ria\application\views\bankstatement.php 2
+ERROR - 2019-01-05 14:13:07 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 89
+ERROR - 2019-01-05 14:13:07 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 89
+ERROR - 2019-01-05 14:13:07 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 89
+ERROR - 2019-01-05 14:13:07 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 89
+ERROR - 2019-01-05 14:13:07 --> Severity: Warning --> Invalid argument supplied for foreach() C:\xampp\htdocs\ria\application\views\bankstatement.php 2
+ERROR - 2019-01-05 14:13:07 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 89
+ERROR - 2019-01-05 14:13:07 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 89
+ERROR - 2019-01-05 14:13:07 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 139
+ERROR - 2019-01-05 14:13:07 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 139
+ERROR - 2019-01-05 14:13:07 --> Severity: Notice --> Undefined variable: bankreport C:\xampp\htdocs\ria\application\views\bankstatement.php 8
+ERROR - 2019-01-05 14:13:07 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 139
+ERROR - 2019-01-05 14:13:07 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 139
+ERROR - 2019-01-05 14:13:07 --> Severity: Warning --> Invalid argument supplied for foreach() C:\xampp\htdocs\ria\application\views\bankstatement.php 8
+ERROR - 2019-01-05 14:13:07 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 139
+ERROR - 2019-01-05 14:13:07 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 139
+ERROR - 2019-01-05 14:13:07 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 87
+ERROR - 2019-01-05 14:13:07 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 140
+ERROR - 2019-01-05 14:13:07 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 140
+ERROR - 2019-01-05 14:13:07 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 140
+ERROR - 2019-01-05 14:13:07 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 140
+ERROR - 2019-01-05 14:13:07 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 140
+ERROR - 2019-01-05 14:13:07 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 140
+ERROR - 2019-01-05 14:13:07 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 87
+ERROR - 2019-01-05 14:13:07 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 88
+ERROR - 2019-01-05 14:13:07 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 141
+ERROR - 2019-01-05 14:13:07 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 141
+ERROR - 2019-01-05 14:13:07 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 141
+ERROR - 2019-01-05 14:13:07 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 141
+ERROR - 2019-01-05 14:13:07 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 141
+ERROR - 2019-01-05 14:13:07 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 141
+ERROR - 2019-01-05 14:13:07 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 88
+ERROR - 2019-01-05 14:13:07 --> Severity: Notice --> Undefined variable: finyear C:\xampp\htdocs\ria\application\views\bankstatement.php 199
+ERROR - 2019-01-05 14:13:07 --> Severity: Notice --> Undefined variable: finyear C:\xampp\htdocs\ria\application\views\bankstatement.php 199
+ERROR - 2019-01-05 14:13:07 --> Severity: Notice --> Undefined variable: finyear C:\xampp\htdocs\ria\application\views\bankstatement.php 199
+ERROR - 2019-01-05 14:13:07 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 89
+ERROR - 2019-01-05 14:13:07 --> Severity: Warning --> Invalid argument supplied for foreach() C:\xampp\htdocs\ria\application\views\bankstatement.php 199
+ERROR - 2019-01-05 14:13:07 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 89
+ERROR - 2019-01-05 14:13:07 --> Severity: Warning --> Invalid argument supplied for foreach() C:\xampp\htdocs\ria\application\views\bankstatement.php 199
+ERROR - 2019-01-05 14:13:07 --> Severity: Warning --> Invalid argument supplied for foreach() C:\xampp\htdocs\ria\application\views\bankstatement.php 199
+ERROR - 2019-01-05 14:13:07 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 139
+ERROR - 2019-01-05 14:13:07 --> Severity: Notice --> Undefined variable: Bankname C:\xampp\htdocs\ria\application\views\bankstatement.php 237
+ERROR - 2019-01-05 14:13:07 --> Severity: Notice --> Undefined variable: Bankname C:\xampp\htdocs\ria\application\views\bankstatement.php 237
+ERROR - 2019-01-05 14:13:07 --> Severity: Notice --> Undefined variable: Bankname C:\xampp\htdocs\ria\application\views\bankstatement.php 237
+ERROR - 2019-01-05 14:13:08 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 139
+ERROR - 2019-01-05 14:13:08 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 140
+ERROR - 2019-01-05 14:13:08 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 140
+ERROR - 2019-01-05 14:13:08 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 141
+ERROR - 2019-01-05 14:13:08 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 141
+ERROR - 2019-01-05 14:13:08 --> Severity: Notice --> Undefined variable: finyear C:\xampp\htdocs\ria\application\views\bankstatement.php 199
+ERROR - 2019-01-05 14:13:08 --> Severity: Warning --> Invalid argument supplied for foreach() C:\xampp\htdocs\ria\application\views\bankstatement.php 199
+ERROR - 2019-01-05 14:13:08 --> Severity: Notice --> Undefined variable: Bankname C:\xampp\htdocs\ria\application\views\bankstatement.php 237
+ERROR - 2019-01-05 14:13:12 --> Severity: Notice --> Undefined variable: fdate C:\xampp\htdocs\ria\application\controllers\cashbook.php 1737
+ERROR - 2019-01-05 14:13:12 --> Severity: Notice --> Undefined variable: tdate C:\xampp\htdocs\ria\application\controllers\cashbook.php 1737
+ERROR - 2019-01-05 14:13:12 --> Severity: Notice --> Undefined variable: fa C:\xampp\htdocs\ria\application\controllers\cashbook.php 1737
+ERROR - 2019-01-05 14:13:12 --> Severity: Notice --> Undefined variable: aa C:\xampp\htdocs\ria\application\controllers\cashbook.php 1737
+ERROR - 2019-01-05 14:13:12 --> Severity: Notice --> Undefined variable: fdate C:\xampp\htdocs\ria\application\controllers\cashbook.php 1737
+ERROR - 2019-01-05 14:13:12 --> Severity: Notice --> Undefined variable: tdate C:\xampp\htdocs\ria\application\controllers\cashbook.php 1737
+ERROR - 2019-01-05 14:13:12 --> Severity: Notice --> Undefined variable: fa C:\xampp\htdocs\ria\application\controllers\cashbook.php 1737
+ERROR - 2019-01-05 14:13:12 --> Severity: Notice --> Undefined variable: aa C:\xampp\htdocs\ria\application\controllers\cashbook.php 1737
+ERROR - 2019-01-05 14:13:25 --> Severity: Notice --> Undefined variable: financialyear C:\xampp\htdocs\ria\application\views\bankstatement.php 2
+ERROR - 2019-01-05 14:13:25 --> Severity: Notice --> Undefined variable: financialyear C:\xampp\htdocs\ria\application\views\bankstatement.php 2
+ERROR - 2019-01-05 14:13:25 --> Severity: Warning --> Invalid argument supplied for foreach() C:\xampp\htdocs\ria\application\views\bankstatement.php 2
+ERROR - 2019-01-05 14:13:25 --> Severity: Warning --> Invalid argument supplied for foreach() C:\xampp\htdocs\ria\application\views\bankstatement.php 2
+ERROR - 2019-01-05 14:13:25 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 87
+ERROR - 2019-01-05 14:13:25 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 87
+ERROR - 2019-01-05 14:13:25 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 87
+ERROR - 2019-01-05 14:13:25 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 87
+ERROR - 2019-01-05 14:13:25 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 88
+ERROR - 2019-01-05 14:13:25 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 88
+ERROR - 2019-01-05 14:13:25 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 88
+ERROR - 2019-01-05 14:13:25 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 88
+ERROR - 2019-01-05 14:13:25 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 89
+ERROR - 2019-01-05 14:13:25 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 89
+ERROR - 2019-01-05 14:13:25 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 89
+ERROR - 2019-01-05 14:13:25 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 139
+ERROR - 2019-01-05 14:13:25 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 89
+ERROR - 2019-01-05 14:13:25 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 139
+ERROR - 2019-01-05 14:13:25 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 139
+ERROR - 2019-01-05 14:13:25 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 140
+ERROR - 2019-01-05 14:13:25 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 139
+ERROR - 2019-01-05 14:13:25 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 140
+ERROR - 2019-01-05 14:13:25 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 140
+ERROR - 2019-01-05 14:13:25 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 141
+ERROR - 2019-01-05 14:13:25 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 140
+ERROR - 2019-01-05 14:13:26 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 141
+ERROR - 2019-01-05 14:13:26 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 141
+ERROR - 2019-01-05 14:13:26 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 141
+ERROR - 2019-01-05 14:13:34 --> Severity: Notice --> Undefined variable: financialyear C:\xampp\htdocs\ria\application\views\banksettlement.php 4
+ERROR - 2019-01-05 14:13:34 --> Severity: Warning --> Invalid argument supplied for foreach() C:\xampp\htdocs\ria\application\views\banksettlement.php 4
+ERROR - 2019-01-05 14:13:34 --> Severity: Notice --> Undefined variable: t C:\xampp\htdocs\ria\application\views\banksettlement.php 278
+ERROR - 2019-01-05 14:13:34 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\banksettlement.php 278
+ERROR - 2019-01-05 14:13:34 --> Severity: Notice --> Undefined variable: t C:\xampp\htdocs\ria\application\views\banksettlement.php 278
+ERROR - 2019-01-05 14:13:34 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\banksettlement.php 278
+ERROR - 2019-01-05 14:13:34 --> Severity: Notice --> Undefined variable: rel C:\xampp\htdocs\ria\application\views\banksettlement.php 279
+ERROR - 2019-01-05 14:13:34 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\banksettlement.php 279
+ERROR - 2019-01-05 14:13:34 --> Severity: Notice --> Undefined variable: record C:\xampp\htdocs\ria\application\views\banksettlement.php 325
+ERROR - 2019-01-05 14:13:34 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\banksettlement.php 325
+ERROR - 2019-01-05 14:13:35 --> Severity: Notice --> Undefined variable: t C:\xampp\htdocs\ria\application\views\banksettlement.php 278
+ERROR - 2019-01-05 14:13:35 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\banksettlement.php 278
+ERROR - 2019-01-05 14:13:35 --> Severity: Notice --> Undefined variable: t C:\xampp\htdocs\ria\application\views\banksettlement.php 278
+ERROR - 2019-01-05 14:13:35 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\banksettlement.php 278
+ERROR - 2019-01-05 14:13:35 --> Severity: Notice --> Undefined variable: rel C:\xampp\htdocs\ria\application\views\banksettlement.php 279
+ERROR - 2019-01-05 14:13:35 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\banksettlement.php 279
+ERROR - 2019-01-05 14:13:35 --> Severity: Notice --> Undefined variable: t C:\xampp\htdocs\ria\application\views\banksettlement.php 278
+ERROR - 2019-01-05 14:13:35 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\banksettlement.php 278
+ERROR - 2019-01-05 14:13:35 --> Severity: Notice --> Undefined variable: t C:\xampp\htdocs\ria\application\views\banksettlement.php 278
+ERROR - 2019-01-05 14:13:35 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\banksettlement.php 278
+ERROR - 2019-01-05 14:13:35 --> Severity: Notice --> Undefined variable: rel C:\xampp\htdocs\ria\application\views\banksettlement.php 279
+ERROR - 2019-01-05 14:13:35 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\banksettlement.php 279
+ERROR - 2019-01-05 14:13:35 --> Severity: Notice --> Undefined variable: t C:\xampp\htdocs\ria\application\views\banksettlement.php 278
+ERROR - 2019-01-05 14:13:35 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\banksettlement.php 278
+ERROR - 2019-01-05 14:13:35 --> Severity: Notice --> Undefined variable: t C:\xampp\htdocs\ria\application\views\banksettlement.php 278
+ERROR - 2019-01-05 14:13:35 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\banksettlement.php 278
+ERROR - 2019-01-05 14:13:36 --> Severity: Notice --> Undefined variable: rel C:\xampp\htdocs\ria\application\views\banksettlement.php 279
+ERROR - 2019-01-05 14:13:36 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\banksettlement.php 279
+ERROR - 2019-01-05 14:13:36 --> Severity: Notice --> Undefined variable: record C:\xampp\htdocs\ria\application\views\banksettlement.php 325
+ERROR - 2019-01-05 14:13:36 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\banksettlement.php 325
+ERROR - 2019-01-05 14:13:36 --> Severity: Notice --> Undefined variable: t C:\xampp\htdocs\ria\application\views\banksettlement.php 278
+ERROR - 2019-01-05 14:13:36 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\banksettlement.php 278
+ERROR - 2019-01-05 14:13:36 --> Severity: Notice --> Undefined variable: t C:\xampp\htdocs\ria\application\views\banksettlement.php 278
+ERROR - 2019-01-05 14:13:36 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\banksettlement.php 278
+ERROR - 2019-01-05 14:13:36 --> Severity: Notice --> Undefined variable: rel C:\xampp\htdocs\ria\application\views\banksettlement.php 279
+ERROR - 2019-01-05 14:13:36 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\banksettlement.php 279
+ERROR - 2019-01-05 14:13:36 --> Severity: Notice --> Undefined variable: t C:\xampp\htdocs\ria\application\views\banksettlement.php 278
+ERROR - 2019-01-05 14:13:36 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\banksettlement.php 278
+ERROR - 2019-01-05 14:13:36 --> Severity: Notice --> Undefined variable: t C:\xampp\htdocs\ria\application\views\banksettlement.php 278
+ERROR - 2019-01-05 14:13:36 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\banksettlement.php 278
+ERROR - 2019-01-05 14:13:36 --> Severity: Notice --> Undefined variable: rel C:\xampp\htdocs\ria\application\views\banksettlement.php 279
+ERROR - 2019-01-05 14:13:36 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\banksettlement.php 279
+ERROR - 2019-01-05 14:13:37 --> Severity: Notice --> Undefined variable: t C:\xampp\htdocs\ria\application\views\banksettlement.php 278
+ERROR - 2019-01-05 14:13:37 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\banksettlement.php 278
+ERROR - 2019-01-05 14:13:37 --> Severity: Notice --> Undefined variable: t C:\xampp\htdocs\ria\application\views\banksettlement.php 278
+ERROR - 2019-01-05 14:13:37 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\banksettlement.php 278
+ERROR - 2019-01-05 14:13:37 --> Severity: Notice --> Undefined variable: rel C:\xampp\htdocs\ria\application\views\banksettlement.php 279
+ERROR - 2019-01-05 14:13:37 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\banksettlement.php 279
+ERROR - 2019-01-05 14:13:37 --> Severity: Notice --> Undefined variable: record C:\xampp\htdocs\ria\application\views\banksettlement.php 325
+ERROR - 2019-01-05 14:13:37 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\banksettlement.php 325
+ERROR - 2019-01-05 14:14:56 --> Severity: Notice --> Undefined variable: financialyear C:\xampp\htdocs\ria\application\views\bankinvoice.php 2
+ERROR - 2019-01-05 14:14:56 --> Severity: Warning --> Invalid argument supplied for foreach() C:\xampp\htdocs\ria\application\views\bankinvoice.php 2
+ERROR - 2019-01-05 14:14:56 --> Severity: Notice --> Undefined variable: cash C:\xampp\htdocs\ria\application\views\bankinvoice.php 84
+ERROR - 2019-01-05 14:14:56 --> Severity: Notice --> Undefined variable: bankid C:\xampp\htdocs\ria\application\views\bankinvoice.php 86
+ERROR - 2019-01-05 14:15:00 --> Severity: Notice --> Undefined variable: financialyear C:\xampp\htdocs\ria\application\views\bankinvoice.php 2
+ERROR - 2019-01-05 14:15:00 --> Severity: Warning --> Invalid argument supplied for foreach() C:\xampp\htdocs\ria\application\views\bankinvoice.php 2
+ERROR - 2019-01-05 14:15:00 --> Severity: Notice --> Undefined variable: cash C:\xampp\htdocs\ria\application\views\bankinvoice.php 84
+ERROR - 2019-01-05 14:15:01 --> Severity: Notice --> Undefined variable: bankid C:\xampp\htdocs\ria\application\views\bankinvoice.php 86
+ERROR - 2019-01-05 14:15:01 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 180
+ERROR - 2019-01-05 14:15:01 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 181
+ERROR - 2019-01-05 14:15:01 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 180
+ERROR - 2019-01-05 14:15:01 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 181
+ERROR - 2019-01-05 14:15:19 --> Severity: Notice --> Undefined variable: fdate C:\xampp\htdocs\ria\application\controllers\cashbook.php 1737
+ERROR - 2019-01-05 14:15:19 --> Severity: Notice --> Undefined variable: tdate C:\xampp\htdocs\ria\application\controllers\cashbook.php 1737
+ERROR - 2019-01-05 14:15:19 --> Severity: Notice --> Undefined variable: fdate C:\xampp\htdocs\ria\application\controllers\cashbook.php 1737
+ERROR - 2019-01-05 14:15:19 --> Severity: Notice --> Undefined variable: fa C:\xampp\htdocs\ria\application\controllers\cashbook.php 1737
+ERROR - 2019-01-05 14:15:19 --> Severity: Notice --> Undefined variable: tdate C:\xampp\htdocs\ria\application\controllers\cashbook.php 1737
+ERROR - 2019-01-05 14:15:19 --> Severity: Notice --> Undefined variable: aa C:\xampp\htdocs\ria\application\controllers\cashbook.php 1737
+ERROR - 2019-01-05 14:15:19 --> Severity: Notice --> Undefined variable: fa C:\xampp\htdocs\ria\application\controllers\cashbook.php 1737
+ERROR - 2019-01-05 14:15:19 --> Severity: Notice --> Undefined variable: aa C:\xampp\htdocs\ria\application\controllers\cashbook.php 1737
+ERROR - 2019-01-05 14:15:19 --> Severity: Notice --> Undefined variable: financialyear C:\xampp\htdocs\ria\application\views\bankstatement.php 2
+ERROR - 2019-01-05 14:15:20 --> Severity: Warning --> Invalid argument supplied for foreach() C:\xampp\htdocs\ria\application\views\bankstatement.php 2
+ERROR - 2019-01-05 14:15:20 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 87
+ERROR - 2019-01-05 14:15:20 --> Severity: Notice --> Undefined variable: financialyear C:\xampp\htdocs\ria\application\views\bankstatement.php 2
+ERROR - 2019-01-05 14:15:20 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 87
+ERROR - 2019-01-05 14:15:20 --> Severity: Warning --> Invalid argument supplied for foreach() C:\xampp\htdocs\ria\application\views\bankstatement.php 2
+ERROR - 2019-01-05 14:15:20 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 88
+ERROR - 2019-01-05 14:15:20 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 87
+ERROR - 2019-01-05 14:15:20 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 87
+ERROR - 2019-01-05 14:15:20 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 88
+ERROR - 2019-01-05 14:15:20 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 89
+ERROR - 2019-01-05 14:15:20 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 88
+ERROR - 2019-01-05 14:15:20 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 88
+ERROR - 2019-01-05 14:15:20 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 89
+ERROR - 2019-01-05 14:15:20 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 139
+ERROR - 2019-01-05 14:15:20 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 89
+ERROR - 2019-01-05 14:15:20 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 139
+ERROR - 2019-01-05 14:15:20 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 89
+ERROR - 2019-01-05 14:15:20 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 139
+ERROR - 2019-01-05 14:15:20 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 140
+ERROR - 2019-01-05 14:15:20 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 140
+ERROR - 2019-01-05 14:15:20 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 139
+ERROR - 2019-01-05 14:15:20 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 141
+ERROR - 2019-01-05 14:15:20 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 140
+ERROR - 2019-01-05 14:15:20 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 140
+ERROR - 2019-01-05 14:15:20 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 141
+ERROR - 2019-01-05 14:15:20 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 141
+ERROR - 2019-01-05 14:15:21 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 141
+ERROR - 2019-01-05 14:15:28 --> Severity: Notice --> Undefined variable: financialyear C:\xampp\htdocs\ria\application\views\bankinvoicesettlement.php 7
+ERROR - 2019-01-05 14:15:28 --> Severity: Warning --> Invalid argument supplied for foreach() C:\xampp\htdocs\ria\application\views\bankinvoicesettlement.php 7
+ERROR - 2019-01-05 14:15:29 --> Severity: Notice --> Undefined variable: record C:\xampp\htdocs\ria\application\views\bankinvoicesettlement.php 178
+ERROR - 2019-01-05 14:15:29 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoicesettlement.php 178
+ERROR - 2019-01-05 14:15:29 --> Severity: Notice --> Undefined variable: record C:\xampp\htdocs\ria\application\views\bankinvoicesettlement.php 178
+ERROR - 2019-01-05 14:15:29 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoicesettlement.php 178
+ERROR - 2019-01-05 14:15:29 --> Severity: Notice --> Undefined variable: record C:\xampp\htdocs\ria\application\views\bankinvoicesettlement.php 178
+ERROR - 2019-01-05 14:15:29 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoicesettlement.php 178
+ERROR - 2019-01-05 14:18:49 --> Severity: Notice --> Undefined variable: financialyear C:\xampp\htdocs\ria\application\views\bankinvoicesettlement.php 7
+ERROR - 2019-01-05 14:18:49 --> Severity: Warning --> Invalid argument supplied for foreach() C:\xampp\htdocs\ria\application\views\bankinvoicesettlement.php 7
+ERROR - 2019-01-05 14:18:49 --> Severity: Notice --> Undefined variable: record C:\xampp\htdocs\ria\application\views\bankinvoicesettlement.php 180
+ERROR - 2019-01-05 14:18:49 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoicesettlement.php 180
+ERROR - 2019-01-05 14:18:49 --> Severity: Notice --> Undefined variable: record C:\xampp\htdocs\ria\application\views\bankinvoicesettlement.php 180
+ERROR - 2019-01-05 14:18:49 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoicesettlement.php 180
+ERROR - 2019-01-05 14:18:49 --> Severity: Notice --> Undefined variable: record C:\xampp\htdocs\ria\application\views\bankinvoicesettlement.php 180
+ERROR - 2019-01-05 14:18:49 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoicesettlement.php 180
diff --git a/application/logs/log-2019-01-07.php b/application/logs/log-2019-01-07.php
new file mode 100644
index 00000000..c399c97d
--- /dev/null
+++ b/application/logs/log-2019-01-07.php
@@ -0,0 +1,1550 @@
+
+
+ERROR - 2019-01-07 06:12:03 --> Severity: Notice --> Undefined variable: creditdebit C:\xampp\htdocs\ria\application\views\bankingfile.php 132
+ERROR - 2019-01-07 06:12:13 --> Severity: Notice --> Undefined variable: creditdebit C:\xampp\htdocs\ria\application\views\bankingfile.php 132
+ERROR - 2019-01-07 06:12:13 --> Severity: Notice --> Undefined variable: creditdebit C:\xampp\htdocs\ria\application\views\bankingfile.php 132
+ERROR - 2019-01-07 06:14:35 --> Severity: Notice --> Undefined variable: fdate C:\xampp\htdocs\ria\application\controllers\cashbook.php 1737
+ERROR - 2019-01-07 06:14:35 --> Severity: Notice --> Undefined variable: tdate C:\xampp\htdocs\ria\application\controllers\cashbook.php 1737
+ERROR - 2019-01-07 06:14:35 --> Severity: Notice --> Undefined variable: fa C:\xampp\htdocs\ria\application\controllers\cashbook.php 1737
+ERROR - 2019-01-07 06:14:35 --> Severity: Notice --> Undefined variable: aa C:\xampp\htdocs\ria\application\controllers\cashbook.php 1737
+ERROR - 2019-01-07 06:14:36 --> Severity: Notice --> Undefined variable: financialyear C:\xampp\htdocs\ria\application\views\bankstatement.php 2
+ERROR - 2019-01-07 06:14:36 --> Severity: Warning --> Invalid argument supplied for foreach() C:\xampp\htdocs\ria\application\views\bankstatement.php 2
+ERROR - 2019-01-07 06:14:36 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 87
+ERROR - 2019-01-07 06:14:36 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 87
+ERROR - 2019-01-07 06:14:36 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 88
+ERROR - 2019-01-07 06:14:36 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 88
+ERROR - 2019-01-07 06:14:36 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 89
+ERROR - 2019-01-07 06:14:36 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 89
+ERROR - 2019-01-07 06:14:36 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 139
+ERROR - 2019-01-07 06:14:36 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 139
+ERROR - 2019-01-07 06:14:36 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 140
+ERROR - 2019-01-07 06:14:36 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 140
+ERROR - 2019-01-07 06:14:36 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 141
+ERROR - 2019-01-07 06:14:36 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 141
+ERROR - 2019-01-07 06:14:36 --> Severity: Notice --> Undefined variable: Bankname C:\xampp\htdocs\ria\application\views\bankstatement.php 237
+ERROR - 2019-01-07 06:44:08 --> Severity: Notice --> Undefined variable: filename C:\xampp\htdocs\ria\application\controllers\cashbook.php 235
+ERROR - 2019-01-07 06:44:08 --> The upload path does not appear to be valid.
+ERROR - 2019-01-07 06:44:13 --> Severity: Warning --> DOMDocument::loadHTML(): Attribute width redefined in Entity, line: 21 C:\xampp\htdocs\ria\application\third_party\PHPExcel\Reader\HTML.php 495
+ERROR - 2019-01-07 06:44:13 --> Severity: Warning --> DOMDocument::loadHTML(): Unexpected end tag : table-- in Entity, line: 156 C:\xampp\htdocs\ria\application\third_party\PHPExcel\Reader\HTML.php 495
+ERROR - 2019-01-07 06:44:14 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 444
+ERROR - 2019-01-07 06:44:14 --> Severity: Notice --> Undefined index: reportdate C:\xampp\htdocs\ria\application\models\cashbook_model.php 392
+ERROR - 2019-01-07 06:44:14 --> Severity: Notice --> Undefined index: Narration C:\xampp\htdocs\ria\application\models\cashbook_model.php 393
+ERROR - 2019-01-07 06:44:14 --> Severity: Notice --> Undefined index: Balance C:\xampp\htdocs\ria\application\models\cashbook_model.php 394
+ERROR - 2019-01-07 06:44:14 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 444
+ERROR - 2019-01-07 06:44:14 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 444
+ERROR - 2019-01-07 06:44:14 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 444
+ERROR - 2019-01-07 06:44:14 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 444
+ERROR - 2019-01-07 06:44:14 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 444
+ERROR - 2019-01-07 06:44:14 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 444
+ERROR - 2019-01-07 06:44:18 --> Severity: Notice --> Undefined variable: fdate C:\xampp\htdocs\ria\application\controllers\cashbook.php 1737
+ERROR - 2019-01-07 06:44:18 --> Severity: Notice --> Undefined variable: tdate C:\xampp\htdocs\ria\application\controllers\cashbook.php 1737
+ERROR - 2019-01-07 06:44:18 --> Severity: Notice --> Undefined variable: fa C:\xampp\htdocs\ria\application\controllers\cashbook.php 1737
+ERROR - 2019-01-07 06:44:18 --> Severity: Notice --> Undefined variable: aa C:\xampp\htdocs\ria\application\controllers\cashbook.php 1737
+ERROR - 2019-01-07 06:44:18 --> Severity: Notice --> Undefined variable: financialyear C:\xampp\htdocs\ria\application\views\bankstatement.php 2
+ERROR - 2019-01-07 06:44:18 --> Severity: Warning --> Invalid argument supplied for foreach() C:\xampp\htdocs\ria\application\views\bankstatement.php 2
+ERROR - 2019-01-07 06:44:18 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 87
+ERROR - 2019-01-07 06:44:18 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 87
+ERROR - 2019-01-07 06:44:18 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 88
+ERROR - 2019-01-07 06:44:18 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 88
+ERROR - 2019-01-07 06:44:18 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 89
+ERROR - 2019-01-07 06:44:18 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 89
+ERROR - 2019-01-07 06:44:18 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 139
+ERROR - 2019-01-07 06:44:18 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 139
+ERROR - 2019-01-07 06:44:18 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 140
+ERROR - 2019-01-07 06:44:18 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 140
+ERROR - 2019-01-07 06:44:18 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 141
+ERROR - 2019-01-07 06:44:18 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 141
+ERROR - 2019-01-07 06:46:09 --> Severity: Notice --> Undefined variable: creditdebit C:\xampp\htdocs\ria\application\views\bankingfile.php 132
+ERROR - 2019-01-07 06:46:30 --> Severity: Notice --> Undefined variable: filename C:\xampp\htdocs\ria\application\controllers\cashbook.php 235
+ERROR - 2019-01-07 06:46:30 --> The upload path does not appear to be valid.
+ERROR - 2019-01-07 06:46:31 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 515
+ERROR - 2019-01-07 06:46:31 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 515
+ERROR - 2019-01-07 06:46:31 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 515
+ERROR - 2019-01-07 06:46:31 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 515
+ERROR - 2019-01-07 06:46:31 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 515
+ERROR - 2019-01-07 06:46:31 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 515
+ERROR - 2019-01-07 06:46:31 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 515
+ERROR - 2019-01-07 06:46:31 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 515
+ERROR - 2019-01-07 06:46:31 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 515
+ERROR - 2019-01-07 06:46:31 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 515
+ERROR - 2019-01-07 06:46:31 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 515
+ERROR - 2019-01-07 06:46:31 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 515
+ERROR - 2019-01-07 06:46:31 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 515
+ERROR - 2019-01-07 06:46:31 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 515
+ERROR - 2019-01-07 06:46:32 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 515
+ERROR - 2019-01-07 06:46:32 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 515
+ERROR - 2019-01-07 06:46:32 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 515
+ERROR - 2019-01-07 06:46:32 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 515
+ERROR - 2019-01-07 06:46:35 --> Severity: Notice --> Undefined variable: fdate C:\xampp\htdocs\ria\application\controllers\cashbook.php 1737
+ERROR - 2019-01-07 06:46:35 --> Severity: Notice --> Undefined variable: tdate C:\xampp\htdocs\ria\application\controllers\cashbook.php 1737
+ERROR - 2019-01-07 06:46:35 --> Severity: Notice --> Undefined variable: fa C:\xampp\htdocs\ria\application\controllers\cashbook.php 1737
+ERROR - 2019-01-07 06:46:35 --> Severity: Notice --> Undefined variable: aa C:\xampp\htdocs\ria\application\controllers\cashbook.php 1737
+ERROR - 2019-01-07 06:46:35 --> Severity: Notice --> Undefined variable: financialyear C:\xampp\htdocs\ria\application\views\bankstatement.php 2
+ERROR - 2019-01-07 06:46:35 --> Severity: Warning --> Invalid argument supplied for foreach() C:\xampp\htdocs\ria\application\views\bankstatement.php 2
+ERROR - 2019-01-07 06:46:35 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 87
+ERROR - 2019-01-07 06:46:35 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 87
+ERROR - 2019-01-07 06:46:35 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 88
+ERROR - 2019-01-07 06:46:35 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 88
+ERROR - 2019-01-07 06:46:35 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 89
+ERROR - 2019-01-07 06:46:35 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 89
+ERROR - 2019-01-07 06:46:35 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 139
+ERROR - 2019-01-07 06:46:35 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 139
+ERROR - 2019-01-07 06:46:35 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 140
+ERROR - 2019-01-07 06:46:35 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 140
+ERROR - 2019-01-07 06:46:36 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 141
+ERROR - 2019-01-07 06:46:36 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 141
+ERROR - 2019-01-07 06:47:22 --> Severity: Notice --> Undefined variable: creditdebit C:\xampp\htdocs\ria\application\views\bankingfile.php 132
+ERROR - 2019-01-07 06:47:43 --> Severity: Notice --> Undefined variable: filename C:\xampp\htdocs\ria\application\controllers\cashbook.php 235
+ERROR - 2019-01-07 06:47:43 --> The upload path does not appear to be valid.
+ERROR - 2019-01-07 06:47:43 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 376
+ERROR - 2019-01-07 06:47:44 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 376
+ERROR - 2019-01-07 06:47:44 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 376
+ERROR - 2019-01-07 06:47:44 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 376
+ERROR - 2019-01-07 06:47:44 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 376
+ERROR - 2019-01-07 06:47:44 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 376
+ERROR - 2019-01-07 06:47:44 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 376
+ERROR - 2019-01-07 06:47:44 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 376
+ERROR - 2019-01-07 06:47:44 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 376
+ERROR - 2019-01-07 06:47:44 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 376
+ERROR - 2019-01-07 06:47:44 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 376
+ERROR - 2019-01-07 06:47:45 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 376
+ERROR - 2019-01-07 06:47:45 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 376
+ERROR - 2019-01-07 06:47:45 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 376
+ERROR - 2019-01-07 06:47:45 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 376
+ERROR - 2019-01-07 06:47:45 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 376
+ERROR - 2019-01-07 06:47:45 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 376
+ERROR - 2019-01-07 06:47:45 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 376
+ERROR - 2019-01-07 06:47:45 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 376
+ERROR - 2019-01-07 06:47:45 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 376
+ERROR - 2019-01-07 06:47:45 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 376
+ERROR - 2019-01-07 06:47:46 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 376
+ERROR - 2019-01-07 06:47:46 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 376
+ERROR - 2019-01-07 06:47:46 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 376
+ERROR - 2019-01-07 06:47:46 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 376
+ERROR - 2019-01-07 06:47:46 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 376
+ERROR - 2019-01-07 06:47:46 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 376
+ERROR - 2019-01-07 06:47:46 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 376
+ERROR - 2019-01-07 06:47:46 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 376
+ERROR - 2019-01-07 06:47:46 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 376
+ERROR - 2019-01-07 06:47:46 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 376
+ERROR - 2019-01-07 06:47:47 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 376
+ERROR - 2019-01-07 06:47:47 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 376
+ERROR - 2019-01-07 06:47:47 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 376
+ERROR - 2019-01-07 06:47:47 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 376
+ERROR - 2019-01-07 06:47:47 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 376
+ERROR - 2019-01-07 06:47:47 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 376
+ERROR - 2019-01-07 06:47:47 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 376
+ERROR - 2019-01-07 06:47:47 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 376
+ERROR - 2019-01-07 06:47:47 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 376
+ERROR - 2019-01-07 06:47:47 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 376
+ERROR - 2019-01-07 06:47:47 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 376
+ERROR - 2019-01-07 06:47:48 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 376
+ERROR - 2019-01-07 06:47:48 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 376
+ERROR - 2019-01-07 06:47:48 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 376
+ERROR - 2019-01-07 06:47:48 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 376
+ERROR - 2019-01-07 06:47:48 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 376
+ERROR - 2019-01-07 06:47:48 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 376
+ERROR - 2019-01-07 06:47:48 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 376
+ERROR - 2019-01-07 06:47:48 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 376
+ERROR - 2019-01-07 06:47:48 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 376
+ERROR - 2019-01-07 06:47:48 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 376
+ERROR - 2019-01-07 06:47:49 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 376
+ERROR - 2019-01-07 06:47:49 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 376
+ERROR - 2019-01-07 06:47:49 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 376
+ERROR - 2019-01-07 06:47:49 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 376
+ERROR - 2019-01-07 06:47:49 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 376
+ERROR - 2019-01-07 06:47:49 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 376
+ERROR - 2019-01-07 06:47:49 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 376
+ERROR - 2019-01-07 06:47:49 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 376
+ERROR - 2019-01-07 06:47:49 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 376
+ERROR - 2019-01-07 06:47:50 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 376
+ERROR - 2019-01-07 06:47:50 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 376
+ERROR - 2019-01-07 06:47:50 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 376
+ERROR - 2019-01-07 06:47:50 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 376
+ERROR - 2019-01-07 06:47:50 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 376
+ERROR - 2019-01-07 06:47:50 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 376
+ERROR - 2019-01-07 06:47:50 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 376
+ERROR - 2019-01-07 06:47:50 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 376
+ERROR - 2019-01-07 06:47:50 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 376
+ERROR - 2019-01-07 06:47:50 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 376
+ERROR - 2019-01-07 06:47:50 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 376
+ERROR - 2019-01-07 06:47:51 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 376
+ERROR - 2019-01-07 06:47:51 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 376
+ERROR - 2019-01-07 06:47:51 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 376
+ERROR - 2019-01-07 06:47:51 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 376
+ERROR - 2019-01-07 06:47:51 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 376
+ERROR - 2019-01-07 06:47:51 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 376
+ERROR - 2019-01-07 06:47:51 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 376
+ERROR - 2019-01-07 06:47:51 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 376
+ERROR - 2019-01-07 06:47:51 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 376
+ERROR - 2019-01-07 06:47:51 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 376
+ERROR - 2019-01-07 06:47:52 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 376
+ERROR - 2019-01-07 06:47:52 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 376
+ERROR - 2019-01-07 06:47:52 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 376
+ERROR - 2019-01-07 06:47:52 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 376
+ERROR - 2019-01-07 06:47:52 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 376
+ERROR - 2019-01-07 06:47:52 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 376
+ERROR - 2019-01-07 06:47:52 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 376
+ERROR - 2019-01-07 06:47:52 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 376
+ERROR - 2019-01-07 06:47:52 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 376
+ERROR - 2019-01-07 06:47:52 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 376
+ERROR - 2019-01-07 06:47:52 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 376
+ERROR - 2019-01-07 06:47:53 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 376
+ERROR - 2019-01-07 06:47:53 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 376
+ERROR - 2019-01-07 06:47:53 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 376
+ERROR - 2019-01-07 06:47:53 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 376
+ERROR - 2019-01-07 06:47:53 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 376
+ERROR - 2019-01-07 06:47:53 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 376
+ERROR - 2019-01-07 06:47:54 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 376
+ERROR - 2019-01-07 06:47:54 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 376
+ERROR - 2019-01-07 06:47:54 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 376
+ERROR - 2019-01-07 06:47:54 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 376
+ERROR - 2019-01-07 06:47:54 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 376
+ERROR - 2019-01-07 06:47:54 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 376
+ERROR - 2019-01-07 06:47:54 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 376
+ERROR - 2019-01-07 06:47:54 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 376
+ERROR - 2019-01-07 06:47:54 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 376
+ERROR - 2019-01-07 06:47:54 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 376
+ERROR - 2019-01-07 06:47:55 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 376
+ERROR - 2019-01-07 06:47:55 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 376
+ERROR - 2019-01-07 06:47:55 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 376
+ERROR - 2019-01-07 06:47:55 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 376
+ERROR - 2019-01-07 06:47:55 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 376
+ERROR - 2019-01-07 06:47:55 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 376
+ERROR - 2019-01-07 06:47:55 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 376
+ERROR - 2019-01-07 06:47:55 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 376
+ERROR - 2019-01-07 06:47:55 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 376
+ERROR - 2019-01-07 06:47:56 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 376
+ERROR - 2019-01-07 06:47:59 --> Severity: Notice --> Undefined variable: fdate C:\xampp\htdocs\ria\application\controllers\cashbook.php 1737
+ERROR - 2019-01-07 06:47:59 --> Severity: Notice --> Undefined variable: tdate C:\xampp\htdocs\ria\application\controllers\cashbook.php 1737
+ERROR - 2019-01-07 06:47:59 --> Severity: Notice --> Undefined variable: fa C:\xampp\htdocs\ria\application\controllers\cashbook.php 1737
+ERROR - 2019-01-07 06:47:59 --> Severity: Notice --> Undefined variable: aa C:\xampp\htdocs\ria\application\controllers\cashbook.php 1737
+ERROR - 2019-01-07 06:47:59 --> Severity: Notice --> Undefined variable: financialyear C:\xampp\htdocs\ria\application\views\bankstatement.php 2
+ERROR - 2019-01-07 06:47:59 --> Severity: Warning --> Invalid argument supplied for foreach() C:\xampp\htdocs\ria\application\views\bankstatement.php 2
+ERROR - 2019-01-07 06:47:59 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 87
+ERROR - 2019-01-07 06:47:59 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 87
+ERROR - 2019-01-07 06:47:59 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 88
+ERROR - 2019-01-07 06:47:59 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 88
+ERROR - 2019-01-07 06:47:59 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 89
+ERROR - 2019-01-07 06:47:59 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 89
+ERROR - 2019-01-07 06:47:59 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 139
+ERROR - 2019-01-07 06:47:59 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 139
+ERROR - 2019-01-07 06:47:59 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 140
+ERROR - 2019-01-07 06:47:59 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 140
+ERROR - 2019-01-07 06:47:59 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 141
+ERROR - 2019-01-07 06:48:00 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 141
+ERROR - 2019-01-07 06:51:47 --> Severity: Notice --> Undefined variable: fdate C:\xampp\htdocs\ria\application\controllers\cashbook.php 1738
+ERROR - 2019-01-07 06:51:47 --> Severity: Notice --> Undefined variable: tdate C:\xampp\htdocs\ria\application\controllers\cashbook.php 1738
+ERROR - 2019-01-07 06:51:47 --> Severity: Notice --> Undefined variable: fa C:\xampp\htdocs\ria\application\controllers\cashbook.php 1738
+ERROR - 2019-01-07 06:51:47 --> Severity: Notice --> Undefined variable: aa C:\xampp\htdocs\ria\application\controllers\cashbook.php 1738
+ERROR - 2019-01-07 06:51:48 --> Severity: Notice --> Undefined variable: financialyear C:\xampp\htdocs\ria\application\views\bankstatement.php 2
+ERROR - 2019-01-07 06:51:48 --> Severity: Warning --> Invalid argument supplied for foreach() C:\xampp\htdocs\ria\application\views\bankstatement.php 2
+ERROR - 2019-01-07 06:51:48 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 87
+ERROR - 2019-01-07 06:51:48 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 87
+ERROR - 2019-01-07 06:51:48 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 88
+ERROR - 2019-01-07 06:51:48 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 88
+ERROR - 2019-01-07 06:51:48 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 89
+ERROR - 2019-01-07 06:51:48 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 89
+ERROR - 2019-01-07 06:51:48 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 139
+ERROR - 2019-01-07 06:51:48 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 139
+ERROR - 2019-01-07 06:51:48 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 140
+ERROR - 2019-01-07 06:51:48 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 140
+ERROR - 2019-01-07 06:51:48 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 141
+ERROR - 2019-01-07 06:51:48 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 141
+ERROR - 2019-01-07 06:51:48 --> Severity: Notice --> Undefined variable: Bankname C:\xampp\htdocs\ria\application\views\bankstatement.php 237
+ERROR - 2019-01-07 06:51:54 --> Severity: Notice --> Undefined variable: creditdebit C:\xampp\htdocs\ria\application\views\bankingfile.php 132
+ERROR - 2019-01-07 06:52:12 --> Severity: Notice --> Undefined variable: filename C:\xampp\htdocs\ria\application\controllers\cashbook.php 235
+ERROR - 2019-01-07 06:52:12 --> The upload path does not appear to be valid.
+ERROR - 2019-01-07 06:52:12 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 516
+ERROR - 2019-01-07 06:52:12 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 516
+ERROR - 2019-01-07 06:52:12 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 516
+ERROR - 2019-01-07 06:52:12 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 516
+ERROR - 2019-01-07 06:52:12 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 516
+ERROR - 2019-01-07 06:52:12 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 516
+ERROR - 2019-01-07 06:52:12 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 516
+ERROR - 2019-01-07 06:52:13 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 516
+ERROR - 2019-01-07 06:52:13 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 516
+ERROR - 2019-01-07 06:52:13 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 516
+ERROR - 2019-01-07 06:52:13 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 516
+ERROR - 2019-01-07 06:52:13 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 516
+ERROR - 2019-01-07 06:52:13 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 516
+ERROR - 2019-01-07 06:52:13 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 516
+ERROR - 2019-01-07 06:52:13 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 516
+ERROR - 2019-01-07 06:52:13 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 516
+ERROR - 2019-01-07 06:52:13 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 516
+ERROR - 2019-01-07 06:52:13 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 516
+ERROR - 2019-01-07 06:52:13 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 516
+ERROR - 2019-01-07 06:52:13 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 516
+ERROR - 2019-01-07 06:52:13 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 516
+ERROR - 2019-01-07 06:52:13 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 516
+ERROR - 2019-01-07 06:52:14 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 516
+ERROR - 2019-01-07 06:52:14 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 516
+ERROR - 2019-01-07 06:52:14 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 516
+ERROR - 2019-01-07 06:52:14 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 516
+ERROR - 2019-01-07 06:52:14 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 516
+ERROR - 2019-01-07 06:52:14 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 516
+ERROR - 2019-01-07 06:52:14 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 516
+ERROR - 2019-01-07 06:52:14 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 516
+ERROR - 2019-01-07 06:52:14 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 516
+ERROR - 2019-01-07 06:52:14 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 516
+ERROR - 2019-01-07 06:52:14 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 516
+ERROR - 2019-01-07 06:52:14 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 516
+ERROR - 2019-01-07 06:52:14 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 516
+ERROR - 2019-01-07 06:52:14 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 516
+ERROR - 2019-01-07 06:52:15 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 516
+ERROR - 2019-01-07 06:52:15 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 516
+ERROR - 2019-01-07 06:52:15 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 516
+ERROR - 2019-01-07 06:52:15 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 516
+ERROR - 2019-01-07 06:52:15 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 516
+ERROR - 2019-01-07 06:52:15 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 516
+ERROR - 2019-01-07 06:52:15 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 516
+ERROR - 2019-01-07 06:52:15 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 516
+ERROR - 2019-01-07 06:52:15 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 516
+ERROR - 2019-01-07 06:52:15 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 516
+ERROR - 2019-01-07 06:52:15 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 516
+ERROR - 2019-01-07 06:52:15 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 516
+ERROR - 2019-01-07 06:52:15 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 516
+ERROR - 2019-01-07 06:52:15 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 516
+ERROR - 2019-01-07 06:52:15 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 516
+ERROR - 2019-01-07 06:52:15 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 516
+ERROR - 2019-01-07 06:52:16 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 516
+ERROR - 2019-01-07 06:52:16 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 516
+ERROR - 2019-01-07 06:52:16 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 516
+ERROR - 2019-01-07 06:52:16 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 516
+ERROR - 2019-01-07 06:52:16 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 516
+ERROR - 2019-01-07 06:52:16 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 516
+ERROR - 2019-01-07 06:52:16 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 516
+ERROR - 2019-01-07 06:52:16 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 516
+ERROR - 2019-01-07 06:52:16 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 516
+ERROR - 2019-01-07 06:52:16 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 516
+ERROR - 2019-01-07 06:52:16 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 516
+ERROR - 2019-01-07 06:52:16 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 516
+ERROR - 2019-01-07 06:52:16 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 516
+ERROR - 2019-01-07 06:52:16 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 516
+ERROR - 2019-01-07 06:52:17 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 516
+ERROR - 2019-01-07 06:52:17 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 516
+ERROR - 2019-01-07 06:52:17 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 516
+ERROR - 2019-01-07 06:52:17 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 516
+ERROR - 2019-01-07 06:52:17 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 516
+ERROR - 2019-01-07 06:52:17 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 516
+ERROR - 2019-01-07 06:52:17 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 516
+ERROR - 2019-01-07 06:52:17 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 516
+ERROR - 2019-01-07 06:52:17 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 516
+ERROR - 2019-01-07 06:52:17 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 516
+ERROR - 2019-01-07 06:52:17 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 516
+ERROR - 2019-01-07 06:52:17 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 516
+ERROR - 2019-01-07 06:52:17 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 516
+ERROR - 2019-01-07 06:52:17 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 516
+ERROR - 2019-01-07 06:52:18 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 516
+ERROR - 2019-01-07 06:52:18 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 516
+ERROR - 2019-01-07 06:52:18 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 516
+ERROR - 2019-01-07 06:52:18 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 516
+ERROR - 2019-01-07 06:52:18 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 516
+ERROR - 2019-01-07 06:52:18 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 516
+ERROR - 2019-01-07 06:52:18 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 516
+ERROR - 2019-01-07 06:52:18 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 516
+ERROR - 2019-01-07 06:52:18 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 516
+ERROR - 2019-01-07 06:52:18 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 516
+ERROR - 2019-01-07 06:52:18 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 516
+ERROR - 2019-01-07 06:52:18 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 516
+ERROR - 2019-01-07 06:52:18 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 516
+ERROR - 2019-01-07 06:52:18 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 516
+ERROR - 2019-01-07 06:52:18 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 516
+ERROR - 2019-01-07 06:52:18 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 516
+ERROR - 2019-01-07 06:52:19 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 516
+ERROR - 2019-01-07 06:52:19 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 516
+ERROR - 2019-01-07 06:52:19 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 516
+ERROR - 2019-01-07 06:52:19 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 516
+ERROR - 2019-01-07 06:52:19 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 516
+ERROR - 2019-01-07 06:52:19 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 516
+ERROR - 2019-01-07 06:52:19 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 516
+ERROR - 2019-01-07 06:52:19 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 516
+ERROR - 2019-01-07 06:52:19 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 516
+ERROR - 2019-01-07 06:52:19 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 516
+ERROR - 2019-01-07 06:52:19 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 516
+ERROR - 2019-01-07 06:52:19 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 516
+ERROR - 2019-01-07 06:52:19 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 516
+ERROR - 2019-01-07 06:52:19 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 516
+ERROR - 2019-01-07 06:52:20 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 516
+ERROR - 2019-01-07 06:52:20 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 516
+ERROR - 2019-01-07 06:52:20 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 516
+ERROR - 2019-01-07 06:52:20 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 516
+ERROR - 2019-01-07 06:52:20 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 516
+ERROR - 2019-01-07 06:52:20 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 516
+ERROR - 2019-01-07 06:52:20 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 516
+ERROR - 2019-01-07 06:52:20 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 516
+ERROR - 2019-01-07 06:52:20 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 516
+ERROR - 2019-01-07 06:52:20 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 516
+ERROR - 2019-01-07 06:52:20 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 516
+ERROR - 2019-01-07 06:52:20 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 516
+ERROR - 2019-01-07 06:52:20 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 516
+ERROR - 2019-01-07 06:52:20 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 516
+ERROR - 2019-01-07 06:52:20 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 516
+ERROR - 2019-01-07 06:52:21 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 516
+ERROR - 2019-01-07 06:52:21 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 516
+ERROR - 2019-01-07 06:52:21 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 516
+ERROR - 2019-01-07 06:52:21 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 516
+ERROR - 2019-01-07 06:52:21 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 516
+ERROR - 2019-01-07 06:52:21 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 516
+ERROR - 2019-01-07 06:52:21 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 516
+ERROR - 2019-01-07 06:52:21 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 516
+ERROR - 2019-01-07 06:52:21 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 516
+ERROR - 2019-01-07 06:52:21 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 516
+ERROR - 2019-01-07 06:52:21 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 516
+ERROR - 2019-01-07 06:52:21 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 516
+ERROR - 2019-01-07 06:52:21 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 516
+ERROR - 2019-01-07 06:52:22 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 516
+ERROR - 2019-01-07 06:52:22 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 516
+ERROR - 2019-01-07 06:52:22 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 516
+ERROR - 2019-01-07 06:52:22 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 516
+ERROR - 2019-01-07 06:52:22 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 516
+ERROR - 2019-01-07 06:52:22 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 516
+ERROR - 2019-01-07 06:52:22 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 516
+ERROR - 2019-01-07 06:52:22 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 516
+ERROR - 2019-01-07 06:52:22 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 516
+ERROR - 2019-01-07 06:52:22 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 516
+ERROR - 2019-01-07 06:52:22 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 516
+ERROR - 2019-01-07 06:52:22 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 516
+ERROR - 2019-01-07 06:52:22 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 516
+ERROR - 2019-01-07 06:52:22 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 516
+ERROR - 2019-01-07 06:52:23 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 516
+ERROR - 2019-01-07 06:52:23 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 516
+ERROR - 2019-01-07 06:52:23 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 516
+ERROR - 2019-01-07 06:52:23 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 516
+ERROR - 2019-01-07 06:52:23 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 516
+ERROR - 2019-01-07 06:52:23 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 516
+ERROR - 2019-01-07 06:52:23 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 516
+ERROR - 2019-01-07 06:52:23 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 516
+ERROR - 2019-01-07 06:52:23 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 516
+ERROR - 2019-01-07 06:52:23 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 516
+ERROR - 2019-01-07 06:52:23 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 516
+ERROR - 2019-01-07 06:52:23 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 516
+ERROR - 2019-01-07 06:52:23 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 516
+ERROR - 2019-01-07 06:52:23 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 516
+ERROR - 2019-01-07 06:52:23 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 516
+ERROR - 2019-01-07 06:52:23 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 516
+ERROR - 2019-01-07 06:52:24 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 516
+ERROR - 2019-01-07 06:52:24 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 516
+ERROR - 2019-01-07 06:52:24 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 516
+ERROR - 2019-01-07 06:52:24 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 516
+ERROR - 2019-01-07 06:52:24 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 516
+ERROR - 2019-01-07 06:52:24 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 516
+ERROR - 2019-01-07 06:52:24 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 516
+ERROR - 2019-01-07 06:52:24 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 516
+ERROR - 2019-01-07 06:52:24 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 516
+ERROR - 2019-01-07 06:52:24 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 516
+ERROR - 2019-01-07 06:52:24 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 516
+ERROR - 2019-01-07 06:52:24 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 516
+ERROR - 2019-01-07 06:52:25 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 516
+ERROR - 2019-01-07 06:52:25 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 516
+ERROR - 2019-01-07 06:52:25 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 516
+ERROR - 2019-01-07 06:52:25 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 516
+ERROR - 2019-01-07 06:52:25 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 516
+ERROR - 2019-01-07 06:52:25 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 516
+ERROR - 2019-01-07 06:52:25 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 516
+ERROR - 2019-01-07 06:52:26 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 516
+ERROR - 2019-01-07 06:52:26 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 516
+ERROR - 2019-01-07 06:52:26 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 516
+ERROR - 2019-01-07 06:52:26 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 516
+ERROR - 2019-01-07 06:52:26 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 516
+ERROR - 2019-01-07 06:52:26 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 516
+ERROR - 2019-01-07 06:52:26 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 516
+ERROR - 2019-01-07 06:52:26 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 516
+ERROR - 2019-01-07 06:52:26 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 516
+ERROR - 2019-01-07 06:52:26 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 516
+ERROR - 2019-01-07 06:52:26 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 516
+ERROR - 2019-01-07 06:52:26 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 516
+ERROR - 2019-01-07 06:52:26 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 516
+ERROR - 2019-01-07 06:52:26 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 516
+ERROR - 2019-01-07 06:52:26 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 516
+ERROR - 2019-01-07 06:52:27 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 516
+ERROR - 2019-01-07 06:52:27 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 516
+ERROR - 2019-01-07 06:52:27 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 516
+ERROR - 2019-01-07 06:52:27 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 516
+ERROR - 2019-01-07 06:52:27 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 516
+ERROR - 2019-01-07 06:52:27 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 516
+ERROR - 2019-01-07 06:52:27 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 516
+ERROR - 2019-01-07 06:52:27 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 516
+ERROR - 2019-01-07 06:52:27 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 516
+ERROR - 2019-01-07 06:52:27 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 516
+ERROR - 2019-01-07 06:52:27 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 516
+ERROR - 2019-01-07 06:52:27 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 516
+ERROR - 2019-01-07 06:52:27 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 516
+ERROR - 2019-01-07 06:52:27 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 516
+ERROR - 2019-01-07 06:52:28 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 516
+ERROR - 2019-01-07 06:52:28 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 516
+ERROR - 2019-01-07 06:52:28 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 516
+ERROR - 2019-01-07 06:52:28 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 516
+ERROR - 2019-01-07 06:52:28 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 516
+ERROR - 2019-01-07 06:52:28 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 516
+ERROR - 2019-01-07 06:52:28 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 516
+ERROR - 2019-01-07 06:52:28 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 516
+ERROR - 2019-01-07 06:52:28 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 516
+ERROR - 2019-01-07 06:52:28 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 516
+ERROR - 2019-01-07 06:52:28 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 516
+ERROR - 2019-01-07 06:52:28 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 516
+ERROR - 2019-01-07 06:52:28 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 516
+ERROR - 2019-01-07 06:52:28 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 516
+ERROR - 2019-01-07 06:52:29 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 516
+ERROR - 2019-01-07 06:52:29 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 516
+ERROR - 2019-01-07 06:52:29 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 516
+ERROR - 2019-01-07 06:52:29 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 516
+ERROR - 2019-01-07 06:52:29 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 516
+ERROR - 2019-01-07 06:52:29 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 516
+ERROR - 2019-01-07 06:52:29 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 516
+ERROR - 2019-01-07 06:52:29 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 516
+ERROR - 2019-01-07 06:52:29 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 516
+ERROR - 2019-01-07 06:52:29 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 516
+ERROR - 2019-01-07 06:52:29 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 516
+ERROR - 2019-01-07 06:52:29 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 516
+ERROR - 2019-01-07 06:52:29 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 516
+ERROR - 2019-01-07 06:52:29 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 516
+ERROR - 2019-01-07 06:52:30 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 516
+ERROR - 2019-01-07 06:52:30 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 516
+ERROR - 2019-01-07 06:52:30 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 516
+ERROR - 2019-01-07 06:52:30 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 516
+ERROR - 2019-01-07 06:52:30 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 516
+ERROR - 2019-01-07 06:52:30 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 516
+ERROR - 2019-01-07 06:52:30 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 516
+ERROR - 2019-01-07 06:52:30 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 516
+ERROR - 2019-01-07 06:52:30 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 516
+ERROR - 2019-01-07 06:52:30 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 516
+ERROR - 2019-01-07 06:52:30 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 516
+ERROR - 2019-01-07 06:52:30 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 516
+ERROR - 2019-01-07 06:52:30 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 516
+ERROR - 2019-01-07 06:52:30 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 516
+ERROR - 2019-01-07 06:52:31 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 516
+ERROR - 2019-01-07 06:52:31 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 516
+ERROR - 2019-01-07 06:52:31 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 516
+ERROR - 2019-01-07 06:52:31 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 516
+ERROR - 2019-01-07 06:52:31 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 516
+ERROR - 2019-01-07 06:52:31 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 516
+ERROR - 2019-01-07 06:52:31 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 516
+ERROR - 2019-01-07 06:52:31 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 516
+ERROR - 2019-01-07 06:52:31 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 516
+ERROR - 2019-01-07 06:52:31 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 516
+ERROR - 2019-01-07 06:52:31 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 516
+ERROR - 2019-01-07 06:52:31 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 516
+ERROR - 2019-01-07 06:52:35 --> Severity: Notice --> Undefined variable: fdate C:\xampp\htdocs\ria\application\controllers\cashbook.php 1738
+ERROR - 2019-01-07 06:52:35 --> Severity: Notice --> Undefined variable: tdate C:\xampp\htdocs\ria\application\controllers\cashbook.php 1738
+ERROR - 2019-01-07 06:52:35 --> Severity: Notice --> Undefined variable: fa C:\xampp\htdocs\ria\application\controllers\cashbook.php 1738
+ERROR - 2019-01-07 06:52:35 --> Severity: Notice --> Undefined variable: aa C:\xampp\htdocs\ria\application\controllers\cashbook.php 1738
+ERROR - 2019-01-07 06:52:35 --> Severity: Notice --> Undefined variable: financialyear C:\xampp\htdocs\ria\application\views\bankstatement.php 2
+ERROR - 2019-01-07 06:52:35 --> Severity: Warning --> Invalid argument supplied for foreach() C:\xampp\htdocs\ria\application\views\bankstatement.php 2
+ERROR - 2019-01-07 06:52:36 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 87
+ERROR - 2019-01-07 06:52:36 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 87
+ERROR - 2019-01-07 06:52:36 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 88
+ERROR - 2019-01-07 06:52:36 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 88
+ERROR - 2019-01-07 06:52:36 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 89
+ERROR - 2019-01-07 06:52:36 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 89
+ERROR - 2019-01-07 06:52:36 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 139
+ERROR - 2019-01-07 06:52:36 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 139
+ERROR - 2019-01-07 06:52:36 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 140
+ERROR - 2019-01-07 06:52:36 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 140
+ERROR - 2019-01-07 06:52:36 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 141
+ERROR - 2019-01-07 06:52:36 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 141
+ERROR - 2019-01-07 06:53:19 --> Severity: Notice --> Undefined variable: creditdebit C:\xampp\htdocs\ria\application\views\bankingfile.php 132
+ERROR - 2019-01-07 06:53:43 --> Severity: Notice --> Undefined variable: filename C:\xampp\htdocs\ria\application\controllers\cashbook.php 235
+ERROR - 2019-01-07 06:53:43 --> The upload path does not appear to be valid.
+ERROR - 2019-01-07 06:53:43 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 516
+ERROR - 2019-01-07 06:53:43 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 516
+ERROR - 2019-01-07 06:53:43 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 516
+ERROR - 2019-01-07 06:53:43 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 516
+ERROR - 2019-01-07 06:53:44 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 516
+ERROR - 2019-01-07 06:53:44 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 516
+ERROR - 2019-01-07 06:53:44 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 516
+ERROR - 2019-01-07 06:53:44 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 516
+ERROR - 2019-01-07 06:53:44 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 516
+ERROR - 2019-01-07 06:53:44 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 516
+ERROR - 2019-01-07 06:53:44 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 516
+ERROR - 2019-01-07 06:53:44 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 516
+ERROR - 2019-01-07 06:53:44 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 516
+ERROR - 2019-01-07 06:53:44 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 516
+ERROR - 2019-01-07 06:53:44 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 516
+ERROR - 2019-01-07 06:53:44 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 516
+ERROR - 2019-01-07 06:53:44 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 516
+ERROR - 2019-01-07 06:53:44 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 516
+ERROR - 2019-01-07 06:53:47 --> Severity: Notice --> Undefined variable: fdate C:\xampp\htdocs\ria\application\controllers\cashbook.php 1738
+ERROR - 2019-01-07 06:53:47 --> Severity: Notice --> Undefined variable: tdate C:\xampp\htdocs\ria\application\controllers\cashbook.php 1738
+ERROR - 2019-01-07 06:53:47 --> Severity: Notice --> Undefined variable: fa C:\xampp\htdocs\ria\application\controllers\cashbook.php 1738
+ERROR - 2019-01-07 06:53:47 --> Severity: Notice --> Undefined variable: aa C:\xampp\htdocs\ria\application\controllers\cashbook.php 1738
+ERROR - 2019-01-07 06:53:48 --> Severity: Notice --> Undefined variable: financialyear C:\xampp\htdocs\ria\application\views\bankstatement.php 2
+ERROR - 2019-01-07 06:53:48 --> Severity: Warning --> Invalid argument supplied for foreach() C:\xampp\htdocs\ria\application\views\bankstatement.php 2
+ERROR - 2019-01-07 06:53:48 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 87
+ERROR - 2019-01-07 06:53:48 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 87
+ERROR - 2019-01-07 06:53:48 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 88
+ERROR - 2019-01-07 06:53:48 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 88
+ERROR - 2019-01-07 06:53:48 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 89
+ERROR - 2019-01-07 06:53:48 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 89
+ERROR - 2019-01-07 06:53:48 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 139
+ERROR - 2019-01-07 06:53:48 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 139
+ERROR - 2019-01-07 06:53:48 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 140
+ERROR - 2019-01-07 06:53:48 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 140
+ERROR - 2019-01-07 06:53:48 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 141
+ERROR - 2019-01-07 06:53:48 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 141
+ERROR - 2019-01-07 06:53:59 --> Severity: Notice --> Undefined variable: creditdebit C:\xampp\htdocs\ria\application\views\bankingfile.php 132
+ERROR - 2019-01-07 06:54:17 --> Severity: Notice --> Undefined variable: filename C:\xampp\htdocs\ria\application\controllers\cashbook.php 235
+ERROR - 2019-01-07 06:54:17 --> The upload path does not appear to be valid.
+ERROR - 2019-01-07 06:54:17 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 516
+ERROR - 2019-01-07 06:54:17 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 516
+ERROR - 2019-01-07 06:54:17 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 516
+ERROR - 2019-01-07 06:54:17 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 516
+ERROR - 2019-01-07 06:54:17 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 516
+ERROR - 2019-01-07 06:54:17 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 516
+ERROR - 2019-01-07 06:54:18 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 516
+ERROR - 2019-01-07 06:54:18 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 516
+ERROR - 2019-01-07 06:54:18 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 516
+ERROR - 2019-01-07 06:54:18 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 516
+ERROR - 2019-01-07 06:54:18 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 516
+ERROR - 2019-01-07 06:54:18 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 516
+ERROR - 2019-01-07 06:54:18 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 516
+ERROR - 2019-01-07 06:54:18 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 516
+ERROR - 2019-01-07 06:54:18 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 516
+ERROR - 2019-01-07 06:54:18 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 516
+ERROR - 2019-01-07 06:54:18 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 516
+ERROR - 2019-01-07 06:54:18 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 516
+ERROR - 2019-01-07 06:54:18 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 516
+ERROR - 2019-01-07 06:54:18 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 516
+ERROR - 2019-01-07 06:54:19 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 516
+ERROR - 2019-01-07 06:54:19 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 516
+ERROR - 2019-01-07 06:54:19 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 516
+ERROR - 2019-01-07 06:54:19 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 516
+ERROR - 2019-01-07 06:54:19 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 516
+ERROR - 2019-01-07 06:54:19 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 516
+ERROR - 2019-01-07 06:54:19 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 516
+ERROR - 2019-01-07 06:54:19 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 516
+ERROR - 2019-01-07 06:54:19 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 516
+ERROR - 2019-01-07 06:54:19 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 516
+ERROR - 2019-01-07 06:54:19 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 516
+ERROR - 2019-01-07 06:54:19 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 516
+ERROR - 2019-01-07 06:54:19 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 516
+ERROR - 2019-01-07 06:54:19 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 516
+ERROR - 2019-01-07 06:54:19 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 516
+ERROR - 2019-01-07 06:54:20 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 516
+ERROR - 2019-01-07 06:54:20 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 516
+ERROR - 2019-01-07 06:54:20 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 516
+ERROR - 2019-01-07 06:54:20 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 516
+ERROR - 2019-01-07 06:54:20 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 516
+ERROR - 2019-01-07 06:54:20 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 516
+ERROR - 2019-01-07 06:54:20 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 516
+ERROR - 2019-01-07 06:54:20 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 516
+ERROR - 2019-01-07 06:54:20 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 516
+ERROR - 2019-01-07 06:54:20 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 516
+ERROR - 2019-01-07 06:54:20 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 516
+ERROR - 2019-01-07 06:54:20 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 516
+ERROR - 2019-01-07 06:54:20 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 516
+ERROR - 2019-01-07 06:54:20 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 516
+ERROR - 2019-01-07 06:54:21 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 516
+ERROR - 2019-01-07 06:54:21 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 516
+ERROR - 2019-01-07 06:54:21 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 516
+ERROR - 2019-01-07 06:54:21 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 516
+ERROR - 2019-01-07 06:54:21 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 516
+ERROR - 2019-01-07 06:54:21 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 516
+ERROR - 2019-01-07 06:54:21 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 516
+ERROR - 2019-01-07 06:54:21 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 516
+ERROR - 2019-01-07 06:54:21 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 516
+ERROR - 2019-01-07 06:54:21 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 516
+ERROR - 2019-01-07 06:54:21 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 516
+ERROR - 2019-01-07 06:54:21 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 516
+ERROR - 2019-01-07 06:54:21 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 516
+ERROR - 2019-01-07 06:54:21 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 516
+ERROR - 2019-01-07 06:54:21 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 516
+ERROR - 2019-01-07 06:54:22 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 516
+ERROR - 2019-01-07 06:54:22 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 516
+ERROR - 2019-01-07 06:54:22 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 516
+ERROR - 2019-01-07 06:54:22 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 516
+ERROR - 2019-01-07 06:54:22 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 516
+ERROR - 2019-01-07 06:54:22 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 516
+ERROR - 2019-01-07 06:54:22 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 516
+ERROR - 2019-01-07 06:54:22 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 516
+ERROR - 2019-01-07 06:54:22 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 516
+ERROR - 2019-01-07 06:54:22 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 516
+ERROR - 2019-01-07 06:54:22 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 516
+ERROR - 2019-01-07 06:54:22 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 516
+ERROR - 2019-01-07 06:54:22 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 516
+ERROR - 2019-01-07 06:54:22 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 516
+ERROR - 2019-01-07 06:54:23 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 516
+ERROR - 2019-01-07 06:54:23 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 516
+ERROR - 2019-01-07 06:54:23 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 516
+ERROR - 2019-01-07 06:54:23 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 516
+ERROR - 2019-01-07 06:54:23 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 516
+ERROR - 2019-01-07 06:54:23 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 516
+ERROR - 2019-01-07 06:54:23 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 516
+ERROR - 2019-01-07 06:54:23 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 516
+ERROR - 2019-01-07 06:54:23 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 516
+ERROR - 2019-01-07 06:54:23 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 516
+ERROR - 2019-01-07 06:54:23 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 516
+ERROR - 2019-01-07 06:54:23 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 516
+ERROR - 2019-01-07 06:54:23 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 516
+ERROR - 2019-01-07 06:54:23 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 516
+ERROR - 2019-01-07 06:54:24 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 516
+ERROR - 2019-01-07 06:54:24 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 516
+ERROR - 2019-01-07 06:54:24 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 516
+ERROR - 2019-01-07 06:54:24 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 516
+ERROR - 2019-01-07 06:54:24 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 516
+ERROR - 2019-01-07 06:54:24 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 516
+ERROR - 2019-01-07 06:54:24 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 516
+ERROR - 2019-01-07 06:54:24 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 516
+ERROR - 2019-01-07 06:54:24 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 516
+ERROR - 2019-01-07 06:54:24 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 516
+ERROR - 2019-01-07 06:54:24 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 516
+ERROR - 2019-01-07 06:54:24 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 516
+ERROR - 2019-01-07 06:54:24 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 516
+ERROR - 2019-01-07 06:54:24 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 516
+ERROR - 2019-01-07 06:54:25 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 516
+ERROR - 2019-01-07 06:54:25 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 516
+ERROR - 2019-01-07 06:54:25 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 516
+ERROR - 2019-01-07 06:54:25 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 516
+ERROR - 2019-01-07 06:54:25 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 516
+ERROR - 2019-01-07 06:54:25 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 516
+ERROR - 2019-01-07 06:54:25 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 516
+ERROR - 2019-01-07 06:54:25 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 516
+ERROR - 2019-01-07 06:54:25 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 516
+ERROR - 2019-01-07 06:54:25 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 516
+ERROR - 2019-01-07 06:54:25 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 516
+ERROR - 2019-01-07 06:54:25 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 516
+ERROR - 2019-01-07 06:54:25 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 516
+ERROR - 2019-01-07 06:54:25 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 516
+ERROR - 2019-01-07 06:54:26 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 516
+ERROR - 2019-01-07 06:54:26 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 516
+ERROR - 2019-01-07 06:54:26 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 516
+ERROR - 2019-01-07 06:54:26 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 516
+ERROR - 2019-01-07 06:54:26 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 516
+ERROR - 2019-01-07 06:54:26 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 516
+ERROR - 2019-01-07 06:54:26 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 516
+ERROR - 2019-01-07 06:54:26 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 516
+ERROR - 2019-01-07 06:54:26 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 516
+ERROR - 2019-01-07 06:54:26 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 516
+ERROR - 2019-01-07 06:54:26 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 516
+ERROR - 2019-01-07 06:54:26 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 516
+ERROR - 2019-01-07 06:54:26 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 516
+ERROR - 2019-01-07 06:54:26 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 516
+ERROR - 2019-01-07 06:54:27 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 516
+ERROR - 2019-01-07 06:54:27 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 516
+ERROR - 2019-01-07 06:54:27 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 516
+ERROR - 2019-01-07 06:54:27 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 516
+ERROR - 2019-01-07 06:54:27 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 516
+ERROR - 2019-01-07 06:54:27 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 516
+ERROR - 2019-01-07 06:54:27 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 516
+ERROR - 2019-01-07 06:54:27 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 516
+ERROR - 2019-01-07 06:54:27 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 516
+ERROR - 2019-01-07 06:54:27 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 516
+ERROR - 2019-01-07 06:54:27 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 516
+ERROR - 2019-01-07 06:54:27 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 516
+ERROR - 2019-01-07 06:54:27 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 516
+ERROR - 2019-01-07 06:54:27 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 516
+ERROR - 2019-01-07 06:54:28 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 516
+ERROR - 2019-01-07 06:54:28 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 516
+ERROR - 2019-01-07 06:54:28 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 516
+ERROR - 2019-01-07 06:54:28 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 516
+ERROR - 2019-01-07 06:54:28 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 516
+ERROR - 2019-01-07 06:54:28 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 516
+ERROR - 2019-01-07 06:54:28 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 516
+ERROR - 2019-01-07 06:54:28 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 516
+ERROR - 2019-01-07 06:54:28 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 516
+ERROR - 2019-01-07 06:54:28 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 516
+ERROR - 2019-01-07 06:54:28 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 516
+ERROR - 2019-01-07 06:54:28 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 516
+ERROR - 2019-01-07 06:54:28 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 516
+ERROR - 2019-01-07 06:54:28 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 516
+ERROR - 2019-01-07 06:54:29 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 516
+ERROR - 2019-01-07 06:54:29 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 516
+ERROR - 2019-01-07 06:54:29 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 516
+ERROR - 2019-01-07 06:54:29 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 516
+ERROR - 2019-01-07 06:54:29 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 516
+ERROR - 2019-01-07 06:54:29 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 516
+ERROR - 2019-01-07 06:54:29 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 516
+ERROR - 2019-01-07 06:54:29 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 516
+ERROR - 2019-01-07 06:54:29 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 516
+ERROR - 2019-01-07 06:54:29 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 516
+ERROR - 2019-01-07 06:54:29 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 516
+ERROR - 2019-01-07 06:54:29 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 516
+ERROR - 2019-01-07 06:54:29 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 516
+ERROR - 2019-01-07 06:54:29 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 516
+ERROR - 2019-01-07 06:54:30 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 516
+ERROR - 2019-01-07 06:54:30 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 516
+ERROR - 2019-01-07 06:54:30 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 516
+ERROR - 2019-01-07 06:54:30 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 516
+ERROR - 2019-01-07 06:54:30 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 516
+ERROR - 2019-01-07 06:54:30 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 516
+ERROR - 2019-01-07 06:54:30 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 516
+ERROR - 2019-01-07 06:54:30 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 516
+ERROR - 2019-01-07 06:54:30 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 516
+ERROR - 2019-01-07 06:54:30 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 516
+ERROR - 2019-01-07 06:54:30 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 516
+ERROR - 2019-01-07 06:54:30 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 516
+ERROR - 2019-01-07 06:54:30 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 516
+ERROR - 2019-01-07 06:54:30 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 516
+ERROR - 2019-01-07 06:54:31 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 516
+ERROR - 2019-01-07 06:54:31 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 516
+ERROR - 2019-01-07 06:54:31 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 516
+ERROR - 2019-01-07 06:54:31 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 516
+ERROR - 2019-01-07 06:54:31 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 516
+ERROR - 2019-01-07 06:54:31 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 516
+ERROR - 2019-01-07 06:54:31 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 516
+ERROR - 2019-01-07 06:54:31 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 516
+ERROR - 2019-01-07 06:54:31 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 516
+ERROR - 2019-01-07 06:54:31 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 516
+ERROR - 2019-01-07 06:54:31 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 516
+ERROR - 2019-01-07 06:54:31 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 516
+ERROR - 2019-01-07 06:54:31 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 516
+ERROR - 2019-01-07 06:54:31 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 516
+ERROR - 2019-01-07 06:54:31 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 516
+ERROR - 2019-01-07 06:54:32 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 516
+ERROR - 2019-01-07 06:54:32 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 516
+ERROR - 2019-01-07 06:54:32 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 516
+ERROR - 2019-01-07 06:54:32 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 516
+ERROR - 2019-01-07 06:54:32 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 516
+ERROR - 2019-01-07 06:54:32 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 516
+ERROR - 2019-01-07 06:54:32 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 516
+ERROR - 2019-01-07 06:54:32 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 516
+ERROR - 2019-01-07 06:54:32 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 516
+ERROR - 2019-01-07 06:54:32 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 516
+ERROR - 2019-01-07 06:54:32 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 516
+ERROR - 2019-01-07 06:54:32 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 516
+ERROR - 2019-01-07 06:54:32 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 516
+ERROR - 2019-01-07 06:54:32 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 516
+ERROR - 2019-01-07 06:54:33 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 516
+ERROR - 2019-01-07 06:54:33 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 516
+ERROR - 2019-01-07 06:54:33 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 516
+ERROR - 2019-01-07 06:54:33 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 516
+ERROR - 2019-01-07 06:54:33 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 516
+ERROR - 2019-01-07 06:54:33 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 516
+ERROR - 2019-01-07 06:54:33 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 516
+ERROR - 2019-01-07 06:54:33 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 516
+ERROR - 2019-01-07 06:54:33 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 516
+ERROR - 2019-01-07 06:54:33 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 516
+ERROR - 2019-01-07 06:54:33 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 516
+ERROR - 2019-01-07 06:54:33 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 516
+ERROR - 2019-01-07 06:54:33 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 516
+ERROR - 2019-01-07 06:54:33 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 516
+ERROR - 2019-01-07 06:54:34 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 516
+ERROR - 2019-01-07 06:54:34 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 516
+ERROR - 2019-01-07 06:54:34 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 516
+ERROR - 2019-01-07 06:54:34 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 516
+ERROR - 2019-01-07 06:54:34 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 516
+ERROR - 2019-01-07 06:54:34 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 516
+ERROR - 2019-01-07 06:54:34 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 516
+ERROR - 2019-01-07 06:54:34 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 516
+ERROR - 2019-01-07 06:54:34 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 516
+ERROR - 2019-01-07 06:54:34 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 516
+ERROR - 2019-01-07 06:54:34 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 516
+ERROR - 2019-01-07 06:54:34 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 516
+ERROR - 2019-01-07 06:54:34 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 516
+ERROR - 2019-01-07 06:54:34 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 516
+ERROR - 2019-01-07 06:54:35 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 516
+ERROR - 2019-01-07 06:54:35 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 516
+ERROR - 2019-01-07 06:54:35 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 516
+ERROR - 2019-01-07 06:54:35 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 516
+ERROR - 2019-01-07 06:54:35 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 516
+ERROR - 2019-01-07 06:54:35 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 516
+ERROR - 2019-01-07 06:54:35 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 516
+ERROR - 2019-01-07 06:54:35 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 516
+ERROR - 2019-01-07 06:54:35 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 516
+ERROR - 2019-01-07 06:54:35 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 516
+ERROR - 2019-01-07 06:54:35 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 516
+ERROR - 2019-01-07 06:54:35 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 516
+ERROR - 2019-01-07 06:54:35 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 516
+ERROR - 2019-01-07 06:54:35 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 516
+ERROR - 2019-01-07 06:54:36 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 516
+ERROR - 2019-01-07 06:54:36 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 516
+ERROR - 2019-01-07 06:54:36 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 516
+ERROR - 2019-01-07 06:54:36 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 516
+ERROR - 2019-01-07 06:54:36 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 516
+ERROR - 2019-01-07 06:54:36 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 516
+ERROR - 2019-01-07 06:54:36 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 516
+ERROR - 2019-01-07 06:54:36 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 516
+ERROR - 2019-01-07 06:54:36 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 516
+ERROR - 2019-01-07 06:54:41 --> Severity: Notice --> Undefined variable: fdate C:\xampp\htdocs\ria\application\controllers\cashbook.php 1738
+ERROR - 2019-01-07 06:54:41 --> Severity: Notice --> Undefined variable: tdate C:\xampp\htdocs\ria\application\controllers\cashbook.php 1738
+ERROR - 2019-01-07 06:54:41 --> Severity: Notice --> Undefined variable: fa C:\xampp\htdocs\ria\application\controllers\cashbook.php 1738
+ERROR - 2019-01-07 06:54:41 --> Severity: Notice --> Undefined variable: aa C:\xampp\htdocs\ria\application\controllers\cashbook.php 1738
+ERROR - 2019-01-07 06:54:42 --> Severity: Notice --> Undefined variable: financialyear C:\xampp\htdocs\ria\application\views\bankstatement.php 2
+ERROR - 2019-01-07 06:54:42 --> Severity: Warning --> Invalid argument supplied for foreach() C:\xampp\htdocs\ria\application\views\bankstatement.php 2
+ERROR - 2019-01-07 06:54:42 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 87
+ERROR - 2019-01-07 06:54:42 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 87
+ERROR - 2019-01-07 06:54:42 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 88
+ERROR - 2019-01-07 06:54:42 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 88
+ERROR - 2019-01-07 06:54:42 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 89
+ERROR - 2019-01-07 06:54:42 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 89
+ERROR - 2019-01-07 06:54:42 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 139
+ERROR - 2019-01-07 06:54:42 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 139
+ERROR - 2019-01-07 06:54:42 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 140
+ERROR - 2019-01-07 06:54:42 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 140
+ERROR - 2019-01-07 06:54:42 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 141
+ERROR - 2019-01-07 06:54:42 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 141
+ERROR - 2019-01-07 06:57:18 --> Severity: Notice --> Undefined variable: financialyear C:\xampp\htdocs\ria\application\views\bankinvoice.php 2
+ERROR - 2019-01-07 06:57:18 --> Severity: Warning --> Invalid argument supplied for foreach() C:\xampp\htdocs\ria\application\views\bankinvoice.php 2
+ERROR - 2019-01-07 06:57:18 --> Severity: Notice --> Undefined variable: cash C:\xampp\htdocs\ria\application\views\bankinvoice.php 84
+ERROR - 2019-01-07 06:57:18 --> Severity: Notice --> Undefined variable: bankid C:\xampp\htdocs\ria\application\views\bankinvoice.php 86
+ERROR - 2019-01-07 06:57:27 --> Severity: Notice --> Undefined variable: financialyear C:\xampp\htdocs\ria\application\views\bankinvoice.php 2
+ERROR - 2019-01-07 06:57:27 --> Severity: Warning --> Invalid argument supplied for foreach() C:\xampp\htdocs\ria\application\views\bankinvoice.php 2
+ERROR - 2019-01-07 06:57:27 --> Severity: Notice --> Undefined variable: cash C:\xampp\htdocs\ria\application\views\bankinvoice.php 84
+ERROR - 2019-01-07 06:57:27 --> Severity: Notice --> Undefined variable: bankid C:\xampp\htdocs\ria\application\views\bankinvoice.php 86
+ERROR - 2019-01-07 06:57:27 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 180
+ERROR - 2019-01-07 06:57:27 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 181
+ERROR - 2019-01-07 06:57:27 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 180
+ERROR - 2019-01-07 06:57:27 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 181
+ERROR - 2019-01-07 06:57:42 --> Severity: Notice --> Undefined variable: fdate C:\xampp\htdocs\ria\application\controllers\cashbook.php 1738
+ERROR - 2019-01-07 06:57:42 --> Severity: Notice --> Undefined variable: tdate C:\xampp\htdocs\ria\application\controllers\cashbook.php 1738
+ERROR - 2019-01-07 06:57:42 --> Severity: Notice --> Undefined variable: fa C:\xampp\htdocs\ria\application\controllers\cashbook.php 1738
+ERROR - 2019-01-07 06:57:42 --> Severity: Notice --> Undefined variable: aa C:\xampp\htdocs\ria\application\controllers\cashbook.php 1738
+ERROR - 2019-01-07 06:57:42 --> Severity: Notice --> Undefined variable: financialyear C:\xampp\htdocs\ria\application\views\bankstatement.php 2
+ERROR - 2019-01-07 06:57:42 --> Severity: Warning --> Invalid argument supplied for foreach() C:\xampp\htdocs\ria\application\views\bankstatement.php 2
+ERROR - 2019-01-07 06:57:42 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 87
+ERROR - 2019-01-07 06:57:42 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 87
+ERROR - 2019-01-07 06:57:42 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 88
+ERROR - 2019-01-07 06:57:42 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 88
+ERROR - 2019-01-07 06:57:42 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 89
+ERROR - 2019-01-07 06:57:42 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 89
+ERROR - 2019-01-07 06:57:42 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 139
+ERROR - 2019-01-07 06:57:42 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 139
+ERROR - 2019-01-07 06:57:42 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 140
+ERROR - 2019-01-07 06:57:42 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 140
+ERROR - 2019-01-07 06:57:42 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 141
+ERROR - 2019-01-07 06:57:42 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 141
+ERROR - 2019-01-07 06:57:54 --> Severity: Notice --> Undefined variable: financialyear C:\xampp\htdocs\ria\application\views\bankinvoice.php 2
+ERROR - 2019-01-07 06:57:54 --> Severity: Warning --> Invalid argument supplied for foreach() C:\xampp\htdocs\ria\application\views\bankinvoice.php 2
+ERROR - 2019-01-07 06:57:54 --> Severity: Notice --> Undefined variable: cash C:\xampp\htdocs\ria\application\views\bankinvoice.php 84
+ERROR - 2019-01-07 06:57:54 --> Severity: Notice --> Undefined variable: bankid C:\xampp\htdocs\ria\application\views\bankinvoice.php 86
+ERROR - 2019-01-07 06:57:59 --> Severity: Notice --> Undefined variable: financialyear C:\xampp\htdocs\ria\application\views\bankinvoice.php 2
+ERROR - 2019-01-07 06:57:59 --> Severity: Warning --> Invalid argument supplied for foreach() C:\xampp\htdocs\ria\application\views\bankinvoice.php 2
+ERROR - 2019-01-07 06:57:59 --> Severity: Notice --> Undefined variable: cash C:\xampp\htdocs\ria\application\views\bankinvoice.php 84
+ERROR - 2019-01-07 06:57:59 --> Severity: Notice --> Undefined variable: bankid C:\xampp\htdocs\ria\application\views\bankinvoice.php 86
+ERROR - 2019-01-07 06:57:59 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 180
+ERROR - 2019-01-07 06:57:59 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 181
+ERROR - 2019-01-07 06:57:59 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 180
+ERROR - 2019-01-07 06:57:59 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 181
+ERROR - 2019-01-07 06:58:14 --> Severity: Notice --> Undefined variable: fdate C:\xampp\htdocs\ria\application\controllers\cashbook.php 1738
+ERROR - 2019-01-07 06:58:14 --> Severity: Notice --> Undefined variable: tdate C:\xampp\htdocs\ria\application\controllers\cashbook.php 1738
+ERROR - 2019-01-07 06:58:14 --> Severity: Notice --> Undefined variable: fa C:\xampp\htdocs\ria\application\controllers\cashbook.php 1738
+ERROR - 2019-01-07 06:58:14 --> Severity: Notice --> Undefined variable: aa C:\xampp\htdocs\ria\application\controllers\cashbook.php 1738
+ERROR - 2019-01-07 06:58:14 --> Severity: Notice --> Undefined variable: financialyear C:\xampp\htdocs\ria\application\views\bankstatement.php 2
+ERROR - 2019-01-07 06:58:14 --> Severity: Warning --> Invalid argument supplied for foreach() C:\xampp\htdocs\ria\application\views\bankstatement.php 2
+ERROR - 2019-01-07 06:58:14 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 87
+ERROR - 2019-01-07 06:58:14 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 87
+ERROR - 2019-01-07 06:58:14 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 88
+ERROR - 2019-01-07 06:58:15 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 88
+ERROR - 2019-01-07 06:58:15 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 89
+ERROR - 2019-01-07 06:58:15 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 89
+ERROR - 2019-01-07 06:58:15 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 139
+ERROR - 2019-01-07 06:58:15 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 139
+ERROR - 2019-01-07 06:58:15 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 140
+ERROR - 2019-01-07 06:58:15 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 140
+ERROR - 2019-01-07 06:58:15 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 141
+ERROR - 2019-01-07 06:58:15 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 141
+ERROR - 2019-01-07 06:58:23 --> Severity: Notice --> Undefined variable: financialyear C:\xampp\htdocs\ria\application\views\bankinvoicesettlement.php 7
+ERROR - 2019-01-07 06:58:23 --> Severity: Warning --> Invalid argument supplied for foreach() C:\xampp\htdocs\ria\application\views\bankinvoicesettlement.php 7
+ERROR - 2019-01-07 06:58:23 --> Severity: Notice --> Undefined variable: record C:\xampp\htdocs\ria\application\views\bankinvoicesettlement.php 180
+ERROR - 2019-01-07 06:58:24 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoicesettlement.php 180
+ERROR - 2019-01-07 06:58:44 --> Severity: Notice --> Undefined variable: financialyear C:\xampp\htdocs\ria\application\views\bankinvoicesettlement.php 7
+ERROR - 2019-01-07 06:58:44 --> Severity: Warning --> Invalid argument supplied for foreach() C:\xampp\htdocs\ria\application\views\bankinvoicesettlement.php 7
+ERROR - 2019-01-07 06:58:44 --> Severity: Notice --> Undefined variable: record C:\xampp\htdocs\ria\application\views\bankinvoicesettlement.php 180
+ERROR - 2019-01-07 06:58:44 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoicesettlement.php 180
+ERROR - 2019-01-07 06:58:51 --> Query error: Unknown column 'IsActive' in 'field list'
+ERROR - 2019-01-07 06:59:09 --> Severity: Notice --> Undefined variable: financialyear C:\xampp\htdocs\ria\application\views\bankinvoice.php 2
+ERROR - 2019-01-07 06:59:09 --> Severity: Warning --> Invalid argument supplied for foreach() C:\xampp\htdocs\ria\application\views\bankinvoice.php 2
+ERROR - 2019-01-07 06:59:09 --> Severity: Notice --> Undefined variable: cash C:\xampp\htdocs\ria\application\views\bankinvoice.php 84
+ERROR - 2019-01-07 06:59:09 --> Severity: Notice --> Undefined variable: bankid C:\xampp\htdocs\ria\application\views\bankinvoice.php 86
+ERROR - 2019-01-07 06:59:25 --> Severity: Notice --> Undefined variable: financialyear C:\xampp\htdocs\ria\application\views\bankinvoicesettlement.php 7
+ERROR - 2019-01-07 06:59:25 --> Severity: Warning --> Invalid argument supplied for foreach() C:\xampp\htdocs\ria\application\views\bankinvoicesettlement.php 7
+ERROR - 2019-01-07 06:59:25 --> Severity: Notice --> Undefined variable: record C:\xampp\htdocs\ria\application\views\bankinvoicesettlement.php 180
+ERROR - 2019-01-07 06:59:25 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoicesettlement.php 180
+ERROR - 2019-01-07 07:04:46 --> Severity: Notice --> Undefined variable: financialyear C:\xampp\htdocs\ria\application\views\bankinvoicesettlement.php 7
+ERROR - 2019-01-07 07:04:46 --> Severity: Warning --> Invalid argument supplied for foreach() C:\xampp\htdocs\ria\application\views\bankinvoicesettlement.php 7
+ERROR - 2019-01-07 07:04:46 --> Severity: Notice --> Undefined variable: record C:\xampp\htdocs\ria\application\views\bankinvoicesettlement.php 180
+ERROR - 2019-01-07 07:04:46 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoicesettlement.php 180
+ERROR - 2019-01-07 07:04:58 --> Query error: Unknown column 'IsActive' in 'field list'
+ERROR - 2019-01-07 07:27:14 --> Severity: Notice --> Undefined variable: fdate C:\xampp\htdocs\ria\application\controllers\cashbook.php 1738
+ERROR - 2019-01-07 07:27:14 --> Severity: Notice --> Undefined variable: tdate C:\xampp\htdocs\ria\application\controllers\cashbook.php 1738
+ERROR - 2019-01-07 07:27:14 --> Severity: Notice --> Undefined variable: fa C:\xampp\htdocs\ria\application\controllers\cashbook.php 1738
+ERROR - 2019-01-07 07:27:14 --> Severity: Notice --> Undefined variable: aa C:\xampp\htdocs\ria\application\controllers\cashbook.php 1738
+ERROR - 2019-01-07 07:27:14 --> Severity: Notice --> Undefined variable: fdate C:\xampp\htdocs\ria\application\controllers\cashbook.php 1738
+ERROR - 2019-01-07 07:27:14 --> Severity: Notice --> Undefined variable: financialyear C:\xampp\htdocs\ria\application\views\bankstatement.php 2
+ERROR - 2019-01-07 07:27:14 --> Severity: Notice --> Undefined variable: tdate C:\xampp\htdocs\ria\application\controllers\cashbook.php 1738
+ERROR - 2019-01-07 07:27:14 --> Severity: Notice --> Undefined variable: fa C:\xampp\htdocs\ria\application\controllers\cashbook.php 1738
+ERROR - 2019-01-07 07:27:15 --> Severity: Notice --> Undefined variable: aa C:\xampp\htdocs\ria\application\controllers\cashbook.php 1738
+ERROR - 2019-01-07 07:27:15 --> Severity: Warning --> Invalid argument supplied for foreach() C:\xampp\htdocs\ria\application\views\bankstatement.php 2
+ERROR - 2019-01-07 07:27:15 --> Severity: Notice --> Undefined variable: fdate C:\xampp\htdocs\ria\application\controllers\cashbook.php 1738
+ERROR - 2019-01-07 07:27:15 --> Severity: Notice --> Undefined variable: financialyear C:\xampp\htdocs\ria\application\views\bankstatement.php 2
+ERROR - 2019-01-07 07:27:15 --> Severity: Notice --> Undefined variable: tdate C:\xampp\htdocs\ria\application\controllers\cashbook.php 1738
+ERROR - 2019-01-07 07:27:15 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 87
+ERROR - 2019-01-07 07:27:15 --> Severity: Warning --> Invalid argument supplied for foreach() C:\xampp\htdocs\ria\application\views\bankstatement.php 2
+ERROR - 2019-01-07 07:27:15 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 87
+ERROR - 2019-01-07 07:27:15 --> Severity: Notice --> Undefined variable: fdate C:\xampp\htdocs\ria\application\controllers\cashbook.php 1738
+ERROR - 2019-01-07 07:27:15 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 87
+ERROR - 2019-01-07 07:27:15 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 87
+ERROR - 2019-01-07 07:27:15 --> Severity: Notice --> Undefined variable: fa C:\xampp\htdocs\ria\application\controllers\cashbook.php 1738
+ERROR - 2019-01-07 07:27:15 --> Severity: Notice --> Undefined variable: tdate C:\xampp\htdocs\ria\application\controllers\cashbook.php 1738
+ERROR - 2019-01-07 07:27:15 --> Severity: Notice --> Undefined variable: fa C:\xampp\htdocs\ria\application\controllers\cashbook.php 1738
+ERROR - 2019-01-07 07:27:16 --> Severity: Notice --> Undefined variable: fdate C:\xampp\htdocs\ria\application\controllers\cashbook.php 1738
+ERROR - 2019-01-07 07:27:16 --> Severity: Notice --> Undefined variable: aa C:\xampp\htdocs\ria\application\controllers\cashbook.php 1738
+ERROR - 2019-01-07 07:27:16 --> Severity: Notice --> Undefined variable: aa C:\xampp\htdocs\ria\application\controllers\cashbook.php 1738
+ERROR - 2019-01-07 07:27:16 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 88
+ERROR - 2019-01-07 07:27:16 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 88
+ERROR - 2019-01-07 07:27:16 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 88
+ERROR - 2019-01-07 07:27:16 --> Severity: Notice --> Undefined variable: tdate C:\xampp\htdocs\ria\application\controllers\cashbook.php 1738
+ERROR - 2019-01-07 07:27:16 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 88
+ERROR - 2019-01-07 07:27:16 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 89
+ERROR - 2019-01-07 07:27:16 --> Severity: Notice --> Undefined variable: fdate C:\xampp\htdocs\ria\application\controllers\cashbook.php 1738
+ERROR - 2019-01-07 07:27:16 --> Severity: Notice --> Undefined variable: fa C:\xampp\htdocs\ria\application\controllers\cashbook.php 1738
+ERROR - 2019-01-07 07:27:16 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 89
+ERROR - 2019-01-07 07:27:16 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 89
+ERROR - 2019-01-07 07:27:16 --> Severity: Notice --> Undefined variable: tdate C:\xampp\htdocs\ria\application\controllers\cashbook.php 1738
+ERROR - 2019-01-07 07:27:16 --> Severity: Notice --> Undefined variable: financialyear C:\xampp\htdocs\ria\application\views\bankstatement.php 2
+ERROR - 2019-01-07 07:27:16 --> Severity: Notice --> Undefined variable: fdate C:\xampp\htdocs\ria\application\controllers\cashbook.php 1738
+ERROR - 2019-01-07 07:27:16 --> Severity: Notice --> Undefined variable: financialyear C:\xampp\htdocs\ria\application\views\bankstatement.php 2
+ERROR - 2019-01-07 07:27:16 --> Severity: Notice --> Undefined variable: fa C:\xampp\htdocs\ria\application\controllers\cashbook.php 1738
+ERROR - 2019-01-07 07:27:16 --> Severity: Warning --> Invalid argument supplied for foreach() C:\xampp\htdocs\ria\application\views\bankstatement.php 2
+ERROR - 2019-01-07 07:27:16 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 139
+ERROR - 2019-01-07 07:27:16 --> Severity: Notice --> Undefined variable: aa C:\xampp\htdocs\ria\application\controllers\cashbook.php 1738
+ERROR - 2019-01-07 07:27:16 --> Severity: Notice --> Undefined variable: tdate C:\xampp\htdocs\ria\application\controllers\cashbook.php 1738
+ERROR - 2019-01-07 07:27:16 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 139
+ERROR - 2019-01-07 07:27:16 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 89
+ERROR - 2019-01-07 07:27:16 --> Severity: Warning --> Invalid argument supplied for foreach() C:\xampp\htdocs\ria\application\views\bankstatement.php 2
+ERROR - 2019-01-07 07:27:16 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 87
+ERROR - 2019-01-07 07:27:16 --> Severity: Notice --> Undefined variable: fa C:\xampp\htdocs\ria\application\controllers\cashbook.php 1738
+ERROR - 2019-01-07 07:27:16 --> Severity: Notice --> Undefined variable: aa C:\xampp\htdocs\ria\application\controllers\cashbook.php 1738
+ERROR - 2019-01-07 07:27:16 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 139
+ERROR - 2019-01-07 07:27:16 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 140
+ERROR - 2019-01-07 07:27:16 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 87
+ERROR - 2019-01-07 07:27:16 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 87
+ERROR - 2019-01-07 07:27:16 --> Severity: Notice --> Undefined variable: aa C:\xampp\htdocs\ria\application\controllers\cashbook.php 1738
+ERROR - 2019-01-07 07:27:16 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 139
+ERROR - 2019-01-07 07:27:16 --> Severity: Notice --> Undefined variable: fdate C:\xampp\htdocs\ria\application\controllers\cashbook.php 1738
+ERROR - 2019-01-07 07:27:16 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 140
+ERROR - 2019-01-07 07:27:16 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 87
+ERROR - 2019-01-07 07:27:16 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 88
+ERROR - 2019-01-07 07:27:16 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 140
+ERROR - 2019-01-07 07:27:16 --> Severity: Notice --> Undefined variable: tdate C:\xampp\htdocs\ria\application\controllers\cashbook.php 1738
+ERROR - 2019-01-07 07:27:16 --> Severity: Notice --> Undefined variable: financialyear C:\xampp\htdocs\ria\application\views\bankstatement.php 2
+ERROR - 2019-01-07 07:27:16 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 141
+ERROR - 2019-01-07 07:27:16 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 88
+ERROR - 2019-01-07 07:27:16 --> Severity: Notice --> Undefined variable: fa C:\xampp\htdocs\ria\application\controllers\cashbook.php 1738
+ERROR - 2019-01-07 07:27:16 --> Severity: Warning --> Invalid argument supplied for foreach() C:\xampp\htdocs\ria\application\views\bankstatement.php 2
+ERROR - 2019-01-07 07:27:16 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 140
+ERROR - 2019-01-07 07:27:16 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 88
+ERROR - 2019-01-07 07:27:16 --> Severity: Notice --> Undefined variable: fdate C:\xampp\htdocs\ria\application\controllers\cashbook.php 1738
+ERROR - 2019-01-07 07:27:16 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 88
+ERROR - 2019-01-07 07:27:16 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 89
+ERROR - 2019-01-07 07:27:16 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 141
+ERROR - 2019-01-07 07:27:16 --> Severity: Notice --> Undefined variable: financialyear C:\xampp\htdocs\ria\application\views\bankstatement.php 2
+ERROR - 2019-01-07 07:27:16 --> Severity: Notice --> Undefined variable: aa C:\xampp\htdocs\ria\application\controllers\cashbook.php 1738
+ERROR - 2019-01-07 07:27:16 --> Severity: Notice --> Undefined variable: tdate C:\xampp\htdocs\ria\application\controllers\cashbook.php 1738
+ERROR - 2019-01-07 07:27:16 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 89
+ERROR - 2019-01-07 07:27:16 --> Severity: Notice --> Undefined variable: fa C:\xampp\htdocs\ria\application\controllers\cashbook.php 1738
+ERROR - 2019-01-07 07:27:16 --> Severity: Warning --> Invalid argument supplied for foreach() C:\xampp\htdocs\ria\application\views\bankstatement.php 2
+ERROR - 2019-01-07 07:27:16 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 141
+ERROR - 2019-01-07 07:27:16 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 87
+ERROR - 2019-01-07 07:27:16 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 89
+ERROR - 2019-01-07 07:27:16 --> Severity: Notice --> Undefined variable: financialyear C:\xampp\htdocs\ria\application\views\bankstatement.php 2
+ERROR - 2019-01-07 07:27:16 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 89
+ERROR - 2019-01-07 07:27:16 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 141
+ERROR - 2019-01-07 07:27:16 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 139
+ERROR - 2019-01-07 07:27:16 --> Severity: Warning --> Invalid argument supplied for foreach() C:\xampp\htdocs\ria\application\views\bankstatement.php 2
+ERROR - 2019-01-07 07:27:16 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 87
+ERROR - 2019-01-07 07:27:16 --> Severity: Notice --> Undefined variable: aa C:\xampp\htdocs\ria\application\controllers\cashbook.php 1738
+ERROR - 2019-01-07 07:27:16 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 87
+ERROR - 2019-01-07 07:27:17 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 88
+ERROR - 2019-01-07 07:27:17 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 87
+ERROR - 2019-01-07 07:27:17 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 139
+ERROR - 2019-01-07 07:27:17 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 139
+ERROR - 2019-01-07 07:27:17 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 87
+ERROR - 2019-01-07 07:27:17 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 88
+ERROR - 2019-01-07 07:27:17 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 140
+ERROR - 2019-01-07 07:27:17 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 139
+ERROR - 2019-01-07 07:27:17 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 87
+ERROR - 2019-01-07 07:27:17 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 88
+ERROR - 2019-01-07 07:27:17 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 140
+ERROR - 2019-01-07 07:27:17 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 88
+ERROR - 2019-01-07 07:27:17 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 89
+ERROR - 2019-01-07 07:27:17 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 140
+ERROR - 2019-01-07 07:27:17 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 89
+ERROR - 2019-01-07 07:27:17 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 88
+ERROR - 2019-01-07 07:27:17 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 88
+ERROR - 2019-01-07 07:27:17 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 140
+ERROR - 2019-01-07 07:27:17 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 141
+ERROR - 2019-01-07 07:27:17 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 141
+ERROR - 2019-01-07 07:27:17 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 139
+ERROR - 2019-01-07 07:27:17 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 89
+ERROR - 2019-01-07 07:27:17 --> Severity: Notice --> Undefined variable: financialyear C:\xampp\htdocs\ria\application\views\bankstatement.php 2
+ERROR - 2019-01-07 07:27:17 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 89
+ERROR - 2019-01-07 07:27:17 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 141
+ERROR - 2019-01-07 07:27:17 --> Severity: Warning --> Invalid argument supplied for foreach() C:\xampp\htdocs\ria\application\views\bankstatement.php 2
+ERROR - 2019-01-07 07:27:17 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 141
+ERROR - 2019-01-07 07:27:17 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 89
+ERROR - 2019-01-07 07:27:17 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 139
+ERROR - 2019-01-07 07:27:17 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 89
+ERROR - 2019-01-07 07:27:17 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 140
+ERROR - 2019-01-07 07:27:17 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 139
+ERROR - 2019-01-07 07:27:17 --> Severity: Notice --> Undefined variable: financialyear C:\xampp\htdocs\ria\application\views\bankstatement.php 2
+ERROR - 2019-01-07 07:27:17 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 87
+ERROR - 2019-01-07 07:27:17 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 139
+ERROR - 2019-01-07 07:27:17 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 140
+ERROR - 2019-01-07 07:27:17 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 139
+ERROR - 2019-01-07 07:27:17 --> Severity: Warning --> Invalid argument supplied for foreach() C:\xampp\htdocs\ria\application\views\bankstatement.php 2
+ERROR - 2019-01-07 07:27:17 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 87
+ERROR - 2019-01-07 07:27:17 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 87
+ERROR - 2019-01-07 07:27:17 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 139
+ERROR - 2019-01-07 07:27:17 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 141
+ERROR - 2019-01-07 07:27:17 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 140
+ERROR - 2019-01-07 07:27:17 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 141
+ERROR - 2019-01-07 07:27:17 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 140
+ERROR - 2019-01-07 07:27:17 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 140
+ERROR - 2019-01-07 07:27:17 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 88
+ERROR - 2019-01-07 07:27:17 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 87
+ERROR - 2019-01-07 07:27:17 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 88
+ERROR - 2019-01-07 07:27:17 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 141
+ERROR - 2019-01-07 07:27:17 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 140
+ERROR - 2019-01-07 07:27:17 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 88
+ERROR - 2019-01-07 07:27:17 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 141
+ERROR - 2019-01-07 07:27:17 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 89
+ERROR - 2019-01-07 07:27:17 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 88
+ERROR - 2019-01-07 07:27:17 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 141
+ERROR - 2019-01-07 07:27:17 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 89
+ERROR - 2019-01-07 07:27:17 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 141
+ERROR - 2019-01-07 07:27:17 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 89
+ERROR - 2019-01-07 07:27:17 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 89
+ERROR - 2019-01-07 07:27:17 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 139
+ERROR - 2019-01-07 07:27:17 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 139
+ERROR - 2019-01-07 07:27:17 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 139
+ERROR - 2019-01-07 07:27:17 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 140
+ERROR - 2019-01-07 07:27:17 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 139
+ERROR - 2019-01-07 07:27:17 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 140
+ERROR - 2019-01-07 07:27:17 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 140
+ERROR - 2019-01-07 07:27:17 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 140
+ERROR - 2019-01-07 07:27:17 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 141
+ERROR - 2019-01-07 07:27:17 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 141
+ERROR - 2019-01-07 07:27:17 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 141
+ERROR - 2019-01-07 07:27:17 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 141
+ERROR - 2019-01-07 07:27:30 --> Severity: Notice --> Undefined variable: financialyear C:\xampp\htdocs\ria\application\views\bankinvoicesettlement.php 7
+ERROR - 2019-01-07 07:27:30 --> Severity: Warning --> Invalid argument supplied for foreach() C:\xampp\htdocs\ria\application\views\bankinvoicesettlement.php 7
+ERROR - 2019-01-07 07:27:30 --> Severity: Notice --> Undefined variable: record C:\xampp\htdocs\ria\application\views\bankinvoicesettlement.php 180
+ERROR - 2019-01-07 07:27:30 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoicesettlement.php 180
+ERROR - 2019-01-07 07:27:36 --> Query error: Unknown column 'IsActive' in 'field list'
+ERROR - 2019-01-07 07:28:22 --> Severity: Notice --> Undefined variable: fdate C:\xampp\htdocs\ria\application\controllers\cashbook.php 1738
+ERROR - 2019-01-07 07:28:22 --> Severity: Notice --> Undefined variable: tdate C:\xampp\htdocs\ria\application\controllers\cashbook.php 1738
+ERROR - 2019-01-07 07:28:22 --> Severity: Notice --> Undefined variable: fa C:\xampp\htdocs\ria\application\controllers\cashbook.php 1738
+ERROR - 2019-01-07 07:28:22 --> Severity: Notice --> Undefined variable: aa C:\xampp\htdocs\ria\application\controllers\cashbook.php 1738
+ERROR - 2019-01-07 07:28:23 --> Severity: Notice --> Undefined variable: financialyear C:\xampp\htdocs\ria\application\views\bankstatement.php 2
+ERROR - 2019-01-07 07:28:23 --> Severity: Warning --> Invalid argument supplied for foreach() C:\xampp\htdocs\ria\application\views\bankstatement.php 2
+ERROR - 2019-01-07 07:28:23 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 87
+ERROR - 2019-01-07 07:28:23 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 87
+ERROR - 2019-01-07 07:28:23 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 88
+ERROR - 2019-01-07 07:28:23 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 88
+ERROR - 2019-01-07 07:28:23 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 89
+ERROR - 2019-01-07 07:28:23 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 89
+ERROR - 2019-01-07 07:28:23 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 139
+ERROR - 2019-01-07 07:28:23 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 139
+ERROR - 2019-01-07 07:28:23 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 140
+ERROR - 2019-01-07 07:28:23 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 140
+ERROR - 2019-01-07 07:28:23 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 141
+ERROR - 2019-01-07 07:28:23 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 141
+ERROR - 2019-01-07 07:28:47 --> Severity: Notice --> Undefined variable: financialyear C:\xampp\htdocs\ria\application\views\bankinvoicesettlement.php 7
+ERROR - 2019-01-07 07:28:47 --> Severity: Warning --> Invalid argument supplied for foreach() C:\xampp\htdocs\ria\application\views\bankinvoicesettlement.php 7
+ERROR - 2019-01-07 07:28:47 --> Severity: Notice --> Undefined variable: record C:\xampp\htdocs\ria\application\views\bankinvoicesettlement.php 180
+ERROR - 2019-01-07 07:28:47 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoicesettlement.php 180
+ERROR - 2019-01-07 07:29:03 --> Query error: Unknown column 'IsActive' in 'field list'
+ERROR - 2019-01-07 07:33:15 --> Severity: Notice --> Undefined variable: fdate C:\xampp\htdocs\ria\application\controllers\cashbook.php 1738
+ERROR - 2019-01-07 07:33:15 --> Severity: Notice --> Undefined variable: tdate C:\xampp\htdocs\ria\application\controllers\cashbook.php 1738
+ERROR - 2019-01-07 07:33:15 --> Severity: Notice --> Undefined variable: fa C:\xampp\htdocs\ria\application\controllers\cashbook.php 1738
+ERROR - 2019-01-07 07:33:15 --> Severity: Notice --> Undefined variable: aa C:\xampp\htdocs\ria\application\controllers\cashbook.php 1738
+ERROR - 2019-01-07 07:33:15 --> Severity: Notice --> Undefined variable: financialyear C:\xampp\htdocs\ria\application\views\bankstatement.php 2
+ERROR - 2019-01-07 07:33:15 --> Severity: Warning --> Invalid argument supplied for foreach() C:\xampp\htdocs\ria\application\views\bankstatement.php 2
+ERROR - 2019-01-07 07:33:16 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 87
+ERROR - 2019-01-07 07:33:16 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 87
+ERROR - 2019-01-07 07:33:16 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 88
+ERROR - 2019-01-07 07:33:16 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 88
+ERROR - 2019-01-07 07:33:16 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 89
+ERROR - 2019-01-07 07:33:16 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 89
+ERROR - 2019-01-07 07:33:16 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 139
+ERROR - 2019-01-07 07:33:16 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 139
+ERROR - 2019-01-07 07:33:16 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 140
+ERROR - 2019-01-07 07:33:16 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 140
+ERROR - 2019-01-07 07:33:16 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 141
+ERROR - 2019-01-07 07:33:16 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 141
+ERROR - 2019-01-07 07:33:38 --> Severity: Notice --> Undefined variable: financialyear C:\xampp\htdocs\ria\application\views\bankinvoicesettlement.php 7
+ERROR - 2019-01-07 07:33:38 --> Severity: Warning --> Invalid argument supplied for foreach() C:\xampp\htdocs\ria\application\views\bankinvoicesettlement.php 7
+ERROR - 2019-01-07 07:33:38 --> Severity: Notice --> Undefined variable: record C:\xampp\htdocs\ria\application\views\bankinvoicesettlement.php 180
+ERROR - 2019-01-07 07:33:38 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoicesettlement.php 180
+ERROR - 2019-01-07 07:33:56 --> Query error: Unknown column 'IsActive' in 'field list'
+ERROR - 2019-01-07 07:36:21 --> Severity: Notice --> Undefined variable: fdate C:\xampp\htdocs\ria\application\controllers\cashbook.php 1738
+ERROR - 2019-01-07 07:36:21 --> Severity: Notice --> Undefined variable: tdate C:\xampp\htdocs\ria\application\controllers\cashbook.php 1738
+ERROR - 2019-01-07 07:36:21 --> Severity: Notice --> Undefined variable: fa C:\xampp\htdocs\ria\application\controllers\cashbook.php 1738
+ERROR - 2019-01-07 07:36:21 --> Severity: Notice --> Undefined variable: aa C:\xampp\htdocs\ria\application\controllers\cashbook.php 1738
+ERROR - 2019-01-07 07:36:22 --> Severity: Notice --> Undefined variable: financialyear C:\xampp\htdocs\ria\application\views\bankstatement.php 2
+ERROR - 2019-01-07 07:36:22 --> Severity: Warning --> Invalid argument supplied for foreach() C:\xampp\htdocs\ria\application\views\bankstatement.php 2
+ERROR - 2019-01-07 07:36:22 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 87
+ERROR - 2019-01-07 07:36:22 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 87
+ERROR - 2019-01-07 07:36:22 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 88
+ERROR - 2019-01-07 07:36:22 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 88
+ERROR - 2019-01-07 07:36:22 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 89
+ERROR - 2019-01-07 07:36:22 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 89
+ERROR - 2019-01-07 07:36:22 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 139
+ERROR - 2019-01-07 07:36:22 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 139
+ERROR - 2019-01-07 07:36:22 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 140
+ERROR - 2019-01-07 07:36:22 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 140
+ERROR - 2019-01-07 07:36:22 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 141
+ERROR - 2019-01-07 07:36:22 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 141
+ERROR - 2019-01-07 07:36:40 --> Severity: Notice --> Undefined variable: financialyear C:\xampp\htdocs\ria\application\views\bankinvoicesettlement.php 7
+ERROR - 2019-01-07 07:36:40 --> Severity: Warning --> Invalid argument supplied for foreach() C:\xampp\htdocs\ria\application\views\bankinvoicesettlement.php 7
+ERROR - 2019-01-07 07:36:40 --> Severity: Notice --> Undefined variable: record C:\xampp\htdocs\ria\application\views\bankinvoicesettlement.php 180
+ERROR - 2019-01-07 07:36:40 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoicesettlement.php 180
+ERROR - 2019-01-07 07:36:57 --> Severity: Notice --> Undefined variable: data C:\xampp\htdocs\ria\application\controllers\cashbook.php 2341
+ERROR - 2019-01-07 07:36:57 --> Severity: Notice --> Undefined variable: financialyear C:\xampp\htdocs\ria\application\views\bankstatement.php 2
+ERROR - 2019-01-07 07:36:57 --> Severity: Warning --> Invalid argument supplied for foreach() C:\xampp\htdocs\ria\application\views\bankstatement.php 2
+ERROR - 2019-01-07 07:36:57 --> Severity: Notice --> Undefined variable: bankreport C:\xampp\htdocs\ria\application\views\bankstatement.php 8
+ERROR - 2019-01-07 07:36:57 --> Severity: Warning --> Invalid argument supplied for foreach() C:\xampp\htdocs\ria\application\views\bankstatement.php 8
+ERROR - 2019-01-07 07:36:57 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 87
+ERROR - 2019-01-07 07:36:57 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 87
+ERROR - 2019-01-07 07:36:57 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 88
+ERROR - 2019-01-07 07:36:57 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 88
+ERROR - 2019-01-07 07:36:57 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 89
+ERROR - 2019-01-07 07:36:57 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 89
+ERROR - 2019-01-07 07:36:57 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 139
+ERROR - 2019-01-07 07:36:57 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 139
+ERROR - 2019-01-07 07:36:58 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 140
+ERROR - 2019-01-07 07:36:58 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 140
+ERROR - 2019-01-07 07:36:58 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 141
+ERROR - 2019-01-07 07:36:58 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 141
+ERROR - 2019-01-07 07:36:58 --> Severity: Notice --> Undefined variable: finyear C:\xampp\htdocs\ria\application\views\bankstatement.php 199
+ERROR - 2019-01-07 07:36:58 --> Severity: Warning --> Invalid argument supplied for foreach() C:\xampp\htdocs\ria\application\views\bankstatement.php 199
+ERROR - 2019-01-07 07:36:58 --> Severity: Notice --> Undefined variable: Bankname C:\xampp\htdocs\ria\application\views\bankstatement.php 237
+ERROR - 2019-01-07 07:36:59 --> Severity: Notice --> Undefined variable: fdate C:\xampp\htdocs\ria\application\controllers\cashbook.php 1738
+ERROR - 2019-01-07 07:36:59 --> Severity: Notice --> Undefined variable: tdate C:\xampp\htdocs\ria\application\controllers\cashbook.php 1738
+ERROR - 2019-01-07 07:36:59 --> Severity: Notice --> Undefined variable: fa C:\xampp\htdocs\ria\application\controllers\cashbook.php 1738
+ERROR - 2019-01-07 07:36:59 --> Severity: Notice --> Undefined variable: aa C:\xampp\htdocs\ria\application\controllers\cashbook.php 1738
+ERROR - 2019-01-07 07:36:59 --> Severity: Notice --> Undefined variable: financialyear C:\xampp\htdocs\ria\application\views\bankstatement.php 2
+ERROR - 2019-01-07 07:36:59 --> Severity: Warning --> Invalid argument supplied for foreach() C:\xampp\htdocs\ria\application\views\bankstatement.php 2
+ERROR - 2019-01-07 07:36:59 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 87
+ERROR - 2019-01-07 07:36:59 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 87
+ERROR - 2019-01-07 07:36:59 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 88
+ERROR - 2019-01-07 07:36:59 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 88
+ERROR - 2019-01-07 07:36:59 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 89
+ERROR - 2019-01-07 07:36:59 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 89
+ERROR - 2019-01-07 07:36:59 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 139
+ERROR - 2019-01-07 07:36:59 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 139
+ERROR - 2019-01-07 07:36:59 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 140
+ERROR - 2019-01-07 07:37:00 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 140
+ERROR - 2019-01-07 07:37:00 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 141
+ERROR - 2019-01-07 07:37:00 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 141
+ERROR - 2019-01-07 07:37:17 --> Severity: Notice --> Undefined variable: financialyear C:\xampp\htdocs\ria\application\views\bankinvoicesettlement.php 7
+ERROR - 2019-01-07 07:37:17 --> Severity: Warning --> Invalid argument supplied for foreach() C:\xampp\htdocs\ria\application\views\bankinvoicesettlement.php 7
+ERROR - 2019-01-07 07:37:17 --> Severity: Notice --> Undefined variable: bankid C:\xampp\htdocs\ria\application\views\bankinvoicesettlement.php 125
+ERROR - 2019-01-07 07:37:43 --> Severity: Notice --> Undefined variable: financialyear C:\xampp\htdocs\ria\application\views\bankinvoice.php 2
+ERROR - 2019-01-07 07:37:43 --> Severity: Warning --> Invalid argument supplied for foreach() C:\xampp\htdocs\ria\application\views\bankinvoice.php 2
+ERROR - 2019-01-07 07:37:43 --> Severity: Notice --> Undefined variable: cash C:\xampp\htdocs\ria\application\views\bankinvoice.php 84
+ERROR - 2019-01-07 07:37:43 --> Severity: Notice --> Undefined variable: bankid C:\xampp\htdocs\ria\application\views\bankinvoice.php 86
+ERROR - 2019-01-07 07:37:48 --> Severity: Notice --> Undefined variable: financialyear C:\xampp\htdocs\ria\application\views\bankinvoice.php 2
+ERROR - 2019-01-07 07:37:48 --> Severity: Warning --> Invalid argument supplied for foreach() C:\xampp\htdocs\ria\application\views\bankinvoice.php 2
+ERROR - 2019-01-07 07:37:48 --> Severity: Notice --> Undefined variable: cash C:\xampp\htdocs\ria\application\views\bankinvoice.php 84
+ERROR - 2019-01-07 07:37:48 --> Severity: Notice --> Undefined variable: bankid C:\xampp\htdocs\ria\application\views\bankinvoice.php 86
+ERROR - 2019-01-07 07:37:48 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 180
+ERROR - 2019-01-07 07:37:48 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 181
+ERROR - 2019-01-07 07:37:48 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 180
+ERROR - 2019-01-07 07:37:48 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 181
+ERROR - 2019-01-07 07:39:25 --> Severity: Notice --> Undefined variable: financialyear C:\xampp\htdocs\ria\application\views\bankinvoice.php 2
+ERROR - 2019-01-07 07:39:25 --> Severity: Warning --> Invalid argument supplied for foreach() C:\xampp\htdocs\ria\application\views\bankinvoice.php 2
+ERROR - 2019-01-07 07:39:25 --> Severity: Notice --> Undefined variable: cash C:\xampp\htdocs\ria\application\views\bankinvoice.php 84
+ERROR - 2019-01-07 07:39:25 --> Severity: Notice --> Undefined variable: bankid C:\xampp\htdocs\ria\application\views\bankinvoice.php 86
+ERROR - 2019-01-07 07:39:32 --> Severity: Notice --> Undefined variable: financialyear C:\xampp\htdocs\ria\application\views\bankinvoice.php 2
+ERROR - 2019-01-07 07:39:32 --> Severity: Warning --> Invalid argument supplied for foreach() C:\xampp\htdocs\ria\application\views\bankinvoice.php 2
+ERROR - 2019-01-07 07:39:32 --> Severity: Notice --> Undefined variable: cash C:\xampp\htdocs\ria\application\views\bankinvoice.php 84
+ERROR - 2019-01-07 07:39:32 --> Severity: Notice --> Undefined variable: bankid C:\xampp\htdocs\ria\application\views\bankinvoice.php 86
+ERROR - 2019-01-07 07:39:32 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 180
+ERROR - 2019-01-07 07:39:32 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 181
+ERROR - 2019-01-07 07:39:32 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 180
+ERROR - 2019-01-07 07:39:32 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 181
+ERROR - 2019-01-07 07:49:48 --> Severity: Notice --> Undefined variable: financialyear C:\xampp\htdocs\ria\application\views\bankamountreceived.php 10
+ERROR - 2019-01-07 07:49:48 --> Severity: Warning --> Invalid argument supplied for foreach() C:\xampp\htdocs\ria\application\views\bankamountreceived.php 10
+ERROR - 2019-01-07 07:49:59 --> Severity: Notice --> Undefined variable: financialyear C:\xampp\htdocs\ria\application\views\bankamountreceived.php 10
+ERROR - 2019-01-07 07:50:00 --> Severity: Warning --> Invalid argument supplied for foreach() C:\xampp\htdocs\ria\application\views\bankamountreceived.php 10
+ERROR - 2019-01-07 07:50:00 --> Severity: Notice --> Undefined variable: t C:\xampp\htdocs\ria\application\views\bankamountreceived.php 164
+ERROR - 2019-01-07 07:50:00 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankamountreceived.php 164
+ERROR - 2019-01-07 07:50:00 --> Severity: Notice --> Undefined variable: t C:\xampp\htdocs\ria\application\views\bankamountreceived.php 164
+ERROR - 2019-01-07 07:50:00 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankamountreceived.php 164
+ERROR - 2019-01-07 07:50:00 --> Severity: Notice --> Undefined variable: record C:\xampp\htdocs\ria\application\views\bankamountreceived.php 174
+ERROR - 2019-01-07 07:50:00 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankamountreceived.php 174
+ERROR - 2019-01-07 07:51:03 --> Severity: Notice --> Undefined variable: financialyear C:\xampp\htdocs\ria\application\views\bankamountreceived.php 10
+ERROR - 2019-01-07 07:51:03 --> Severity: Warning --> Invalid argument supplied for foreach() C:\xampp\htdocs\ria\application\views\bankamountreceived.php 10
+ERROR - 2019-01-07 07:51:03 --> Severity: Notice --> Undefined variable: t C:\xampp\htdocs\ria\application\views\bankamountreceived.php 164
+ERROR - 2019-01-07 07:51:04 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankamountreceived.php 164
+ERROR - 2019-01-07 07:51:04 --> Severity: Notice --> Undefined variable: t C:\xampp\htdocs\ria\application\views\bankamountreceived.php 164
+ERROR - 2019-01-07 07:51:04 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankamountreceived.php 164
+ERROR - 2019-01-07 07:51:04 --> Severity: Notice --> Undefined variable: record C:\xampp\htdocs\ria\application\views\bankamountreceived.php 174
+ERROR - 2019-01-07 07:51:04 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankamountreceived.php 174
+ERROR - 2019-01-07 07:51:20 --> Severity: Notice --> Undefined variable: financialyear C:\xampp\htdocs\ria\application\views\bankamountreceived.php 10
+ERROR - 2019-01-07 07:51:20 --> Severity: Warning --> Invalid argument supplied for foreach() C:\xampp\htdocs\ria\application\views\bankamountreceived.php 10
+ERROR - 2019-01-07 07:51:20 --> Severity: Notice --> Undefined variable: t C:\xampp\htdocs\ria\application\views\bankamountreceived.php 164
+ERROR - 2019-01-07 07:51:20 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankamountreceived.php 164
+ERROR - 2019-01-07 07:51:20 --> Severity: Notice --> Undefined variable: t C:\xampp\htdocs\ria\application\views\bankamountreceived.php 164
+ERROR - 2019-01-07 07:51:20 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankamountreceived.php 164
+ERROR - 2019-01-07 07:51:20 --> Severity: Notice --> Undefined variable: record C:\xampp\htdocs\ria\application\views\bankamountreceived.php 174
+ERROR - 2019-01-07 07:51:20 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankamountreceived.php 174
+ERROR - 2019-01-07 07:51:25 --> Severity: Notice --> Undefined variable: financialyear C:\xampp\htdocs\ria\application\views\bankamountreceived.php 10
+ERROR - 2019-01-07 07:51:25 --> Severity: Warning --> Invalid argument supplied for foreach() C:\xampp\htdocs\ria\application\views\bankamountreceived.php 10
+ERROR - 2019-01-07 07:51:25 --> Severity: Notice --> Undefined variable: t C:\xampp\htdocs\ria\application\views\bankamountreceived.php 164
+ERROR - 2019-01-07 07:51:25 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankamountreceived.php 164
+ERROR - 2019-01-07 07:51:25 --> Severity: Notice --> Undefined variable: t C:\xampp\htdocs\ria\application\views\bankamountreceived.php 164
+ERROR - 2019-01-07 07:51:25 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankamountreceived.php 164
+ERROR - 2019-01-07 07:51:25 --> Severity: Notice --> Undefined variable: record C:\xampp\htdocs\ria\application\views\bankamountreceived.php 174
+ERROR - 2019-01-07 07:51:25 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankamountreceived.php 174
+ERROR - 2019-01-07 07:52:15 --> Severity: Notice --> Undefined variable: financialyear C:\xampp\htdocs\ria\application\views\bankamountreceived.php 10
+ERROR - 2019-01-07 07:52:15 --> Severity: Warning --> Invalid argument supplied for foreach() C:\xampp\htdocs\ria\application\views\bankamountreceived.php 10
+ERROR - 2019-01-07 07:52:15 --> Severity: Notice --> Undefined variable: t C:\xampp\htdocs\ria\application\views\bankamountreceived.php 164
+ERROR - 2019-01-07 07:52:15 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankamountreceived.php 164
+ERROR - 2019-01-07 07:52:15 --> Severity: Notice --> Undefined variable: t C:\xampp\htdocs\ria\application\views\bankamountreceived.php 164
+ERROR - 2019-01-07 07:52:15 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankamountreceived.php 164
+ERROR - 2019-01-07 07:52:15 --> Severity: Notice --> Undefined variable: record C:\xampp\htdocs\ria\application\views\bankamountreceived.php 174
+ERROR - 2019-01-07 07:52:15 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankamountreceived.php 174
+ERROR - 2019-01-07 07:53:27 --> Severity: Notice --> Undefined variable: financialyear C:\xampp\htdocs\ria\application\views\bankinvoice.php 2
+ERROR - 2019-01-07 07:53:27 --> Severity: Warning --> Invalid argument supplied for foreach() C:\xampp\htdocs\ria\application\views\bankinvoice.php 2
+ERROR - 2019-01-07 07:53:27 --> Severity: Notice --> Undefined variable: cash C:\xampp\htdocs\ria\application\views\bankinvoice.php 84
+ERROR - 2019-01-07 07:53:28 --> Severity: Notice --> Undefined variable: bankid C:\xampp\htdocs\ria\application\views\bankinvoice.php 86
+ERROR - 2019-01-07 07:53:28 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 180
+ERROR - 2019-01-07 07:53:28 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 181
+ERROR - 2019-01-07 07:53:28 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 180
+ERROR - 2019-01-07 07:53:28 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 181
+ERROR - 2019-01-07 07:55:59 --> Severity: Notice --> Undefined variable: financialyear C:\xampp\htdocs\ria\application\views\bankinvoice.php 2
+ERROR - 2019-01-07 07:55:59 --> Severity: Warning --> Invalid argument supplied for foreach() C:\xampp\htdocs\ria\application\views\bankinvoice.php 2
+ERROR - 2019-01-07 07:55:59 --> Severity: Notice --> Undefined variable: cash C:\xampp\htdocs\ria\application\views\bankinvoice.php 84
+ERROR - 2019-01-07 07:55:59 --> Severity: Notice --> Undefined variable: bankid C:\xampp\htdocs\ria\application\views\bankinvoice.php 86
+ERROR - 2019-01-07 07:56:08 --> Severity: Notice --> Undefined variable: financialyear C:\xampp\htdocs\ria\application\views\bankinvoice.php 2
+ERROR - 2019-01-07 07:56:08 --> Severity: Warning --> Invalid argument supplied for foreach() C:\xampp\htdocs\ria\application\views\bankinvoice.php 2
+ERROR - 2019-01-07 07:56:08 --> Severity: Notice --> Undefined variable: cash C:\xampp\htdocs\ria\application\views\bankinvoice.php 84
+ERROR - 2019-01-07 07:56:08 --> Severity: Notice --> Undefined variable: bankid C:\xampp\htdocs\ria\application\views\bankinvoice.php 86
+ERROR - 2019-01-07 07:56:08 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 180
+ERROR - 2019-01-07 07:56:08 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 181
+ERROR - 2019-01-07 07:56:08 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 193
+ERROR - 2019-01-07 07:56:08 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 193
+ERROR - 2019-01-07 07:56:08 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 180
+ERROR - 2019-01-07 07:56:08 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 181
+ERROR - 2019-01-07 07:56:08 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 193
+ERROR - 2019-01-07 07:56:08 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 193
+ERROR - 2019-01-07 08:10:09 --> Severity: Notice --> Undefined variable: data C:\xampp\htdocs\ria\application\controllers\cashbook.php 2341
+ERROR - 2019-01-07 08:10:09 --> Severity: Notice --> Undefined variable: financialyear C:\xampp\htdocs\ria\application\views\bankstatement.php 2
+ERROR - 2019-01-07 08:10:09 --> Severity: Warning --> Invalid argument supplied for foreach() C:\xampp\htdocs\ria\application\views\bankstatement.php 2
+ERROR - 2019-01-07 08:10:09 --> Severity: Notice --> Undefined variable: bankreport C:\xampp\htdocs\ria\application\views\bankstatement.php 8
+ERROR - 2019-01-07 08:10:09 --> Severity: Warning --> Invalid argument supplied for foreach() C:\xampp\htdocs\ria\application\views\bankstatement.php 8
+ERROR - 2019-01-07 08:10:09 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 87
+ERROR - 2019-01-07 08:10:09 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 87
+ERROR - 2019-01-07 08:10:10 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 88
+ERROR - 2019-01-07 08:10:10 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 88
+ERROR - 2019-01-07 08:10:10 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 89
+ERROR - 2019-01-07 08:10:10 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 89
+ERROR - 2019-01-07 08:10:10 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 139
+ERROR - 2019-01-07 08:10:10 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 139
+ERROR - 2019-01-07 08:10:10 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 140
+ERROR - 2019-01-07 08:10:10 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 140
+ERROR - 2019-01-07 08:10:10 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 141
+ERROR - 2019-01-07 08:10:10 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 141
+ERROR - 2019-01-07 08:10:10 --> Severity: Notice --> Undefined variable: finyear C:\xampp\htdocs\ria\application\views\bankstatement.php 199
+ERROR - 2019-01-07 08:10:10 --> Severity: Warning --> Invalid argument supplied for foreach() C:\xampp\htdocs\ria\application\views\bankstatement.php 199
+ERROR - 2019-01-07 08:10:10 --> Severity: Notice --> Undefined variable: Bankname C:\xampp\htdocs\ria\application\views\bankstatement.php 237
+ERROR - 2019-01-07 08:10:11 --> Severity: Notice --> Undefined variable: fdate C:\xampp\htdocs\ria\application\controllers\cashbook.php 1738
+ERROR - 2019-01-07 08:10:11 --> Severity: Notice --> Undefined variable: tdate C:\xampp\htdocs\ria\application\controllers\cashbook.php 1738
+ERROR - 2019-01-07 08:10:11 --> Severity: Notice --> Undefined variable: fa C:\xampp\htdocs\ria\application\controllers\cashbook.php 1738
+ERROR - 2019-01-07 08:10:11 --> Severity: Notice --> Undefined variable: aa C:\xampp\htdocs\ria\application\controllers\cashbook.php 1738
+ERROR - 2019-01-07 08:10:11 --> Severity: Notice --> Undefined variable: financialyear C:\xampp\htdocs\ria\application\views\bankstatement.php 2
+ERROR - 2019-01-07 08:10:11 --> Severity: Warning --> Invalid argument supplied for foreach() C:\xampp\htdocs\ria\application\views\bankstatement.php 2
+ERROR - 2019-01-07 08:10:11 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 87
+ERROR - 2019-01-07 08:10:12 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 87
+ERROR - 2019-01-07 08:10:12 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 88
+ERROR - 2019-01-07 08:10:12 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 88
+ERROR - 2019-01-07 08:10:12 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 89
+ERROR - 2019-01-07 08:10:12 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 89
+ERROR - 2019-01-07 08:10:12 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 139
+ERROR - 2019-01-07 08:10:12 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 139
+ERROR - 2019-01-07 08:10:12 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 140
+ERROR - 2019-01-07 08:10:12 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 140
+ERROR - 2019-01-07 08:10:12 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 141
+ERROR - 2019-01-07 08:10:12 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 141
+ERROR - 2019-01-07 08:10:35 --> Severity: Notice --> Undefined variable: financialyear C:\xampp\htdocs\ria\application\views\bankinvoice.php 2
+ERROR - 2019-01-07 08:10:35 --> Severity: Warning --> Invalid argument supplied for foreach() C:\xampp\htdocs\ria\application\views\bankinvoice.php 2
+ERROR - 2019-01-07 08:10:35 --> Severity: Notice --> Undefined variable: cash C:\xampp\htdocs\ria\application\views\bankinvoice.php 84
+ERROR - 2019-01-07 08:10:35 --> Severity: Notice --> Undefined variable: bankid C:\xampp\htdocs\ria\application\views\bankinvoice.php 86
+ERROR - 2019-01-07 08:10:40 --> Severity: Notice --> Undefined variable: financialyear C:\xampp\htdocs\ria\application\views\bankinvoice.php 2
+ERROR - 2019-01-07 08:10:40 --> Severity: Warning --> Invalid argument supplied for foreach() C:\xampp\htdocs\ria\application\views\bankinvoice.php 2
+ERROR - 2019-01-07 08:10:40 --> Severity: Notice --> Undefined variable: cash C:\xampp\htdocs\ria\application\views\bankinvoice.php 84
+ERROR - 2019-01-07 08:10:40 --> Severity: Notice --> Undefined variable: bankid C:\xampp\htdocs\ria\application\views\bankinvoice.php 86
+ERROR - 2019-01-07 08:10:40 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 180
+ERROR - 2019-01-07 08:10:40 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 181
+ERROR - 2019-01-07 08:10:40 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 193
+ERROR - 2019-01-07 08:10:40 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 193
+ERROR - 2019-01-07 08:10:40 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 180
+ERROR - 2019-01-07 08:10:40 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 181
+ERROR - 2019-01-07 08:10:40 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 193
+ERROR - 2019-01-07 08:10:40 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 193
+ERROR - 2019-01-07 08:10:57 --> Severity: Notice --> Undefined variable: fdate C:\xampp\htdocs\ria\application\controllers\cashbook.php 1738
+ERROR - 2019-01-07 08:10:57 --> Severity: Notice --> Undefined variable: tdate C:\xampp\htdocs\ria\application\controllers\cashbook.php 1738
+ERROR - 2019-01-07 08:10:57 --> Severity: Notice --> Undefined variable: fa C:\xampp\htdocs\ria\application\controllers\cashbook.php 1738
+ERROR - 2019-01-07 08:10:57 --> Severity: Notice --> Undefined variable: aa C:\xampp\htdocs\ria\application\controllers\cashbook.php 1738
+ERROR - 2019-01-07 08:10:57 --> Severity: Notice --> Undefined variable: financialyear C:\xampp\htdocs\ria\application\views\bankstatement.php 2
+ERROR - 2019-01-07 08:10:57 --> Severity: Warning --> Invalid argument supplied for foreach() C:\xampp\htdocs\ria\application\views\bankstatement.php 2
+ERROR - 2019-01-07 08:10:57 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 87
+ERROR - 2019-01-07 08:10:57 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 87
+ERROR - 2019-01-07 08:10:57 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 88
+ERROR - 2019-01-07 08:10:58 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 88
+ERROR - 2019-01-07 08:10:58 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 89
+ERROR - 2019-01-07 08:10:58 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 89
+ERROR - 2019-01-07 08:10:58 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 139
+ERROR - 2019-01-07 08:10:58 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 139
+ERROR - 2019-01-07 08:10:58 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 140
+ERROR - 2019-01-07 08:10:58 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 140
+ERROR - 2019-01-07 08:10:58 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 141
+ERROR - 2019-01-07 08:10:58 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 141
+ERROR - 2019-01-07 08:11:09 --> Severity: Notice --> Undefined variable: financialyear C:\xampp\htdocs\ria\application\views\bankinvoicesettlement.php 7
+ERROR - 2019-01-07 08:11:09 --> Severity: Warning --> Invalid argument supplied for foreach() C:\xampp\htdocs\ria\application\views\bankinvoicesettlement.php 7
+ERROR - 2019-01-07 08:11:09 --> Severity: Notice --> Undefined variable: record C:\xampp\htdocs\ria\application\views\bankinvoicesettlement.php 180
+ERROR - 2019-01-07 08:11:10 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoicesettlement.php 180
+ERROR - 2019-01-07 08:12:05 --> Severity: Notice --> Undefined variable: financialyear C:\xampp\htdocs\ria\application\views\bankinvoice.php 2
+ERROR - 2019-01-07 08:12:05 --> Severity: Warning --> Invalid argument supplied for foreach() C:\xampp\htdocs\ria\application\views\bankinvoice.php 2
+ERROR - 2019-01-07 08:12:05 --> Severity: Notice --> Undefined variable: cash C:\xampp\htdocs\ria\application\views\bankinvoice.php 84
+ERROR - 2019-01-07 08:12:05 --> Severity: Notice --> Undefined variable: bankid C:\xampp\htdocs\ria\application\views\bankinvoice.php 86
+ERROR - 2019-01-07 08:12:24 --> Severity: Warning --> mysqli_connect(): (HY000/2002): An established connection was aborted by the software in your host machine.
+ C:\xampp\htdocs\ria\system\database\drivers\mysqli\mysqli_driver.php 77
+ERROR - 2019-01-07 08:12:24 --> Unable to connect to the database
+ERROR - 2019-01-07 08:13:27 --> Severity: Notice --> Undefined variable: financialyear C:\xampp\htdocs\ria\application\views\bankinvoice.php 2
+ERROR - 2019-01-07 08:13:27 --> Severity: Warning --> Invalid argument supplied for foreach() C:\xampp\htdocs\ria\application\views\bankinvoice.php 2
+ERROR - 2019-01-07 08:13:27 --> Severity: Notice --> Undefined variable: cash C:\xampp\htdocs\ria\application\views\bankinvoice.php 84
+ERROR - 2019-01-07 08:13:27 --> Severity: Notice --> Undefined variable: bankid C:\xampp\htdocs\ria\application\views\bankinvoice.php 86
+ERROR - 2019-01-07 08:13:35 --> Severity: Notice --> Undefined variable: financialyear C:\xampp\htdocs\ria\application\views\bankinvoice.php 2
+ERROR - 2019-01-07 08:13:35 --> Severity: Warning --> Invalid argument supplied for foreach() C:\xampp\htdocs\ria\application\views\bankinvoice.php 2
+ERROR - 2019-01-07 08:13:35 --> Severity: Notice --> Undefined variable: cash C:\xampp\htdocs\ria\application\views\bankinvoice.php 84
+ERROR - 2019-01-07 08:13:35 --> Severity: Notice --> Undefined variable: bankid C:\xampp\htdocs\ria\application\views\bankinvoice.php 86
+ERROR - 2019-01-07 08:13:35 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 180
+ERROR - 2019-01-07 08:13:35 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 181
+ERROR - 2019-01-07 08:13:35 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 193
+ERROR - 2019-01-07 08:13:35 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 193
+ERROR - 2019-01-07 08:13:35 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 180
+ERROR - 2019-01-07 08:13:35 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 181
+ERROR - 2019-01-07 08:13:35 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 193
+ERROR - 2019-01-07 08:13:35 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 193
+ERROR - 2019-01-07 08:14:10 --> Severity: Notice --> Undefined variable: fdate C:\xampp\htdocs\ria\application\controllers\cashbook.php 1738
+ERROR - 2019-01-07 08:14:10 --> Severity: Notice --> Undefined variable: tdate C:\xampp\htdocs\ria\application\controllers\cashbook.php 1738
+ERROR - 2019-01-07 08:14:10 --> Severity: Notice --> Undefined variable: fa C:\xampp\htdocs\ria\application\controllers\cashbook.php 1738
+ERROR - 2019-01-07 08:14:10 --> Severity: Notice --> Undefined variable: aa C:\xampp\htdocs\ria\application\controllers\cashbook.php 1738
+ERROR - 2019-01-07 08:14:13 --> Severity: Notice --> Undefined variable: financialyear C:\xampp\htdocs\ria\application\views\bankstatement.php 2
+ERROR - 2019-01-07 08:14:13 --> Severity: Warning --> Invalid argument supplied for foreach() C:\xampp\htdocs\ria\application\views\bankstatement.php 2
+ERROR - 2019-01-07 08:14:13 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 87
+ERROR - 2019-01-07 08:14:13 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 87
+ERROR - 2019-01-07 08:14:13 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 88
+ERROR - 2019-01-07 08:14:13 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 88
+ERROR - 2019-01-07 08:14:13 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 89
+ERROR - 2019-01-07 08:14:13 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 89
+ERROR - 2019-01-07 08:14:13 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 139
+ERROR - 2019-01-07 08:14:13 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 139
+ERROR - 2019-01-07 08:14:13 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 140
+ERROR - 2019-01-07 08:14:13 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 140
+ERROR - 2019-01-07 08:14:13 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 141
+ERROR - 2019-01-07 08:14:13 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 141
+ERROR - 2019-01-07 08:14:27 --> Severity: Notice --> Undefined variable: financialyear C:\xampp\htdocs\ria\application\views\bankinvoicesettlement.php 7
+ERROR - 2019-01-07 08:14:27 --> Severity: Warning --> Invalid argument supplied for foreach() C:\xampp\htdocs\ria\application\views\bankinvoicesettlement.php 7
+ERROR - 2019-01-07 08:14:27 --> Severity: Notice --> Undefined variable: record C:\xampp\htdocs\ria\application\views\bankinvoicesettlement.php 180
+ERROR - 2019-01-07 08:14:27 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoicesettlement.php 180
+ERROR - 2019-01-07 08:16:26 --> Severity: Notice --> Undefined variable: financialyear C:\xampp\htdocs\ria\application\views\bankinvoice.php 2
+ERROR - 2019-01-07 08:16:26 --> Severity: Warning --> Invalid argument supplied for foreach() C:\xampp\htdocs\ria\application\views\bankinvoice.php 2
+ERROR - 2019-01-07 08:16:26 --> Severity: Notice --> Undefined variable: cash C:\xampp\htdocs\ria\application\views\bankinvoice.php 84
+ERROR - 2019-01-07 08:16:26 --> Severity: Notice --> Undefined variable: bankid C:\xampp\htdocs\ria\application\views\bankinvoice.php 86
+ERROR - 2019-01-07 08:16:33 --> Severity: Notice --> Undefined variable: financialyear C:\xampp\htdocs\ria\application\views\bankinvoice.php 2
+ERROR - 2019-01-07 08:16:33 --> Severity: Warning --> Invalid argument supplied for foreach() C:\xampp\htdocs\ria\application\views\bankinvoice.php 2
+ERROR - 2019-01-07 08:16:33 --> Severity: Notice --> Undefined variable: cash C:\xampp\htdocs\ria\application\views\bankinvoice.php 84
+ERROR - 2019-01-07 08:16:33 --> Severity: Notice --> Undefined variable: bankid C:\xampp\htdocs\ria\application\views\bankinvoice.php 86
+ERROR - 2019-01-07 08:16:33 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 180
+ERROR - 2019-01-07 08:16:33 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 181
+ERROR - 2019-01-07 08:16:33 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 193
+ERROR - 2019-01-07 08:16:33 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 193
+ERROR - 2019-01-07 08:16:33 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 180
+ERROR - 2019-01-07 08:16:33 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 181
+ERROR - 2019-01-07 08:16:33 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 193
+ERROR - 2019-01-07 08:16:33 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 193
+ERROR - 2019-01-07 08:16:56 --> Severity: Notice --> Undefined variable: fdate C:\xampp\htdocs\ria\application\controllers\cashbook.php 1738
+ERROR - 2019-01-07 08:16:56 --> Severity: Notice --> Undefined variable: tdate C:\xampp\htdocs\ria\application\controllers\cashbook.php 1738
+ERROR - 2019-01-07 08:16:56 --> Severity: Notice --> Undefined variable: fa C:\xampp\htdocs\ria\application\controllers\cashbook.php 1738
+ERROR - 2019-01-07 08:16:56 --> Severity: Notice --> Undefined variable: aa C:\xampp\htdocs\ria\application\controllers\cashbook.php 1738
+ERROR - 2019-01-07 08:16:56 --> Severity: Notice --> Undefined variable: financialyear C:\xampp\htdocs\ria\application\views\bankstatement.php 2
+ERROR - 2019-01-07 08:16:56 --> Severity: Warning --> Invalid argument supplied for foreach() C:\xampp\htdocs\ria\application\views\bankstatement.php 2
+ERROR - 2019-01-07 08:16:56 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 87
+ERROR - 2019-01-07 08:16:56 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 87
+ERROR - 2019-01-07 08:16:56 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 88
+ERROR - 2019-01-07 08:16:56 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 88
+ERROR - 2019-01-07 08:16:56 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 89
+ERROR - 2019-01-07 08:16:57 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 89
+ERROR - 2019-01-07 08:16:57 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 139
+ERROR - 2019-01-07 08:16:57 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 139
+ERROR - 2019-01-07 08:16:57 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 140
+ERROR - 2019-01-07 08:16:57 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 140
+ERROR - 2019-01-07 08:16:57 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 141
+ERROR - 2019-01-07 08:16:57 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 141
+ERROR - 2019-01-07 08:17:08 --> Severity: Notice --> Undefined variable: financialyear C:\xampp\htdocs\ria\application\views\bankinvoicesettlement.php 7
+ERROR - 2019-01-07 08:17:08 --> Severity: Warning --> Invalid argument supplied for foreach() C:\xampp\htdocs\ria\application\views\bankinvoicesettlement.php 7
+ERROR - 2019-01-07 08:17:08 --> Severity: Notice --> Undefined variable: record C:\xampp\htdocs\ria\application\views\bankinvoicesettlement.php 180
+ERROR - 2019-01-07 08:17:08 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoicesettlement.php 180
+ERROR - 2019-01-07 08:17:08 --> Severity: Notice --> Undefined variable: record C:\xampp\htdocs\ria\application\views\bankinvoicesettlement.php 180
+ERROR - 2019-01-07 08:17:08 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoicesettlement.php 180
+ERROR - 2019-01-07 08:17:23 --> Severity: Notice --> Undefined variable: data C:\xampp\htdocs\ria\application\controllers\cashbook.php 2341
+ERROR - 2019-01-07 08:17:24 --> Severity: Notice --> Undefined variable: financialyear C:\xampp\htdocs\ria\application\views\bankstatement.php 2
+ERROR - 2019-01-07 08:17:24 --> Severity: Warning --> Invalid argument supplied for foreach() C:\xampp\htdocs\ria\application\views\bankstatement.php 2
+ERROR - 2019-01-07 08:17:24 --> Severity: Notice --> Undefined variable: bankreport C:\xampp\htdocs\ria\application\views\bankstatement.php 8
+ERROR - 2019-01-07 08:17:24 --> Severity: Warning --> Invalid argument supplied for foreach() C:\xampp\htdocs\ria\application\views\bankstatement.php 8
+ERROR - 2019-01-07 08:17:24 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 87
+ERROR - 2019-01-07 08:17:24 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 87
+ERROR - 2019-01-07 08:17:24 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 88
+ERROR - 2019-01-07 08:17:24 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 88
+ERROR - 2019-01-07 08:17:24 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 89
+ERROR - 2019-01-07 08:17:24 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 89
+ERROR - 2019-01-07 08:17:24 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 139
+ERROR - 2019-01-07 08:17:24 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 139
+ERROR - 2019-01-07 08:17:24 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 140
+ERROR - 2019-01-07 08:17:24 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 140
+ERROR - 2019-01-07 08:17:24 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 141
+ERROR - 2019-01-07 08:17:24 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 141
+ERROR - 2019-01-07 08:17:24 --> Severity: Notice --> Undefined variable: finyear C:\xampp\htdocs\ria\application\views\bankstatement.php 199
+ERROR - 2019-01-07 08:17:24 --> Severity: Warning --> Invalid argument supplied for foreach() C:\xampp\htdocs\ria\application\views\bankstatement.php 199
+ERROR - 2019-01-07 08:17:24 --> Severity: Notice --> Undefined variable: Bankname C:\xampp\htdocs\ria\application\views\bankstatement.php 237
+ERROR - 2019-01-07 08:17:25 --> Severity: Notice --> Undefined variable: fdate C:\xampp\htdocs\ria\application\controllers\cashbook.php 1738
+ERROR - 2019-01-07 08:17:25 --> Severity: Notice --> Undefined variable: tdate C:\xampp\htdocs\ria\application\controllers\cashbook.php 1738
+ERROR - 2019-01-07 08:17:25 --> Severity: Notice --> Undefined variable: fa C:\xampp\htdocs\ria\application\controllers\cashbook.php 1738
+ERROR - 2019-01-07 08:17:25 --> Severity: Notice --> Undefined variable: aa C:\xampp\htdocs\ria\application\controllers\cashbook.php 1738
+ERROR - 2019-01-07 08:17:26 --> Severity: Notice --> Undefined variable: financialyear C:\xampp\htdocs\ria\application\views\bankstatement.php 2
+ERROR - 2019-01-07 08:17:26 --> Severity: Warning --> Invalid argument supplied for foreach() C:\xampp\htdocs\ria\application\views\bankstatement.php 2
+ERROR - 2019-01-07 08:17:26 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 87
+ERROR - 2019-01-07 08:17:26 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 87
+ERROR - 2019-01-07 08:17:26 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 88
+ERROR - 2019-01-07 08:17:26 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 88
+ERROR - 2019-01-07 08:17:26 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 89
+ERROR - 2019-01-07 08:17:26 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 89
+ERROR - 2019-01-07 08:17:26 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 139
+ERROR - 2019-01-07 08:17:26 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 139
+ERROR - 2019-01-07 08:17:26 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 140
+ERROR - 2019-01-07 08:17:26 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 140
+ERROR - 2019-01-07 08:17:26 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 141
+ERROR - 2019-01-07 08:17:26 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 141
+ERROR - 2019-01-07 08:17:47 --> Severity: Notice --> Undefined variable: financialyear C:\xampp\htdocs\ria\application\views\bankinvoice.php 2
+ERROR - 2019-01-07 08:17:48 --> Severity: Warning --> Invalid argument supplied for foreach() C:\xampp\htdocs\ria\application\views\bankinvoice.php 2
+ERROR - 2019-01-07 08:17:48 --> Severity: Notice --> Undefined variable: cash C:\xampp\htdocs\ria\application\views\bankinvoice.php 84
+ERROR - 2019-01-07 08:17:48 --> Severity: Notice --> Undefined variable: bankid C:\xampp\htdocs\ria\application\views\bankinvoice.php 86
+ERROR - 2019-01-07 08:17:56 --> Severity: Notice --> Undefined variable: financialyear C:\xampp\htdocs\ria\application\views\bankinvoice.php 2
+ERROR - 2019-01-07 08:17:56 --> Severity: Warning --> Invalid argument supplied for foreach() C:\xampp\htdocs\ria\application\views\bankinvoice.php 2
+ERROR - 2019-01-07 08:17:56 --> Severity: Notice --> Undefined variable: cash C:\xampp\htdocs\ria\application\views\bankinvoice.php 84
+ERROR - 2019-01-07 08:17:56 --> Severity: Notice --> Undefined variable: bankid C:\xampp\htdocs\ria\application\views\bankinvoice.php 86
+ERROR - 2019-01-07 08:17:56 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 180
+ERROR - 2019-01-07 08:17:56 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 181
+ERROR - 2019-01-07 08:17:56 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 193
+ERROR - 2019-01-07 08:17:56 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 193
+ERROR - 2019-01-07 08:17:56 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 180
+ERROR - 2019-01-07 08:17:56 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 181
+ERROR - 2019-01-07 08:17:56 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 193
+ERROR - 2019-01-07 08:17:56 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 193
+ERROR - 2019-01-07 08:17:56 --> Severity: Notice --> Undefined variable: financialyear C:\xampp\htdocs\ria\application\views\bankinvoice.php 2
+ERROR - 2019-01-07 08:17:56 --> Severity: Warning --> Invalid argument supplied for foreach() C:\xampp\htdocs\ria\application\views\bankinvoice.php 2
+ERROR - 2019-01-07 08:17:56 --> Severity: Notice --> Undefined variable: cash C:\xampp\htdocs\ria\application\views\bankinvoice.php 84
+ERROR - 2019-01-07 08:17:56 --> Severity: Notice --> Undefined variable: bankid C:\xampp\htdocs\ria\application\views\bankinvoice.php 86
+ERROR - 2019-01-07 08:17:56 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 180
+ERROR - 2019-01-07 08:17:56 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 181
+ERROR - 2019-01-07 08:17:57 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 193
+ERROR - 2019-01-07 08:17:57 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 193
+ERROR - 2019-01-07 08:17:57 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 180
+ERROR - 2019-01-07 08:17:57 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 181
+ERROR - 2019-01-07 08:17:57 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 193
+ERROR - 2019-01-07 08:17:57 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 193
diff --git a/application/logs/log-2019-01-08.php b/application/logs/log-2019-01-08.php
new file mode 100644
index 00000000..4bdb5abd
--- /dev/null
+++ b/application/logs/log-2019-01-08.php
@@ -0,0 +1,1935 @@
+
+
+ERROR - 2019-01-08 06:23:30 --> Severity: Notice --> Undefined variable: fdate C:\xampp\htdocs\ria\application\controllers\cashbook.php 1738
+ERROR - 2019-01-08 06:23:31 --> Severity: Notice --> Undefined variable: tdate C:\xampp\htdocs\ria\application\controllers\cashbook.php 1738
+ERROR - 2019-01-08 06:23:31 --> Severity: Notice --> Undefined variable: fa C:\xampp\htdocs\ria\application\controllers\cashbook.php 1738
+ERROR - 2019-01-08 06:23:31 --> Severity: Notice --> Undefined variable: aa C:\xampp\htdocs\ria\application\controllers\cashbook.php 1738
+ERROR - 2019-01-08 06:23:31 --> Severity: Notice --> Undefined variable: financialyear C:\xampp\htdocs\ria\application\views\bankstatement.php 2
+ERROR - 2019-01-08 06:23:31 --> Severity: Warning --> Invalid argument supplied for foreach() C:\xampp\htdocs\ria\application\views\bankstatement.php 2
+ERROR - 2019-01-08 06:23:31 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 87
+ERROR - 2019-01-08 06:23:31 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 87
+ERROR - 2019-01-08 06:23:31 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 88
+ERROR - 2019-01-08 06:23:31 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 88
+ERROR - 2019-01-08 06:23:31 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 89
+ERROR - 2019-01-08 06:23:31 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 89
+ERROR - 2019-01-08 06:23:31 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 139
+ERROR - 2019-01-08 06:23:31 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 139
+ERROR - 2019-01-08 06:23:31 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 140
+ERROR - 2019-01-08 06:23:31 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 140
+ERROR - 2019-01-08 06:23:31 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 141
+ERROR - 2019-01-08 06:23:31 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 141
+ERROR - 2019-01-08 06:23:43 --> Severity: Notice --> Undefined variable: financialyear C:\xampp\htdocs\ria\application\views\bankdebit.php 2
+ERROR - 2019-01-08 06:23:43 --> Severity: Warning --> Invalid argument supplied for foreach() C:\xampp\htdocs\ria\application\views\bankdebit.php 2
+ERROR - 2019-01-08 06:23:49 --> Severity: Notice --> Undefined variable: financialyear C:\xampp\htdocs\ria\application\views\bankdebit.php 2
+ERROR - 2019-01-08 06:23:49 --> Severity: Warning --> Invalid argument supplied for foreach() C:\xampp\htdocs\ria\application\views\bankdebit.php 2
+ERROR - 2019-01-08 06:23:49 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankdebit.php 167
+ERROR - 2019-01-08 06:23:49 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\ria\application\views\bankdebit.php 169
+ERROR - 2019-01-08 06:23:49 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankdebit.php 167
+ERROR - 2019-01-08 06:23:49 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\ria\application\views\bankdebit.php 169
+ERROR - 2019-01-08 06:23:50 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankdebit.php 167
+ERROR - 2019-01-08 06:23:50 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\ria\application\views\bankdebit.php 169
+ERROR - 2019-01-08 06:23:50 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankdebit.php 167
+ERROR - 2019-01-08 06:23:50 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\ria\application\views\bankdebit.php 169
+ERROR - 2019-01-08 06:23:50 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankdebit.php 167
+ERROR - 2019-01-08 06:23:50 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\ria\application\views\bankdebit.php 169
+ERROR - 2019-01-08 06:23:50 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankdebit.php 167
+ERROR - 2019-01-08 06:23:50 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\ria\application\views\bankdebit.php 169
+ERROR - 2019-01-08 06:23:50 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankdebit.php 167
+ERROR - 2019-01-08 06:23:50 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\ria\application\views\bankdebit.php 169
+ERROR - 2019-01-08 06:23:50 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankdebit.php 167
+ERROR - 2019-01-08 06:23:50 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\ria\application\views\bankdebit.php 169
+ERROR - 2019-01-08 06:23:50 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankdebit.php 167
+ERROR - 2019-01-08 06:23:50 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\ria\application\views\bankdebit.php 169
+ERROR - 2019-01-08 06:23:50 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankdebit.php 167
+ERROR - 2019-01-08 06:23:50 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\ria\application\views\bankdebit.php 169
+ERROR - 2019-01-08 06:23:50 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankdebit.php 167
+ERROR - 2019-01-08 06:23:50 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\ria\application\views\bankdebit.php 169
+ERROR - 2019-01-08 06:23:50 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankdebit.php 167
+ERROR - 2019-01-08 06:23:50 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\ria\application\views\bankdebit.php 169
+ERROR - 2019-01-08 06:23:50 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankdebit.php 167
+ERROR - 2019-01-08 06:23:50 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\ria\application\views\bankdebit.php 169
+ERROR - 2019-01-08 06:23:50 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankdebit.php 167
+ERROR - 2019-01-08 06:23:50 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\ria\application\views\bankdebit.php 169
+ERROR - 2019-01-08 06:23:50 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankdebit.php 167
+ERROR - 2019-01-08 06:23:50 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\ria\application\views\bankdebit.php 169
+ERROR - 2019-01-08 06:23:50 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankdebit.php 167
+ERROR - 2019-01-08 06:23:50 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\ria\application\views\bankdebit.php 169
+ERROR - 2019-01-08 06:23:50 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankdebit.php 167
+ERROR - 2019-01-08 06:23:50 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\ria\application\views\bankdebit.php 169
+ERROR - 2019-01-08 06:23:50 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankdebit.php 167
+ERROR - 2019-01-08 06:23:51 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\ria\application\views\bankdebit.php 169
+ERROR - 2019-01-08 06:23:51 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankdebit.php 167
+ERROR - 2019-01-08 06:23:51 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\ria\application\views\bankdebit.php 169
+ERROR - 2019-01-08 06:23:51 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankdebit.php 167
+ERROR - 2019-01-08 06:23:51 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\ria\application\views\bankdebit.php 169
+ERROR - 2019-01-08 06:23:51 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankdebit.php 167
+ERROR - 2019-01-08 06:23:51 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\ria\application\views\bankdebit.php 169
+ERROR - 2019-01-08 06:23:51 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankdebit.php 167
+ERROR - 2019-01-08 06:23:51 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\ria\application\views\bankdebit.php 169
+ERROR - 2019-01-08 06:23:51 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankdebit.php 167
+ERROR - 2019-01-08 06:23:51 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\ria\application\views\bankdebit.php 169
+ERROR - 2019-01-08 06:23:51 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankdebit.php 167
+ERROR - 2019-01-08 06:23:51 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\ria\application\views\bankdebit.php 169
+ERROR - 2019-01-08 06:23:51 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankdebit.php 167
+ERROR - 2019-01-08 06:23:51 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\ria\application\views\bankdebit.php 169
+ERROR - 2019-01-08 06:23:51 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankdebit.php 167
+ERROR - 2019-01-08 06:23:51 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\ria\application\views\bankdebit.php 169
+ERROR - 2019-01-08 06:23:51 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankdebit.php 167
+ERROR - 2019-01-08 06:23:51 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\ria\application\views\bankdebit.php 169
+ERROR - 2019-01-08 06:23:52 --> Severity: Notice --> Undefined variable: financialyear C:\xampp\htdocs\ria\application\views\bankdebit.php 2
+ERROR - 2019-01-08 06:23:52 --> Severity: Warning --> Invalid argument supplied for foreach() C:\xampp\htdocs\ria\application\views\bankdebit.php 2
+ERROR - 2019-01-08 06:23:52 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankdebit.php 167
+ERROR - 2019-01-08 06:23:52 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\ria\application\views\bankdebit.php 169
+ERROR - 2019-01-08 06:23:52 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankdebit.php 167
+ERROR - 2019-01-08 06:23:52 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\ria\application\views\bankdebit.php 169
+ERROR - 2019-01-08 06:23:52 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankdebit.php 167
+ERROR - 2019-01-08 06:23:52 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\ria\application\views\bankdebit.php 169
+ERROR - 2019-01-08 06:23:52 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankdebit.php 167
+ERROR - 2019-01-08 06:23:52 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\ria\application\views\bankdebit.php 169
+ERROR - 2019-01-08 06:23:52 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankdebit.php 167
+ERROR - 2019-01-08 06:23:52 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\ria\application\views\bankdebit.php 169
+ERROR - 2019-01-08 06:23:52 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankdebit.php 167
+ERROR - 2019-01-08 06:23:52 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\ria\application\views\bankdebit.php 169
+ERROR - 2019-01-08 06:23:52 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankdebit.php 167
+ERROR - 2019-01-08 06:23:52 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\ria\application\views\bankdebit.php 169
+ERROR - 2019-01-08 06:23:52 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankdebit.php 167
+ERROR - 2019-01-08 06:23:52 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\ria\application\views\bankdebit.php 169
+ERROR - 2019-01-08 06:23:52 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankdebit.php 167
+ERROR - 2019-01-08 06:23:52 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\ria\application\views\bankdebit.php 169
+ERROR - 2019-01-08 06:23:52 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankdebit.php 167
+ERROR - 2019-01-08 06:23:52 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\ria\application\views\bankdebit.php 169
+ERROR - 2019-01-08 06:23:52 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankdebit.php 167
+ERROR - 2019-01-08 06:23:52 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\ria\application\views\bankdebit.php 169
+ERROR - 2019-01-08 06:23:53 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankdebit.php 167
+ERROR - 2019-01-08 06:23:53 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\ria\application\views\bankdebit.php 169
+ERROR - 2019-01-08 06:23:53 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankdebit.php 167
+ERROR - 2019-01-08 06:23:53 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\ria\application\views\bankdebit.php 169
+ERROR - 2019-01-08 06:23:53 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankdebit.php 167
+ERROR - 2019-01-08 06:23:53 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\ria\application\views\bankdebit.php 169
+ERROR - 2019-01-08 06:23:53 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankdebit.php 167
+ERROR - 2019-01-08 06:23:53 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\ria\application\views\bankdebit.php 169
+ERROR - 2019-01-08 06:23:53 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankdebit.php 167
+ERROR - 2019-01-08 06:23:53 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\ria\application\views\bankdebit.php 169
+ERROR - 2019-01-08 06:23:53 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankdebit.php 167
+ERROR - 2019-01-08 06:23:53 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\ria\application\views\bankdebit.php 169
+ERROR - 2019-01-08 06:23:53 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankdebit.php 167
+ERROR - 2019-01-08 06:23:53 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\ria\application\views\bankdebit.php 169
+ERROR - 2019-01-08 06:23:53 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankdebit.php 167
+ERROR - 2019-01-08 06:23:53 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\ria\application\views\bankdebit.php 169
+ERROR - 2019-01-08 06:23:53 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankdebit.php 167
+ERROR - 2019-01-08 06:23:53 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\ria\application\views\bankdebit.php 169
+ERROR - 2019-01-08 06:23:53 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankdebit.php 167
+ERROR - 2019-01-08 06:23:53 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\ria\application\views\bankdebit.php 169
+ERROR - 2019-01-08 06:23:53 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankdebit.php 167
+ERROR - 2019-01-08 06:23:53 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\ria\application\views\bankdebit.php 169
+ERROR - 2019-01-08 06:23:53 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankdebit.php 167
+ERROR - 2019-01-08 06:23:53 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\ria\application\views\bankdebit.php 169
+ERROR - 2019-01-08 06:23:53 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankdebit.php 167
+ERROR - 2019-01-08 06:23:53 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\ria\application\views\bankdebit.php 169
+ERROR - 2019-01-08 06:23:53 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankdebit.php 167
+ERROR - 2019-01-08 06:23:53 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\ria\application\views\bankdebit.php 169
+ERROR - 2019-01-08 06:23:53 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankdebit.php 167
+ERROR - 2019-01-08 06:23:53 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\ria\application\views\bankdebit.php 169
+ERROR - 2019-01-08 06:23:53 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankdebit.php 167
+ERROR - 2019-01-08 06:23:53 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\ria\application\views\bankdebit.php 169
+ERROR - 2019-01-08 06:25:13 --> Severity: Notice --> Undefined variable: balancetocleared C:\xampp\htdocs\ria\application\controllers\cashbook.php 1933
+ERROR - 2019-01-08 06:25:13 --> Severity: Notice --> Undefined variable: balancetocleared C:\xampp\htdocs\ria\application\controllers\cashbook.php 1933
+ERROR - 2019-01-08 06:25:13 --> Severity: Notice --> Undefined variable: balancetocleared C:\xampp\htdocs\ria\application\controllers\cashbook.php 1933
+ERROR - 2019-01-08 06:25:13 --> Severity: Notice --> Undefined variable: clearedblnce C:\xampp\htdocs\ria\application\controllers\cashbook.php 1942
+ERROR - 2019-01-08 06:25:13 --> Severity: Notice --> Undefined variable: clearedblnce C:\xampp\htdocs\ria\application\controllers\cashbook.php 1942
+ERROR - 2019-01-08 06:25:13 --> Severity: Notice --> Undefined variable: balancetocleared C:\xampp\htdocs\ria\application\controllers\cashbook.php 1933
+ERROR - 2019-01-08 06:25:13 --> Severity: Notice --> Undefined variable: balancetocleared C:\xampp\htdocs\ria\application\controllers\cashbook.php 1942
+ERROR - 2019-01-08 06:25:13 --> Severity: Notice --> Undefined variable: balancetocleared C:\xampp\htdocs\ria\application\controllers\cashbook.php 1933
+ERROR - 2019-01-08 06:25:13 --> Severity: Notice --> Undefined variable: clearedblnce C:\xampp\htdocs\ria\application\controllers\cashbook.php 1942
+ERROR - 2019-01-08 06:25:13 --> Severity: Notice --> Undefined variable: balancetocleared C:\xampp\htdocs\ria\application\controllers\cashbook.php 1942
+ERROR - 2019-01-08 06:25:13 --> Severity: Notice --> Undefined variable: clearedblnce C:\xampp\htdocs\ria\application\controllers\cashbook.php 1942
+ERROR - 2019-01-08 06:25:13 --> Severity: Notice --> Undefined variable: clearedblnce C:\xampp\htdocs\ria\application\controllers\cashbook.php 1942
+ERROR - 2019-01-08 06:25:13 --> Severity: Notice --> Undefined variable: balancetocleared C:\xampp\htdocs\ria\application\controllers\cashbook.php 1942
+ERROR - 2019-01-08 06:25:13 --> Severity: Notice --> Undefined variable: balancetocleared C:\xampp\htdocs\ria\application\controllers\cashbook.php 1942
+ERROR - 2019-01-08 06:25:13 --> Severity: Notice --> Undefined variable: balancetocleared C:\xampp\htdocs\ria\application\controllers\cashbook.php 1942
+ERROR - 2019-01-08 06:25:13 --> Severity: Notice --> Undefined variable: data C:\xampp\htdocs\ria\application\controllers\cashbook.php 2008
+ERROR - 2019-01-08 06:25:13 --> Severity: Notice --> Undefined variable: data C:\xampp\htdocs\ria\application\controllers\cashbook.php 2008
+ERROR - 2019-01-08 06:25:13 --> Severity: Notice --> Undefined variable: data C:\xampp\htdocs\ria\application\controllers\cashbook.php 2008
+ERROR - 2019-01-08 06:25:13 --> Severity: Notice --> Undefined variable: data C:\xampp\htdocs\ria\application\controllers\cashbook.php 2008
+ERROR - 2019-01-08 06:25:13 --> Severity: Notice --> Undefined variable: data C:\xampp\htdocs\ria\application\controllers\cashbook.php 2008
+ERROR - 2019-01-08 06:25:13 --> Severity: Notice --> Undefined variable: data C:\xampp\htdocs\ria\application\controllers\cashbook.php 2008
+ERROR - 2019-01-08 06:25:13 --> Severity: Notice --> Undefined variable: financialyear C:\xampp\htdocs\ria\application\views\bankstatement.php 2
+ERROR - 2019-01-08 06:25:13 --> Severity: Warning --> Invalid argument supplied for foreach() C:\xampp\htdocs\ria\application\views\bankstatement.php 2
+ERROR - 2019-01-08 06:25:13 --> Severity: Notice --> Undefined variable: financialyear C:\xampp\htdocs\ria\application\views\bankstatement.php 2
+ERROR - 2019-01-08 06:25:13 --> Severity: Notice --> Undefined variable: financialyear C:\xampp\htdocs\ria\application\views\bankstatement.php 2
+ERROR - 2019-01-08 06:25:13 --> Severity: Notice --> Undefined variable: financialyear C:\xampp\htdocs\ria\application\views\bankstatement.php 2
+ERROR - 2019-01-08 06:25:13 --> Severity: Notice --> Undefined variable: financialyear C:\xampp\htdocs\ria\application\views\bankstatement.php 2
+ERROR - 2019-01-08 06:25:13 --> Severity: Notice --> Undefined variable: bankreport C:\xampp\htdocs\ria\application\views\bankstatement.php 8
+ERROR - 2019-01-08 06:25:13 --> Severity: Notice --> Undefined variable: financialyear C:\xampp\htdocs\ria\application\views\bankstatement.php 2
+ERROR - 2019-01-08 06:25:13 --> Severity: Warning --> Invalid argument supplied for foreach() C:\xampp\htdocs\ria\application\views\bankstatement.php 2
+ERROR - 2019-01-08 06:25:13 --> Severity: Warning --> Invalid argument supplied for foreach() C:\xampp\htdocs\ria\application\views\bankstatement.php 2
+ERROR - 2019-01-08 06:25:13 --> Severity: Warning --> Invalid argument supplied for foreach() C:\xampp\htdocs\ria\application\views\bankstatement.php 2
+ERROR - 2019-01-08 06:25:13 --> Severity: Warning --> Invalid argument supplied for foreach() C:\xampp\htdocs\ria\application\views\bankstatement.php 2
+ERROR - 2019-01-08 06:25:13 --> Severity: Warning --> Invalid argument supplied for foreach() C:\xampp\htdocs\ria\application\views\bankstatement.php 2
+ERROR - 2019-01-08 06:25:13 --> Severity: Warning --> Invalid argument supplied for foreach() C:\xampp\htdocs\ria\application\views\bankstatement.php 8
+ERROR - 2019-01-08 06:25:13 --> Severity: Notice --> Undefined variable: bankreport C:\xampp\htdocs\ria\application\views\bankstatement.php 8
+ERROR - 2019-01-08 06:25:13 --> Severity: Notice --> Undefined variable: bankreport C:\xampp\htdocs\ria\application\views\bankstatement.php 8
+ERROR - 2019-01-08 06:25:13 --> Severity: Notice --> Undefined variable: bankreport C:\xampp\htdocs\ria\application\views\bankstatement.php 8
+ERROR - 2019-01-08 06:25:13 --> Severity: Notice --> Undefined variable: bankreport C:\xampp\htdocs\ria\application\views\bankstatement.php 8
+ERROR - 2019-01-08 06:25:13 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 87
+ERROR - 2019-01-08 06:25:13 --> Severity: Notice --> Undefined variable: bankreport C:\xampp\htdocs\ria\application\views\bankstatement.php 8
+ERROR - 2019-01-08 06:25:13 --> Severity: Warning --> Invalid argument supplied for foreach() C:\xampp\htdocs\ria\application\views\bankstatement.php 8
+ERROR - 2019-01-08 06:25:13 --> Severity: Warning --> Invalid argument supplied for foreach() C:\xampp\htdocs\ria\application\views\bankstatement.php 8
+ERROR - 2019-01-08 06:25:13 --> Severity: Warning --> Invalid argument supplied for foreach() C:\xampp\htdocs\ria\application\views\bankstatement.php 8
+ERROR - 2019-01-08 06:25:13 --> Severity: Warning --> Invalid argument supplied for foreach() C:\xampp\htdocs\ria\application\views\bankstatement.php 8
+ERROR - 2019-01-08 06:25:13 --> Severity: Warning --> Invalid argument supplied for foreach() C:\xampp\htdocs\ria\application\views\bankstatement.php 8
+ERROR - 2019-01-08 06:25:13 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 87
+ERROR - 2019-01-08 06:25:13 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 87
+ERROR - 2019-01-08 06:25:13 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 87
+ERROR - 2019-01-08 06:25:13 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 87
+ERROR - 2019-01-08 06:25:13 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 87
+ERROR - 2019-01-08 06:25:13 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 87
+ERROR - 2019-01-08 06:25:13 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 88
+ERROR - 2019-01-08 06:25:13 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 87
+ERROR - 2019-01-08 06:25:13 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 87
+ERROR - 2019-01-08 06:25:13 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 87
+ERROR - 2019-01-08 06:25:13 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 88
+ERROR - 2019-01-08 06:25:13 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 87
+ERROR - 2019-01-08 06:25:13 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 87
+ERROR - 2019-01-08 06:25:13 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 88
+ERROR - 2019-01-08 06:25:13 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 88
+ERROR - 2019-01-08 06:25:13 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 88
+ERROR - 2019-01-08 06:25:13 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 89
+ERROR - 2019-01-08 06:25:13 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 88
+ERROR - 2019-01-08 06:25:13 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 88
+ERROR - 2019-01-08 06:25:13 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 88
+ERROR - 2019-01-08 06:25:13 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 88
+ERROR - 2019-01-08 06:25:13 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 88
+ERROR - 2019-01-08 06:25:13 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 89
+ERROR - 2019-01-08 06:25:13 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 89
+ERROR - 2019-01-08 06:25:13 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 88
+ERROR - 2019-01-08 06:25:13 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 88
+ERROR - 2019-01-08 06:25:13 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 89
+ERROR - 2019-01-08 06:25:13 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 89
+ERROR - 2019-01-08 06:25:13 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 89
+ERROR - 2019-01-08 06:25:13 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 89
+ERROR - 2019-01-08 06:25:13 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 89
+ERROR - 2019-01-08 06:25:13 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 89
+ERROR - 2019-01-08 06:25:13 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 139
+ERROR - 2019-01-08 06:25:13 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 89
+ERROR - 2019-01-08 06:25:13 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 89
+ERROR - 2019-01-08 06:25:13 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 139
+ERROR - 2019-01-08 06:25:13 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 89
+ERROR - 2019-01-08 06:25:13 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 139
+ERROR - 2019-01-08 06:25:13 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 139
+ERROR - 2019-01-08 06:25:14 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 139
+ERROR - 2019-01-08 06:25:14 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 139
+ERROR - 2019-01-08 06:25:14 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 139
+ERROR - 2019-01-08 06:25:14 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 140
+ERROR - 2019-01-08 06:25:14 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 139
+ERROR - 2019-01-08 06:25:14 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 139
+ERROR - 2019-01-08 06:25:14 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 139
+ERROR - 2019-01-08 06:25:14 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 140
+ERROR - 2019-01-08 06:25:14 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 139
+ERROR - 2019-01-08 06:25:14 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 140
+ERROR - 2019-01-08 06:25:14 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 140
+ERROR - 2019-01-08 06:25:14 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 139
+ERROR - 2019-01-08 06:25:14 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 140
+ERROR - 2019-01-08 06:25:14 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 141
+ERROR - 2019-01-08 06:25:14 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 140
+ERROR - 2019-01-08 06:25:14 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 140
+ERROR - 2019-01-08 06:25:14 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 140
+ERROR - 2019-01-08 06:25:14 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 140
+ERROR - 2019-01-08 06:25:14 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 140
+ERROR - 2019-01-08 06:25:14 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 140
+ERROR - 2019-01-08 06:25:14 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 140
+ERROR - 2019-01-08 06:25:14 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 141
+ERROR - 2019-01-08 06:25:14 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 141
+ERROR - 2019-01-08 06:25:14 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 141
+ERROR - 2019-01-08 06:25:14 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 141
+ERROR - 2019-01-08 06:25:14 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 141
+ERROR - 2019-01-08 06:25:14 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 141
+ERROR - 2019-01-08 06:25:14 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 141
+ERROR - 2019-01-08 06:25:14 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 141
+ERROR - 2019-01-08 06:25:14 --> Severity: Notice --> Undefined variable: finyear C:\xampp\htdocs\ria\application\views\bankstatement.php 199
+ERROR - 2019-01-08 06:25:14 --> Severity: Notice --> Undefined variable: finyear C:\xampp\htdocs\ria\application\views\bankstatement.php 199
+ERROR - 2019-01-08 06:25:14 --> Severity: Warning --> Invalid argument supplied for foreach() C:\xampp\htdocs\ria\application\views\bankstatement.php 199
+ERROR - 2019-01-08 06:25:14 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 141
+ERROR - 2019-01-08 06:25:14 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 141
+ERROR - 2019-01-08 06:25:14 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 141
+ERROR - 2019-01-08 06:25:14 --> Severity: Notice --> Undefined variable: finyear C:\xampp\htdocs\ria\application\views\bankstatement.php 199
+ERROR - 2019-01-08 06:25:14 --> Severity: Notice --> Undefined variable: finyear C:\xampp\htdocs\ria\application\views\bankstatement.php 199
+ERROR - 2019-01-08 06:25:14 --> Severity: Notice --> Undefined variable: Bankname C:\xampp\htdocs\ria\application\views\bankstatement.php 237
+ERROR - 2019-01-08 06:25:14 --> Severity: Warning --> Invalid argument supplied for foreach() C:\xampp\htdocs\ria\application\views\bankstatement.php 199
+ERROR - 2019-01-08 06:25:14 --> Severity: Notice --> Undefined variable: finyear C:\xampp\htdocs\ria\application\views\bankstatement.php 199
+ERROR - 2019-01-08 06:25:14 --> Severity: Notice --> Undefined variable: finyear C:\xampp\htdocs\ria\application\views\bankstatement.php 199
+ERROR - 2019-01-08 06:25:14 --> Severity: Warning --> Invalid argument supplied for foreach() C:\xampp\htdocs\ria\application\views\bankstatement.php 199
+ERROR - 2019-01-08 06:25:14 --> Severity: Notice --> Undefined variable: Bankname C:\xampp\htdocs\ria\application\views\bankstatement.php 237
+ERROR - 2019-01-08 06:25:14 --> Severity: Warning --> Invalid argument supplied for foreach() C:\xampp\htdocs\ria\application\views\bankstatement.php 199
+ERROR - 2019-01-08 06:25:14 --> Severity: Warning --> Invalid argument supplied for foreach() C:\xampp\htdocs\ria\application\views\bankstatement.php 199
+ERROR - 2019-01-08 06:25:14 --> Severity: Warning --> Invalid argument supplied for foreach() C:\xampp\htdocs\ria\application\views\bankstatement.php 199
+ERROR - 2019-01-08 06:25:14 --> Severity: Notice --> Undefined variable: Bankname C:\xampp\htdocs\ria\application\views\bankstatement.php 237
+ERROR - 2019-01-08 06:25:14 --> Severity: Notice --> Undefined variable: Bankname C:\xampp\htdocs\ria\application\views\bankstatement.php 237
+ERROR - 2019-01-08 06:25:14 --> Severity: Notice --> Undefined variable: Bankname C:\xampp\htdocs\ria\application\views\bankstatement.php 237
+ERROR - 2019-01-08 06:25:14 --> Severity: Notice --> Undefined variable: Bankname C:\xampp\htdocs\ria\application\views\bankstatement.php 237
+ERROR - 2019-01-08 06:25:16 --> Severity: Notice --> Undefined variable: fdate C:\xampp\htdocs\ria\application\controllers\cashbook.php 1738
+ERROR - 2019-01-08 06:25:16 --> Severity: Notice --> Undefined variable: tdate C:\xampp\htdocs\ria\application\controllers\cashbook.php 1738
+ERROR - 2019-01-08 06:25:16 --> Severity: Notice --> Undefined variable: balancetocleared C:\xampp\htdocs\ria\application\controllers\cashbook.php 1933
+ERROR - 2019-01-08 06:25:16 --> Severity: Notice --> Undefined variable: fa C:\xampp\htdocs\ria\application\controllers\cashbook.php 1738
+ERROR - 2019-01-08 06:25:16 --> Severity: Notice --> Undefined variable: clearedblnce C:\xampp\htdocs\ria\application\controllers\cashbook.php 1942
+ERROR - 2019-01-08 06:25:16 --> Severity: Notice --> Undefined variable: fdate C:\xampp\htdocs\ria\application\controllers\cashbook.php 1738
+ERROR - 2019-01-08 06:25:16 --> Severity: Notice --> Undefined variable: balancetocleared C:\xampp\htdocs\ria\application\controllers\cashbook.php 1942
+ERROR - 2019-01-08 06:25:16 --> Severity: Notice --> Undefined variable: fdate C:\xampp\htdocs\ria\application\controllers\cashbook.php 1738
+ERROR - 2019-01-08 06:25:16 --> Severity: Notice --> Undefined variable: aa C:\xampp\htdocs\ria\application\controllers\cashbook.php 1738
+ERROR - 2019-01-08 06:25:16 --> Severity: Notice --> Undefined variable: tdate C:\xampp\htdocs\ria\application\controllers\cashbook.php 1738
+ERROR - 2019-01-08 06:25:16 --> Severity: Notice --> Undefined variable: fdate C:\xampp\htdocs\ria\application\controllers\cashbook.php 1738
+ERROR - 2019-01-08 06:25:16 --> Severity: Notice --> Undefined variable: fdate C:\xampp\htdocs\ria\application\controllers\cashbook.php 1738
+ERROR - 2019-01-08 06:25:16 --> Severity: Notice --> Undefined variable: fdate C:\xampp\htdocs\ria\application\controllers\cashbook.php 1738
+ERROR - 2019-01-08 06:25:16 --> Severity: Notice --> Undefined variable: tdate C:\xampp\htdocs\ria\application\controllers\cashbook.php 1738
+ERROR - 2019-01-08 06:25:16 --> Severity: Notice --> Undefined variable: fa C:\xampp\htdocs\ria\application\controllers\cashbook.php 1738
+ERROR - 2019-01-08 06:25:16 --> Severity: Notice --> Undefined variable: tdate C:\xampp\htdocs\ria\application\controllers\cashbook.php 1738
+ERROR - 2019-01-08 06:25:16 --> Severity: Notice --> Undefined variable: tdate C:\xampp\htdocs\ria\application\controllers\cashbook.php 1738
+ERROR - 2019-01-08 06:25:16 --> Severity: Notice --> Undefined variable: aa C:\xampp\htdocs\ria\application\controllers\cashbook.php 1738
+ERROR - 2019-01-08 06:25:16 --> Severity: Notice --> Undefined variable: fa C:\xampp\htdocs\ria\application\controllers\cashbook.php 1738
+ERROR - 2019-01-08 06:25:16 --> Severity: Notice --> Undefined variable: tdate C:\xampp\htdocs\ria\application\controllers\cashbook.php 1738
+ERROR - 2019-01-08 06:25:16 --> Severity: Notice --> Undefined variable: fa C:\xampp\htdocs\ria\application\controllers\cashbook.php 1738
+ERROR - 2019-01-08 06:25:16 --> Severity: Notice --> Undefined variable: fa C:\xampp\htdocs\ria\application\controllers\cashbook.php 1738
+ERROR - 2019-01-08 06:25:16 --> Severity: Notice --> Undefined variable: aa C:\xampp\htdocs\ria\application\controllers\cashbook.php 1738
+ERROR - 2019-01-08 06:25:16 --> Severity: Notice --> Undefined variable: fa C:\xampp\htdocs\ria\application\controllers\cashbook.php 1738
+ERROR - 2019-01-08 06:25:16 --> Severity: Notice --> Undefined variable: aa C:\xampp\htdocs\ria\application\controllers\cashbook.php 1738
+ERROR - 2019-01-08 06:25:16 --> Severity: Notice --> Undefined variable: data C:\xampp\htdocs\ria\application\controllers\cashbook.php 2008
+ERROR - 2019-01-08 06:25:16 --> Severity: Notice --> Undefined variable: aa C:\xampp\htdocs\ria\application\controllers\cashbook.php 1738
+ERROR - 2019-01-08 06:25:16 --> Severity: Notice --> Undefined variable: financialyear C:\xampp\htdocs\ria\application\views\bankstatement.php 2
+ERROR - 2019-01-08 06:25:16 --> Severity: Notice --> Undefined variable: aa C:\xampp\htdocs\ria\application\controllers\cashbook.php 1738
+ERROR - 2019-01-08 06:25:16 --> Severity: Warning --> Invalid argument supplied for foreach() C:\xampp\htdocs\ria\application\views\bankstatement.php 2
+ERROR - 2019-01-08 06:25:16 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 87
+ERROR - 2019-01-08 06:25:16 --> Severity: Notice --> Undefined variable: financialyear C:\xampp\htdocs\ria\application\views\bankstatement.php 2
+ERROR - 2019-01-08 06:25:16 --> Severity: Notice --> Undefined variable: financialyear C:\xampp\htdocs\ria\application\views\bankstatement.php 2
+ERROR - 2019-01-08 06:25:16 --> Severity: Notice --> Undefined variable: financialyear C:\xampp\htdocs\ria\application\views\bankstatement.php 2
+ERROR - 2019-01-08 06:25:16 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 87
+ERROR - 2019-01-08 06:25:16 --> Severity: Warning --> Invalid argument supplied for foreach() C:\xampp\htdocs\ria\application\views\bankstatement.php 2
+ERROR - 2019-01-08 06:25:16 --> Severity: Warning --> Invalid argument supplied for foreach() C:\xampp\htdocs\ria\application\views\bankstatement.php 2
+ERROR - 2019-01-08 06:25:16 --> Severity: Notice --> Undefined variable: bankreport C:\xampp\htdocs\ria\application\views\bankstatement.php 8
+ERROR - 2019-01-08 06:25:16 --> Severity: Warning --> Invalid argument supplied for foreach() C:\xampp\htdocs\ria\application\views\bankstatement.php 2
+ERROR - 2019-01-08 06:25:16 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 88
+ERROR - 2019-01-08 06:25:16 --> Severity: Notice --> Undefined variable: financialyear C:\xampp\htdocs\ria\application\views\bankstatement.php 2
+ERROR - 2019-01-08 06:25:16 --> Severity: Notice --> Undefined variable: financialyear C:\xampp\htdocs\ria\application\views\bankstatement.php 2
+ERROR - 2019-01-08 06:25:17 --> Severity: Notice --> Undefined variable: financialyear C:\xampp\htdocs\ria\application\views\bankstatement.php 2
+ERROR - 2019-01-08 06:25:17 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 87
+ERROR - 2019-01-08 06:25:17 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 87
+ERROR - 2019-01-08 06:25:17 --> Severity: Warning --> Invalid argument supplied for foreach() C:\xampp\htdocs\ria\application\views\bankstatement.php 8
+ERROR - 2019-01-08 06:25:17 --> Severity: Warning --> Invalid argument supplied for foreach() C:\xampp\htdocs\ria\application\views\bankstatement.php 2
+ERROR - 2019-01-08 06:25:17 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 88
+ERROR - 2019-01-08 06:25:17 --> Severity: Warning --> Invalid argument supplied for foreach() C:\xampp\htdocs\ria\application\views\bankstatement.php 2
+ERROR - 2019-01-08 06:25:17 --> Severity: Warning --> Invalid argument supplied for foreach() C:\xampp\htdocs\ria\application\views\bankstatement.php 2
+ERROR - 2019-01-08 06:25:17 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 87
+ERROR - 2019-01-08 06:25:17 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 87
+ERROR - 2019-01-08 06:25:17 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 89
+ERROR - 2019-01-08 06:25:17 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 87
+ERROR - 2019-01-08 06:25:17 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 87
+ERROR - 2019-01-08 06:25:17 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 88
+ERROR - 2019-01-08 06:25:17 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 87
+ERROR - 2019-01-08 06:25:17 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 89
+ERROR - 2019-01-08 06:25:17 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 87
+ERROR - 2019-01-08 06:25:17 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 87
+ERROR - 2019-01-08 06:25:17 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 87
+ERROR - 2019-01-08 06:25:17 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 88
+ERROR - 2019-01-08 06:25:17 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 88
+ERROR - 2019-01-08 06:25:17 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 88
+ERROR - 2019-01-08 06:25:17 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 87
+ERROR - 2019-01-08 06:25:17 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 88
+ERROR - 2019-01-08 06:25:17 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 88
+ERROR - 2019-01-08 06:25:17 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 139
+ERROR - 2019-01-08 06:25:17 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 87
+ERROR - 2019-01-08 06:25:17 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 139
+ERROR - 2019-01-08 06:25:17 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 88
+ERROR - 2019-01-08 06:25:17 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 89
+ERROR - 2019-01-08 06:25:17 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 88
+ERROR - 2019-01-08 06:25:17 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 89
+ERROR - 2019-01-08 06:25:17 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 140
+ERROR - 2019-01-08 06:25:17 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 88
+ERROR - 2019-01-08 06:25:17 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 89
+ERROR - 2019-01-08 06:25:17 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 88
+ERROR - 2019-01-08 06:25:17 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 89
+ERROR - 2019-01-08 06:25:17 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 88
+ERROR - 2019-01-08 06:25:17 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 88
+ERROR - 2019-01-08 06:25:17 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 89
+ERROR - 2019-01-08 06:25:17 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 139
+ERROR - 2019-01-08 06:25:17 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 89
+ERROR - 2019-01-08 06:25:17 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 140
+ERROR - 2019-01-08 06:25:17 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 89
+ERROR - 2019-01-08 06:25:17 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 89
+ERROR - 2019-01-08 06:25:17 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 139
+ERROR - 2019-01-08 06:25:17 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 89
+ERROR - 2019-01-08 06:25:17 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 89
+ERROR - 2019-01-08 06:25:17 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 89
+ERROR - 2019-01-08 06:25:17 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 139
+ERROR - 2019-01-08 06:25:17 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 141
+ERROR - 2019-01-08 06:25:17 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 89
+ERROR - 2019-01-08 06:25:17 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 140
+ERROR - 2019-01-08 06:25:17 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 141
+ERROR - 2019-01-08 06:25:17 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 139
+ERROR - 2019-01-08 06:25:17 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 139
+ERROR - 2019-01-08 06:25:17 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 139
+ERROR - 2019-01-08 06:25:17 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 140
+ERROR - 2019-01-08 06:25:17 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 139
+ERROR - 2019-01-08 06:25:17 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 139
+ERROR - 2019-01-08 06:25:17 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 141
+ERROR - 2019-01-08 06:25:17 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 140
+ERROR - 2019-01-08 06:25:17 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 139
+ERROR - 2019-01-08 06:25:17 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 139
+ERROR - 2019-01-08 06:25:17 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 140
+ERROR - 2019-01-08 06:25:17 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 139
+ERROR - 2019-01-08 06:25:17 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 139
+ERROR - 2019-01-08 06:25:17 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 140
+ERROR - 2019-01-08 06:25:17 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 141
+ERROR - 2019-01-08 06:25:17 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 140
+ERROR - 2019-01-08 06:25:17 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 140
+ERROR - 2019-01-08 06:25:17 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 140
+ERROR - 2019-01-08 06:25:17 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 140
+ERROR - 2019-01-08 06:25:17 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 140
+ERROR - 2019-01-08 06:25:17 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 141
+ERROR - 2019-01-08 06:25:17 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 140
+ERROR - 2019-01-08 06:25:17 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 141
+ERROR - 2019-01-08 06:25:17 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 141
+ERROR - 2019-01-08 06:25:17 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 141
+ERROR - 2019-01-08 06:25:17 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 141
+ERROR - 2019-01-08 06:25:17 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 140
+ERROR - 2019-01-08 06:25:17 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 141
+ERROR - 2019-01-08 06:25:17 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 141
+ERROR - 2019-01-08 06:25:17 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 141
+ERROR - 2019-01-08 06:25:17 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 141
+ERROR - 2019-01-08 06:25:17 --> Severity: Notice --> Undefined variable: finyear C:\xampp\htdocs\ria\application\views\bankstatement.php 199
+ERROR - 2019-01-08 06:25:17 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 141
+ERROR - 2019-01-08 06:25:18 --> Severity: Warning --> Invalid argument supplied for foreach() C:\xampp\htdocs\ria\application\views\bankstatement.php 199
+ERROR - 2019-01-08 06:25:18 --> Severity: Notice --> Undefined variable: Bankname C:\xampp\htdocs\ria\application\views\bankstatement.php 237
+ERROR - 2019-01-08 06:25:30 --> Severity: Notice --> Undefined variable: financialyear C:\xampp\htdocs\ria\application\views\banksettlement.php 4
+ERROR - 2019-01-08 06:25:30 --> Severity: Warning --> Invalid argument supplied for foreach() C:\xampp\htdocs\ria\application\views\banksettlement.php 4
+ERROR - 2019-01-08 06:25:30 --> Severity: Notice --> Undefined variable: t C:\xampp\htdocs\ria\application\views\banksettlement.php 278
+ERROR - 2019-01-08 06:25:30 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\banksettlement.php 278
+ERROR - 2019-01-08 06:25:30 --> Severity: Notice --> Undefined variable: t C:\xampp\htdocs\ria\application\views\banksettlement.php 278
+ERROR - 2019-01-08 06:25:30 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\banksettlement.php 278
+ERROR - 2019-01-08 06:25:30 --> Severity: Notice --> Undefined variable: rel C:\xampp\htdocs\ria\application\views\banksettlement.php 279
+ERROR - 2019-01-08 06:25:30 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\banksettlement.php 279
+ERROR - 2019-01-08 06:25:30 --> Severity: Notice --> Undefined variable: t C:\xampp\htdocs\ria\application\views\banksettlement.php 278
+ERROR - 2019-01-08 06:25:30 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\banksettlement.php 278
+ERROR - 2019-01-08 06:25:30 --> Severity: Notice --> Undefined variable: t C:\xampp\htdocs\ria\application\views\banksettlement.php 278
+ERROR - 2019-01-08 06:25:30 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\banksettlement.php 278
+ERROR - 2019-01-08 06:25:30 --> Severity: Notice --> Undefined variable: rel C:\xampp\htdocs\ria\application\views\banksettlement.php 279
+ERROR - 2019-01-08 06:25:30 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\banksettlement.php 279
+ERROR - 2019-01-08 06:25:31 --> Severity: Notice --> Undefined variable: t C:\xampp\htdocs\ria\application\views\banksettlement.php 278
+ERROR - 2019-01-08 06:25:31 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\banksettlement.php 278
+ERROR - 2019-01-08 06:25:31 --> Severity: Notice --> Undefined variable: t C:\xampp\htdocs\ria\application\views\banksettlement.php 278
+ERROR - 2019-01-08 06:25:31 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\banksettlement.php 278
+ERROR - 2019-01-08 06:25:31 --> Severity: Notice --> Undefined variable: rel C:\xampp\htdocs\ria\application\views\banksettlement.php 279
+ERROR - 2019-01-08 06:25:31 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\banksettlement.php 279
+ERROR - 2019-01-08 06:25:31 --> Severity: Notice --> Undefined variable: t C:\xampp\htdocs\ria\application\views\banksettlement.php 278
+ERROR - 2019-01-08 06:25:31 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\banksettlement.php 278
+ERROR - 2019-01-08 06:25:31 --> Severity: Notice --> Undefined variable: t C:\xampp\htdocs\ria\application\views\banksettlement.php 278
+ERROR - 2019-01-08 06:25:31 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\banksettlement.php 278
+ERROR - 2019-01-08 06:25:31 --> Severity: Notice --> Undefined variable: rel C:\xampp\htdocs\ria\application\views\banksettlement.php 279
+ERROR - 2019-01-08 06:25:31 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\banksettlement.php 279
+ERROR - 2019-01-08 06:25:31 --> Severity: Notice --> Undefined variable: t C:\xampp\htdocs\ria\application\views\banksettlement.php 278
+ERROR - 2019-01-08 06:25:31 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\banksettlement.php 278
+ERROR - 2019-01-08 06:25:31 --> Severity: Notice --> Undefined variable: t C:\xampp\htdocs\ria\application\views\banksettlement.php 278
+ERROR - 2019-01-08 06:25:31 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\banksettlement.php 278
+ERROR - 2019-01-08 06:25:31 --> Severity: Notice --> Undefined variable: rel C:\xampp\htdocs\ria\application\views\banksettlement.php 279
+ERROR - 2019-01-08 06:25:31 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\banksettlement.php 279
+ERROR - 2019-01-08 06:25:31 --> Severity: Notice --> Undefined variable: t C:\xampp\htdocs\ria\application\views\banksettlement.php 278
+ERROR - 2019-01-08 06:25:31 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\banksettlement.php 278
+ERROR - 2019-01-08 06:25:31 --> Severity: Notice --> Undefined variable: t C:\xampp\htdocs\ria\application\views\banksettlement.php 278
+ERROR - 2019-01-08 06:25:31 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\banksettlement.php 278
+ERROR - 2019-01-08 06:25:31 --> Severity: Notice --> Undefined variable: rel C:\xampp\htdocs\ria\application\views\banksettlement.php 279
+ERROR - 2019-01-08 06:25:31 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\banksettlement.php 279
+ERROR - 2019-01-08 06:25:31 --> Severity: Notice --> Undefined variable: t C:\xampp\htdocs\ria\application\views\banksettlement.php 278
+ERROR - 2019-01-08 06:25:31 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\banksettlement.php 278
+ERROR - 2019-01-08 06:25:31 --> Severity: Notice --> Undefined variable: t C:\xampp\htdocs\ria\application\views\banksettlement.php 278
+ERROR - 2019-01-08 06:25:31 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\banksettlement.php 278
+ERROR - 2019-01-08 06:25:31 --> Severity: Notice --> Undefined variable: rel C:\xampp\htdocs\ria\application\views\banksettlement.php 279
+ERROR - 2019-01-08 06:25:31 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\banksettlement.php 279
+ERROR - 2019-01-08 06:25:53 --> Severity: Notice --> Undefined variable: financialyear C:\xampp\htdocs\ria\application\views\banksettlement.php 4
+ERROR - 2019-01-08 06:25:53 --> Severity: Warning --> Invalid argument supplied for foreach() C:\xampp\htdocs\ria\application\views\banksettlement.php 4
+ERROR - 2019-01-08 06:25:53 --> Severity: Notice --> Undefined variable: t C:\xampp\htdocs\ria\application\views\banksettlement.php 278
+ERROR - 2019-01-08 06:25:53 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\banksettlement.php 278
+ERROR - 2019-01-08 06:25:53 --> Severity: Notice --> Undefined variable: t C:\xampp\htdocs\ria\application\views\banksettlement.php 278
+ERROR - 2019-01-08 06:25:53 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\banksettlement.php 278
+ERROR - 2019-01-08 06:25:53 --> Severity: Notice --> Undefined variable: rel C:\xampp\htdocs\ria\application\views\banksettlement.php 279
+ERROR - 2019-01-08 06:25:53 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\banksettlement.php 279
+ERROR - 2019-01-08 06:25:53 --> Severity: Notice --> Undefined variable: t C:\xampp\htdocs\ria\application\views\banksettlement.php 278
+ERROR - 2019-01-08 06:25:53 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\banksettlement.php 278
+ERROR - 2019-01-08 06:25:53 --> Severity: Notice --> Undefined variable: t C:\xampp\htdocs\ria\application\views\banksettlement.php 278
+ERROR - 2019-01-08 06:25:53 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\banksettlement.php 278
+ERROR - 2019-01-08 06:25:53 --> Severity: Notice --> Undefined variable: rel C:\xampp\htdocs\ria\application\views\banksettlement.php 279
+ERROR - 2019-01-08 06:25:53 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\banksettlement.php 279
+ERROR - 2019-01-08 06:25:53 --> Severity: Notice --> Undefined variable: t C:\xampp\htdocs\ria\application\views\banksettlement.php 278
+ERROR - 2019-01-08 06:25:53 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\banksettlement.php 278
+ERROR - 2019-01-08 06:25:54 --> Severity: Notice --> Undefined variable: t C:\xampp\htdocs\ria\application\views\banksettlement.php 278
+ERROR - 2019-01-08 06:25:54 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\banksettlement.php 278
+ERROR - 2019-01-08 06:25:54 --> Severity: Notice --> Undefined variable: financialyear C:\xampp\htdocs\ria\application\views\banksettlement.php 4
+ERROR - 2019-01-08 06:25:54 --> Severity: Notice --> Undefined variable: rel C:\xampp\htdocs\ria\application\views\banksettlement.php 279
+ERROR - 2019-01-08 06:25:54 --> Severity: Warning --> Invalid argument supplied for foreach() C:\xampp\htdocs\ria\application\views\banksettlement.php 4
+ERROR - 2019-01-08 06:25:54 --> Severity: Notice --> Undefined variable: t C:\xampp\htdocs\ria\application\views\banksettlement.php 278
+ERROR - 2019-01-08 06:25:54 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\banksettlement.php 278
+ERROR - 2019-01-08 06:25:54 --> Severity: Notice --> Undefined variable: t C:\xampp\htdocs\ria\application\views\banksettlement.php 278
+ERROR - 2019-01-08 06:25:54 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\banksettlement.php 278
+ERROR - 2019-01-08 06:25:54 --> Severity: Notice --> Undefined variable: rel C:\xampp\htdocs\ria\application\views\banksettlement.php 279
+ERROR - 2019-01-08 06:25:54 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\banksettlement.php 279
+ERROR - 2019-01-08 06:25:54 --> Severity: Notice --> Undefined variable: t C:\xampp\htdocs\ria\application\views\banksettlement.php 278
+ERROR - 2019-01-08 06:25:55 --> Severity: Notice --> Undefined variable: financialyear C:\xampp\htdocs\ria\application\views\banksettlement.php 4
+ERROR - 2019-01-08 06:25:55 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\banksettlement.php 278
+ERROR - 2019-01-08 06:25:55 --> Severity: Notice --> Undefined variable: financialyear C:\xampp\htdocs\ria\application\views\banksettlement.php 4
+ERROR - 2019-01-08 06:25:55 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\banksettlement.php 279
+ERROR - 2019-01-08 06:25:55 --> Severity: Warning --> Invalid argument supplied for foreach() C:\xampp\htdocs\ria\application\views\banksettlement.php 4
+ERROR - 2019-01-08 06:25:55 --> Severity: Notice --> Undefined variable: t C:\xampp\htdocs\ria\application\views\banksettlement.php 278
+ERROR - 2019-01-08 06:25:55 --> Severity: Notice --> Undefined variable: t C:\xampp\htdocs\ria\application\views\banksettlement.php 278
+ERROR - 2019-01-08 06:25:55 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\banksettlement.php 278
+ERROR - 2019-01-08 06:25:55 --> Severity: Notice --> Undefined variable: t C:\xampp\htdocs\ria\application\views\banksettlement.php 278
+ERROR - 2019-01-08 06:25:55 --> Severity: Warning --> Invalid argument supplied for foreach() C:\xampp\htdocs\ria\application\views\banksettlement.php 4
+ERROR - 2019-01-08 06:25:55 --> Severity: Notice --> Undefined variable: rel C:\xampp\htdocs\ria\application\views\banksettlement.php 279
+ERROR - 2019-01-08 06:25:55 --> Severity: Notice --> Undefined variable: financialyear C:\xampp\htdocs\ria\application\views\banksettlement.php 4
+ERROR - 2019-01-08 06:25:55 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\banksettlement.php 278
+ERROR - 2019-01-08 06:25:55 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\banksettlement.php 278
+ERROR - 2019-01-08 06:25:55 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\banksettlement.php 279
+ERROR - 2019-01-08 06:25:55 --> Severity: Notice --> Undefined variable: t C:\xampp\htdocs\ria\application\views\banksettlement.php 278
+ERROR - 2019-01-08 06:25:55 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\banksettlement.php 278
+ERROR - 2019-01-08 06:25:55 --> Severity: Notice --> Undefined variable: t C:\xampp\htdocs\ria\application\views\banksettlement.php 278
+ERROR - 2019-01-08 06:25:55 --> Severity: Notice --> Undefined variable: t C:\xampp\htdocs\ria\application\views\banksettlement.php 278
+ERROR - 2019-01-08 06:25:55 --> Severity: Notice --> Undefined variable: t C:\xampp\htdocs\ria\application\views\banksettlement.php 278
+ERROR - 2019-01-08 06:25:55 --> Severity: Warning --> Invalid argument supplied for foreach() C:\xampp\htdocs\ria\application\views\banksettlement.php 4
+ERROR - 2019-01-08 06:25:55 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\banksettlement.php 278
+ERROR - 2019-01-08 06:25:55 --> Severity: Notice --> Undefined variable: t C:\xampp\htdocs\ria\application\views\banksettlement.php 278
+ERROR - 2019-01-08 06:25:55 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\banksettlement.php 278
+ERROR - 2019-01-08 06:25:55 --> Severity: Notice --> Undefined variable: t C:\xampp\htdocs\ria\application\views\banksettlement.php 278
+ERROR - 2019-01-08 06:25:55 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\banksettlement.php 278
+ERROR - 2019-01-08 06:25:55 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\banksettlement.php 278
+ERROR - 2019-01-08 06:25:55 --> Severity: Notice --> Undefined variable: rel C:\xampp\htdocs\ria\application\views\banksettlement.php 279
+ERROR - 2019-01-08 06:25:55 --> Severity: Notice --> Undefined variable: rel C:\xampp\htdocs\ria\application\views\banksettlement.php 279
+ERROR - 2019-01-08 06:25:55 --> Severity: Notice --> Undefined variable: t C:\xampp\htdocs\ria\application\views\banksettlement.php 278
+ERROR - 2019-01-08 06:25:55 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\banksettlement.php 278
+ERROR - 2019-01-08 06:25:55 --> Severity: Notice --> Undefined variable: rel C:\xampp\htdocs\ria\application\views\banksettlement.php 279
+ERROR - 2019-01-08 06:25:55 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\banksettlement.php 279
+ERROR - 2019-01-08 06:25:55 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\banksettlement.php 279
+ERROR - 2019-01-08 06:25:55 --> Severity: Notice --> Undefined variable: financialyear C:\xampp\htdocs\ria\application\views\banksettlement.php 4
+ERROR - 2019-01-08 06:25:55 --> Severity: Notice --> Undefined variable: t C:\xampp\htdocs\ria\application\views\banksettlement.php 278
+ERROR - 2019-01-08 06:25:55 --> Severity: Notice --> Undefined variable: t C:\xampp\htdocs\ria\application\views\banksettlement.php 278
+ERROR - 2019-01-08 06:25:55 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\banksettlement.php 278
+ERROR - 2019-01-08 06:25:55 --> Severity: Warning --> Invalid argument supplied for foreach() C:\xampp\htdocs\ria\application\views\banksettlement.php 4
+ERROR - 2019-01-08 06:25:55 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\banksettlement.php 279
+ERROR - 2019-01-08 06:25:55 --> Severity: Notice --> Undefined variable: t C:\xampp\htdocs\ria\application\views\banksettlement.php 278
+ERROR - 2019-01-08 06:25:55 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\banksettlement.php 278
+ERROR - 2019-01-08 06:25:55 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\banksettlement.php 278
+ERROR - 2019-01-08 06:25:55 --> Severity: Notice --> Undefined variable: t C:\xampp\htdocs\ria\application\views\banksettlement.php 278
+ERROR - 2019-01-08 06:25:55 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\banksettlement.php 278
+ERROR - 2019-01-08 06:25:55 --> Severity: Notice --> Undefined variable: t C:\xampp\htdocs\ria\application\views\banksettlement.php 278
+ERROR - 2019-01-08 06:25:55 --> Severity: Notice --> Undefined variable: financialyear C:\xampp\htdocs\ria\application\views\banksettlement.php 4
+ERROR - 2019-01-08 06:25:55 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\banksettlement.php 278
+ERROR - 2019-01-08 06:25:55 --> Severity: Notice --> Undefined variable: rel C:\xampp\htdocs\ria\application\views\banksettlement.php 279
+ERROR - 2019-01-08 06:25:55 --> Severity: Notice --> Undefined variable: t C:\xampp\htdocs\ria\application\views\banksettlement.php 278
+ERROR - 2019-01-08 06:25:55 --> Severity: Warning --> Invalid argument supplied for foreach() C:\xampp\htdocs\ria\application\views\banksettlement.php 4
+ERROR - 2019-01-08 06:25:55 --> Severity: Notice --> Undefined variable: rel C:\xampp\htdocs\ria\application\views\banksettlement.php 279
+ERROR - 2019-01-08 06:25:55 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\banksettlement.php 278
+ERROR - 2019-01-08 06:25:55 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\banksettlement.php 278
+ERROR - 2019-01-08 06:25:55 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\banksettlement.php 279
+ERROR - 2019-01-08 06:25:55 --> Severity: Notice --> Undefined variable: t C:\xampp\htdocs\ria\application\views\banksettlement.php 278
+ERROR - 2019-01-08 06:25:55 --> Severity: Notice --> Undefined variable: t C:\xampp\htdocs\ria\application\views\banksettlement.php 278
+ERROR - 2019-01-08 06:25:55 --> Severity: Notice --> Undefined variable: t C:\xampp\htdocs\ria\application\views\banksettlement.php 278
+ERROR - 2019-01-08 06:25:55 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\banksettlement.php 279
+ERROR - 2019-01-08 06:25:55 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\banksettlement.php 278
+ERROR - 2019-01-08 06:25:55 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\banksettlement.php 278
+ERROR - 2019-01-08 06:25:55 --> Severity: Notice --> Undefined variable: rel C:\xampp\htdocs\ria\application\views\banksettlement.php 279
+ERROR - 2019-01-08 06:25:55 --> Severity: Notice --> Undefined variable: t C:\xampp\htdocs\ria\application\views\banksettlement.php 278
+ERROR - 2019-01-08 06:25:55 --> Severity: Notice --> Undefined variable: t C:\xampp\htdocs\ria\application\views\banksettlement.php 278
+ERROR - 2019-01-08 06:25:55 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\banksettlement.php 279
+ERROR - 2019-01-08 06:25:55 --> Severity: Notice --> Undefined variable: t C:\xampp\htdocs\ria\application\views\banksettlement.php 278
+ERROR - 2019-01-08 06:25:55 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\banksettlement.php 278
+ERROR - 2019-01-08 06:25:55 --> Severity: Notice --> Undefined variable: t C:\xampp\htdocs\ria\application\views\banksettlement.php 278
+ERROR - 2019-01-08 06:25:55 --> Severity: Notice --> Undefined variable: rel C:\xampp\htdocs\ria\application\views\banksettlement.php 279
+ERROR - 2019-01-08 06:25:55 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\banksettlement.php 278
+ERROR - 2019-01-08 06:25:55 --> Severity: Notice --> Undefined variable: rel C:\xampp\htdocs\ria\application\views\banksettlement.php 279
+ERROR - 2019-01-08 06:25:55 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\banksettlement.php 278
+ERROR - 2019-01-08 06:25:55 --> Severity: Notice --> Undefined variable: t C:\xampp\htdocs\ria\application\views\banksettlement.php 278
+ERROR - 2019-01-08 06:25:55 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\banksettlement.php 279
+ERROR - 2019-01-08 06:25:55 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\banksettlement.php 278
+ERROR - 2019-01-08 06:25:55 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\banksettlement.php 278
+ERROR - 2019-01-08 06:25:55 --> Severity: Notice --> Undefined variable: financialyear C:\xampp\htdocs\ria\application\views\banksettlement.php 4
+ERROR - 2019-01-08 06:25:56 --> Severity: Notice --> Undefined variable: t C:\xampp\htdocs\ria\application\views\banksettlement.php 278
+ERROR - 2019-01-08 06:25:56 --> Severity: Notice --> Undefined variable: t C:\xampp\htdocs\ria\application\views\banksettlement.php 278
+ERROR - 2019-01-08 06:25:56 --> Severity: Notice --> Undefined variable: rel C:\xampp\htdocs\ria\application\views\banksettlement.php 279
+ERROR - 2019-01-08 06:25:56 --> Severity: Notice --> Undefined variable: rel C:\xampp\htdocs\ria\application\views\banksettlement.php 279
+ERROR - 2019-01-08 06:25:56 --> Severity: Notice --> Undefined variable: t C:\xampp\htdocs\ria\application\views\banksettlement.php 278
+ERROR - 2019-01-08 06:25:56 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\banksettlement.php 278
+ERROR - 2019-01-08 06:25:56 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\banksettlement.php 279
+ERROR - 2019-01-08 06:25:56 --> Severity: Warning --> Invalid argument supplied for foreach() C:\xampp\htdocs\ria\application\views\banksettlement.php 4
+ERROR - 2019-01-08 06:25:56 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\banksettlement.php 278
+ERROR - 2019-01-08 06:25:56 --> Severity: Notice --> Undefined variable: t C:\xampp\htdocs\ria\application\views\banksettlement.php 278
+ERROR - 2019-01-08 06:25:56 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\banksettlement.php 279
+ERROR - 2019-01-08 06:25:56 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\banksettlement.php 279
+ERROR - 2019-01-08 06:25:56 --> Severity: Notice --> Undefined variable: t C:\xampp\htdocs\ria\application\views\banksettlement.php 278
+ERROR - 2019-01-08 06:25:56 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\banksettlement.php 278
+ERROR - 2019-01-08 06:25:56 --> Severity: Notice --> Undefined variable: t C:\xampp\htdocs\ria\application\views\banksettlement.php 278
+ERROR - 2019-01-08 06:25:56 --> Severity: Notice --> Undefined variable: t C:\xampp\htdocs\ria\application\views\banksettlement.php 278
+ERROR - 2019-01-08 06:25:56 --> Severity: Notice --> Undefined variable: rel C:\xampp\htdocs\ria\application\views\banksettlement.php 279
+ERROR - 2019-01-08 06:25:56 --> Severity: Notice --> Undefined variable: rel C:\xampp\htdocs\ria\application\views\banksettlement.php 279
+ERROR - 2019-01-08 06:25:56 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\banksettlement.php 278
+ERROR - 2019-01-08 06:25:56 --> Severity: Notice --> Undefined variable: financialyear C:\xampp\htdocs\ria\application\views\banksettlement.php 4
+ERROR - 2019-01-08 06:25:56 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\banksettlement.php 278
+ERROR - 2019-01-08 06:25:56 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\banksettlement.php 278
+ERROR - 2019-01-08 06:25:56 --> Severity: Notice --> Undefined variable: t C:\xampp\htdocs\ria\application\views\banksettlement.php 278
+ERROR - 2019-01-08 06:25:56 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\banksettlement.php 278
+ERROR - 2019-01-08 06:25:56 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\banksettlement.php 279
+ERROR - 2019-01-08 06:25:56 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\banksettlement.php 278
+ERROR - 2019-01-08 06:25:56 --> Severity: Notice --> Undefined variable: rel C:\xampp\htdocs\ria\application\views\banksettlement.php 279
+ERROR - 2019-01-08 06:25:56 --> Severity: Warning --> Invalid argument supplied for foreach() C:\xampp\htdocs\ria\application\views\banksettlement.php 4
+ERROR - 2019-01-08 06:25:56 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\banksettlement.php 278
+ERROR - 2019-01-08 06:25:56 --> Severity: Notice --> Undefined variable: t C:\xampp\htdocs\ria\application\views\banksettlement.php 278
+ERROR - 2019-01-08 06:25:56 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\banksettlement.php 279
+ERROR - 2019-01-08 06:25:56 --> Severity: Notice --> Undefined variable: t C:\xampp\htdocs\ria\application\views\banksettlement.php 278
+ERROR - 2019-01-08 06:25:56 --> Severity: Notice --> Undefined variable: t C:\xampp\htdocs\ria\application\views\banksettlement.php 278
+ERROR - 2019-01-08 06:25:56 --> Severity: Notice --> Undefined variable: t C:\xampp\htdocs\ria\application\views\banksettlement.php 278
+ERROR - 2019-01-08 06:25:56 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\banksettlement.php 278
+ERROR - 2019-01-08 06:25:56 --> Severity: Notice --> Undefined variable: t C:\xampp\htdocs\ria\application\views\banksettlement.php 278
+ERROR - 2019-01-08 06:25:56 --> Severity: Notice --> Undefined variable: t C:\xampp\htdocs\ria\application\views\banksettlement.php 278
+ERROR - 2019-01-08 06:25:56 --> Severity: Notice --> Undefined variable: t C:\xampp\htdocs\ria\application\views\banksettlement.php 278
+ERROR - 2019-01-08 06:25:56 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\banksettlement.php 278
+ERROR - 2019-01-08 06:25:56 --> Severity: Notice --> Undefined variable: t C:\xampp\htdocs\ria\application\views\banksettlement.php 278
+ERROR - 2019-01-08 06:25:56 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\banksettlement.php 279
+ERROR - 2019-01-08 06:25:56 --> Severity: Notice --> Undefined variable: rel C:\xampp\htdocs\ria\application\views\banksettlement.php 279
+ERROR - 2019-01-08 06:25:56 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\banksettlement.php 278
+ERROR - 2019-01-08 06:25:56 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\banksettlement.php 278
+ERROR - 2019-01-08 06:25:56 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\banksettlement.php 278
+ERROR - 2019-01-08 06:25:56 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\banksettlement.php 278
+ERROR - 2019-01-08 06:25:56 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\banksettlement.php 279
+ERROR - 2019-01-08 06:25:56 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\banksettlement.php 278
+ERROR - 2019-01-08 06:25:56 --> Severity: Notice --> Undefined variable: rel C:\xampp\htdocs\ria\application\views\banksettlement.php 279
+ERROR - 2019-01-08 06:25:56 --> Severity: Notice --> Undefined variable: t C:\xampp\htdocs\ria\application\views\banksettlement.php 278
+ERROR - 2019-01-08 06:25:56 --> Severity: Notice --> Undefined variable: t C:\xampp\htdocs\ria\application\views\banksettlement.php 278
+ERROR - 2019-01-08 06:25:56 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\banksettlement.php 278
+ERROR - 2019-01-08 06:25:56 --> Severity: Notice --> Undefined variable: t C:\xampp\htdocs\ria\application\views\banksettlement.php 278
+ERROR - 2019-01-08 06:25:56 --> Severity: Notice --> Undefined variable: rel C:\xampp\htdocs\ria\application\views\banksettlement.php 279
+ERROR - 2019-01-08 06:25:56 --> Severity: Notice --> Undefined variable: rel C:\xampp\htdocs\ria\application\views\banksettlement.php 279
+ERROR - 2019-01-08 06:25:56 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\banksettlement.php 278
+ERROR - 2019-01-08 06:25:56 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\banksettlement.php 278
+ERROR - 2019-01-08 06:25:56 --> Severity: Notice --> Undefined variable: t C:\xampp\htdocs\ria\application\views\banksettlement.php 278
+ERROR - 2019-01-08 06:25:56 --> Severity: Notice --> Undefined variable: t C:\xampp\htdocs\ria\application\views\banksettlement.php 278
+ERROR - 2019-01-08 06:25:56 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\banksettlement.php 279
+ERROR - 2019-01-08 06:25:56 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\banksettlement.php 279
+ERROR - 2019-01-08 06:25:56 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\banksettlement.php 279
+ERROR - 2019-01-08 06:25:56 --> Severity: Notice --> Undefined variable: t C:\xampp\htdocs\ria\application\views\banksettlement.php 278
+ERROR - 2019-01-08 06:25:56 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\banksettlement.php 278
+ERROR - 2019-01-08 06:25:56 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\banksettlement.php 278
+ERROR - 2019-01-08 06:25:56 --> Severity: Notice --> Undefined variable: t C:\xampp\htdocs\ria\application\views\banksettlement.php 278
+ERROR - 2019-01-08 06:25:56 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\banksettlement.php 278
+ERROR - 2019-01-08 06:25:56 --> Severity: Notice --> Undefined variable: t C:\xampp\htdocs\ria\application\views\banksettlement.php 278
+ERROR - 2019-01-08 06:25:56 --> Severity: Notice --> Undefined variable: rel C:\xampp\htdocs\ria\application\views\banksettlement.php 279
+ERROR - 2019-01-08 06:25:56 --> Severity: Notice --> Undefined variable: rel C:\xampp\htdocs\ria\application\views\banksettlement.php 279
+ERROR - 2019-01-08 06:25:56 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\banksettlement.php 278
+ERROR - 2019-01-08 06:25:56 --> Severity: Notice --> Undefined variable: rel C:\xampp\htdocs\ria\application\views\banksettlement.php 279
+ERROR - 2019-01-08 06:25:56 --> Severity: Notice --> Undefined variable: t C:\xampp\htdocs\ria\application\views\banksettlement.php 278
+ERROR - 2019-01-08 06:25:56 --> Severity: Notice --> Undefined variable: t C:\xampp\htdocs\ria\application\views\banksettlement.php 278
+ERROR - 2019-01-08 06:25:56 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\banksettlement.php 279
+ERROR - 2019-01-08 06:25:56 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\banksettlement.php 278
+ERROR - 2019-01-08 06:25:56 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\banksettlement.php 278
+ERROR - 2019-01-08 06:25:56 --> Severity: Notice --> Undefined variable: rel C:\xampp\htdocs\ria\application\views\banksettlement.php 279
+ERROR - 2019-01-08 06:25:56 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\banksettlement.php 278
+ERROR - 2019-01-08 06:25:56 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\banksettlement.php 279
+ERROR - 2019-01-08 06:25:56 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\banksettlement.php 279
+ERROR - 2019-01-08 06:25:56 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\banksettlement.php 278
+ERROR - 2019-01-08 06:25:56 --> Severity: Notice --> Undefined variable: t C:\xampp\htdocs\ria\application\views\banksettlement.php 278
+ERROR - 2019-01-08 06:25:56 --> Severity: Notice --> Undefined variable: t C:\xampp\htdocs\ria\application\views\banksettlement.php 278
+ERROR - 2019-01-08 06:25:56 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\banksettlement.php 279
+ERROR - 2019-01-08 06:25:56 --> Severity: Notice --> Undefined variable: t C:\xampp\htdocs\ria\application\views\banksettlement.php 278
+ERROR - 2019-01-08 06:25:56 --> Severity: Notice --> Undefined variable: rel C:\xampp\htdocs\ria\application\views\banksettlement.php 279
+ERROR - 2019-01-08 06:25:56 --> Severity: Notice --> Undefined variable: t C:\xampp\htdocs\ria\application\views\banksettlement.php 278
+ERROR - 2019-01-08 06:25:56 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\banksettlement.php 278
+ERROR - 2019-01-08 06:25:56 --> Severity: Notice --> Undefined variable: rel C:\xampp\htdocs\ria\application\views\banksettlement.php 279
+ERROR - 2019-01-08 06:25:56 --> Severity: Notice --> Undefined variable: t C:\xampp\htdocs\ria\application\views\banksettlement.php 278
+ERROR - 2019-01-08 06:25:56 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\banksettlement.php 278
+ERROR - 2019-01-08 06:25:56 --> Severity: Notice --> Undefined variable: t C:\xampp\htdocs\ria\application\views\banksettlement.php 278
+ERROR - 2019-01-08 06:25:56 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\banksettlement.php 279
+ERROR - 2019-01-08 06:25:56 --> Severity: Notice --> Undefined variable: t C:\xampp\htdocs\ria\application\views\banksettlement.php 278
+ERROR - 2019-01-08 06:25:56 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\banksettlement.php 278
+ERROR - 2019-01-08 06:25:56 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\banksettlement.php 278
+ERROR - 2019-01-08 06:25:56 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\banksettlement.php 279
+ERROR - 2019-01-08 06:25:56 --> Severity: Notice --> Undefined variable: rel C:\xampp\htdocs\ria\application\views\banksettlement.php 279
+ERROR - 2019-01-08 06:25:56 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\banksettlement.php 278
+ERROR - 2019-01-08 06:25:56 --> Severity: Notice --> Undefined variable: rel C:\xampp\htdocs\ria\application\views\banksettlement.php 279
+ERROR - 2019-01-08 06:25:56 --> Severity: Notice --> Undefined variable: t C:\xampp\htdocs\ria\application\views\banksettlement.php 278
+ERROR - 2019-01-08 06:25:56 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\banksettlement.php 279
+ERROR - 2019-01-08 06:25:56 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\banksettlement.php 278
+ERROR - 2019-01-08 06:25:56 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\banksettlement.php 278
+ERROR - 2019-01-08 06:25:56 --> Severity: Notice --> Undefined variable: t C:\xampp\htdocs\ria\application\views\banksettlement.php 278
+ERROR - 2019-01-08 06:25:56 --> Severity: Notice --> Undefined variable: t C:\xampp\htdocs\ria\application\views\banksettlement.php 278
+ERROR - 2019-01-08 06:25:56 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\banksettlement.php 278
+ERROR - 2019-01-08 06:25:56 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\banksettlement.php 279
+ERROR - 2019-01-08 06:25:56 --> Severity: Notice --> Undefined variable: t C:\xampp\htdocs\ria\application\views\banksettlement.php 278
+ERROR - 2019-01-08 06:25:56 --> Severity: Notice --> Undefined variable: t C:\xampp\htdocs\ria\application\views\banksettlement.php 278
+ERROR - 2019-01-08 06:25:56 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\banksettlement.php 278
+ERROR - 2019-01-08 06:25:56 --> Severity: Notice --> Undefined variable: rel C:\xampp\htdocs\ria\application\views\banksettlement.php 279
+ERROR - 2019-01-08 06:25:56 --> Severity: Notice --> Undefined variable: t C:\xampp\htdocs\ria\application\views\banksettlement.php 278
+ERROR - 2019-01-08 06:25:56 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\banksettlement.php 278
+ERROR - 2019-01-08 06:25:56 --> Severity: Notice --> Undefined variable: t C:\xampp\htdocs\ria\application\views\banksettlement.php 278
+ERROR - 2019-01-08 06:25:56 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\banksettlement.php 278
+ERROR - 2019-01-08 06:25:56 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\banksettlement.php 278
+ERROR - 2019-01-08 06:25:56 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\banksettlement.php 278
+ERROR - 2019-01-08 06:25:56 --> Severity: Notice --> Undefined variable: rel C:\xampp\htdocs\ria\application\views\banksettlement.php 279
+ERROR - 2019-01-08 06:25:57 --> Severity: Notice --> Undefined variable: t C:\xampp\htdocs\ria\application\views\banksettlement.php 278
+ERROR - 2019-01-08 06:25:57 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\banksettlement.php 279
+ERROR - 2019-01-08 06:25:57 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\banksettlement.php 279
+ERROR - 2019-01-08 06:25:57 --> Severity: Notice --> Undefined variable: rel C:\xampp\htdocs\ria\application\views\banksettlement.php 279
+ERROR - 2019-01-08 06:25:57 --> Severity: Notice --> Undefined variable: rel C:\xampp\htdocs\ria\application\views\banksettlement.php 279
+ERROR - 2019-01-08 06:25:57 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\banksettlement.php 278
+ERROR - 2019-01-08 06:25:57 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\banksettlement.php 279
+ERROR - 2019-01-08 06:25:57 --> Severity: Notice --> Undefined variable: t C:\xampp\htdocs\ria\application\views\banksettlement.php 278
+ERROR - 2019-01-08 06:25:57 --> Severity: Notice --> Undefined variable: rel C:\xampp\htdocs\ria\application\views\banksettlement.php 279
+ERROR - 2019-01-08 06:25:57 --> Severity: Notice --> Undefined variable: t C:\xampp\htdocs\ria\application\views\banksettlement.php 278
+ERROR - 2019-01-08 06:25:57 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\banksettlement.php 279
+ERROR - 2019-01-08 06:25:57 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\banksettlement.php 278
+ERROR - 2019-01-08 06:25:57 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\banksettlement.php 279
+ERROR - 2019-01-08 06:25:57 --> Severity: Notice --> Undefined variable: t C:\xampp\htdocs\ria\application\views\banksettlement.php 278
+ERROR - 2019-01-08 06:25:57 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\banksettlement.php 278
+ERROR - 2019-01-08 06:25:57 --> Severity: Notice --> Undefined variable: t C:\xampp\htdocs\ria\application\views\banksettlement.php 278
+ERROR - 2019-01-08 06:25:57 --> Severity: Notice --> Undefined variable: t C:\xampp\htdocs\ria\application\views\banksettlement.php 278
+ERROR - 2019-01-08 06:25:57 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\banksettlement.php 278
+ERROR - 2019-01-08 06:25:57 --> Severity: Notice --> Undefined variable: t C:\xampp\htdocs\ria\application\views\banksettlement.php 278
+ERROR - 2019-01-08 06:25:57 --> Severity: Notice --> Undefined variable: rel C:\xampp\htdocs\ria\application\views\banksettlement.php 279
+ERROR - 2019-01-08 06:25:57 --> Severity: Notice --> Undefined variable: t C:\xampp\htdocs\ria\application\views\banksettlement.php 278
+ERROR - 2019-01-08 06:25:57 --> Severity: Notice --> Undefined variable: t C:\xampp\htdocs\ria\application\views\banksettlement.php 278
+ERROR - 2019-01-08 06:25:57 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\banksettlement.php 278
+ERROR - 2019-01-08 06:25:57 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\banksettlement.php 278
+ERROR - 2019-01-08 06:25:57 --> Severity: Notice --> Undefined variable: t C:\xampp\htdocs\ria\application\views\banksettlement.php 278
+ERROR - 2019-01-08 06:25:57 --> Severity: Notice --> Undefined variable: t C:\xampp\htdocs\ria\application\views\banksettlement.php 278
+ERROR - 2019-01-08 06:25:57 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\banksettlement.php 278
+ERROR - 2019-01-08 06:25:57 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\banksettlement.php 279
+ERROR - 2019-01-08 06:25:57 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\banksettlement.php 278
+ERROR - 2019-01-08 06:25:57 --> Severity: Notice --> Undefined variable: rel C:\xampp\htdocs\ria\application\views\banksettlement.php 279
+ERROR - 2019-01-08 06:25:57 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\banksettlement.php 278
+ERROR - 2019-01-08 06:25:57 --> Severity: Notice --> Undefined variable: rel C:\xampp\htdocs\ria\application\views\banksettlement.php 279
+ERROR - 2019-01-08 06:25:57 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\banksettlement.php 278
+ERROR - 2019-01-08 06:25:57 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\banksettlement.php 279
+ERROR - 2019-01-08 06:25:57 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\banksettlement.php 278
+ERROR - 2019-01-08 06:25:57 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\banksettlement.php 278
+ERROR - 2019-01-08 06:25:57 --> Severity: Notice --> Undefined variable: t C:\xampp\htdocs\ria\application\views\banksettlement.php 278
+ERROR - 2019-01-08 06:25:57 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\banksettlement.php 279
+ERROR - 2019-01-08 06:25:57 --> Severity: Notice --> Undefined variable: t C:\xampp\htdocs\ria\application\views\banksettlement.php 278
+ERROR - 2019-01-08 06:25:57 --> Severity: Notice --> Undefined variable: t C:\xampp\htdocs\ria\application\views\banksettlement.php 278
+ERROR - 2019-01-08 06:25:57 --> Severity: Notice --> Undefined variable: rel C:\xampp\htdocs\ria\application\views\banksettlement.php 279
+ERROR - 2019-01-08 06:25:57 --> Severity: Notice --> Undefined variable: rel C:\xampp\htdocs\ria\application\views\banksettlement.php 279
+ERROR - 2019-01-08 06:25:57 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\banksettlement.php 278
+ERROR - 2019-01-08 06:25:57 --> Severity: Notice --> Undefined variable: t C:\xampp\htdocs\ria\application\views\banksettlement.php 278
+ERROR - 2019-01-08 06:25:57 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\banksettlement.php 278
+ERROR - 2019-01-08 06:25:57 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\banksettlement.php 278
+ERROR - 2019-01-08 06:25:57 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\banksettlement.php 278
+ERROR - 2019-01-08 06:25:57 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\banksettlement.php 279
+ERROR - 2019-01-08 06:25:57 --> Severity: Notice --> Undefined variable: rel C:\xampp\htdocs\ria\application\views\banksettlement.php 279
+ERROR - 2019-01-08 06:25:57 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\banksettlement.php 279
+ERROR - 2019-01-08 06:25:57 --> Severity: Notice --> Undefined variable: rel C:\xampp\htdocs\ria\application\views\banksettlement.php 279
+ERROR - 2019-01-08 06:25:57 --> Severity: Notice --> Undefined variable: rel C:\xampp\htdocs\ria\application\views\banksettlement.php 279
+ERROR - 2019-01-08 06:25:57 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\banksettlement.php 279
+ERROR - 2019-01-08 06:25:57 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\banksettlement.php 279
+ERROR - 2019-01-08 06:25:57 --> Severity: Notice --> Undefined variable: t C:\xampp\htdocs\ria\application\views\banksettlement.php 278
+ERROR - 2019-01-08 06:25:57 --> Severity: Notice --> Undefined variable: t C:\xampp\htdocs\ria\application\views\banksettlement.php 278
+ERROR - 2019-01-08 06:25:57 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\banksettlement.php 279
+ERROR - 2019-01-08 06:25:57 --> Severity: Notice --> Undefined variable: t C:\xampp\htdocs\ria\application\views\banksettlement.php 278
+ERROR - 2019-01-08 06:25:57 --> Severity: Notice --> Undefined variable: t C:\xampp\htdocs\ria\application\views\banksettlement.php 278
+ERROR - 2019-01-08 06:25:57 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\banksettlement.php 278
+ERROR - 2019-01-08 06:25:57 --> Severity: Notice --> Undefined variable: t C:\xampp\htdocs\ria\application\views\banksettlement.php 278
+ERROR - 2019-01-08 06:25:57 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\banksettlement.php 278
+ERROR - 2019-01-08 06:25:57 --> Severity: Notice --> Undefined variable: t C:\xampp\htdocs\ria\application\views\banksettlement.php 278
+ERROR - 2019-01-08 06:25:57 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\banksettlement.php 278
+ERROR - 2019-01-08 06:25:57 --> Severity: Notice --> Undefined variable: t C:\xampp\htdocs\ria\application\views\banksettlement.php 278
+ERROR - 2019-01-08 06:25:57 --> Severity: Notice --> Undefined variable: rel C:\xampp\htdocs\ria\application\views\banksettlement.php 279
+ERROR - 2019-01-08 06:25:57 --> Severity: Notice --> Undefined variable: t C:\xampp\htdocs\ria\application\views\banksettlement.php 278
+ERROR - 2019-01-08 06:25:57 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\banksettlement.php 278
+ERROR - 2019-01-08 06:25:57 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\banksettlement.php 278
+ERROR - 2019-01-08 06:25:57 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\banksettlement.php 278
+ERROR - 2019-01-08 06:25:57 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\banksettlement.php 278
+ERROR - 2019-01-08 06:25:57 --> Severity: Notice --> Undefined variable: t C:\xampp\htdocs\ria\application\views\banksettlement.php 278
+ERROR - 2019-01-08 06:25:57 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\banksettlement.php 279
+ERROR - 2019-01-08 06:25:57 --> Severity: Notice --> Undefined variable: t C:\xampp\htdocs\ria\application\views\banksettlement.php 278
+ERROR - 2019-01-08 06:25:57 --> Severity: Notice --> Undefined variable: t C:\xampp\htdocs\ria\application\views\banksettlement.php 278
+ERROR - 2019-01-08 06:25:57 --> Severity: Notice --> Undefined variable: t C:\xampp\htdocs\ria\application\views\banksettlement.php 278
+ERROR - 2019-01-08 06:25:57 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\banksettlement.php 278
+ERROR - 2019-01-08 06:25:57 --> Severity: Notice --> Undefined variable: rel C:\xampp\htdocs\ria\application\views\banksettlement.php 279
+ERROR - 2019-01-08 06:25:57 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\banksettlement.php 278
+ERROR - 2019-01-08 06:25:57 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\banksettlement.php 279
+ERROR - 2019-01-08 06:25:57 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\banksettlement.php 278
+ERROR - 2019-01-08 06:25:57 --> Severity: Notice --> Undefined variable: rel C:\xampp\htdocs\ria\application\views\banksettlement.php 279
+ERROR - 2019-01-08 06:25:57 --> Severity: Notice --> Undefined variable: t C:\xampp\htdocs\ria\application\views\banksettlement.php 278
+ERROR - 2019-01-08 06:25:57 --> Severity: Notice --> Undefined variable: rel C:\xampp\htdocs\ria\application\views\banksettlement.php 279
+ERROR - 2019-01-08 06:25:57 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\banksettlement.php 279
+ERROR - 2019-01-08 06:25:57 --> Severity: Notice --> Undefined variable: rel C:\xampp\htdocs\ria\application\views\banksettlement.php 279
+ERROR - 2019-01-08 06:25:57 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\banksettlement.php 279
+ERROR - 2019-01-08 06:25:57 --> Severity: Notice --> Undefined variable: t C:\xampp\htdocs\ria\application\views\banksettlement.php 278
+ERROR - 2019-01-08 06:25:57 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\banksettlement.php 279
+ERROR - 2019-01-08 06:25:57 --> Severity: Notice --> Undefined variable: t C:\xampp\htdocs\ria\application\views\banksettlement.php 278
+ERROR - 2019-01-08 06:25:57 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\banksettlement.php 278
+ERROR - 2019-01-08 06:25:57 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\banksettlement.php 278
+ERROR - 2019-01-08 06:25:57 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\banksettlement.php 278
+ERROR - 2019-01-08 06:25:57 --> Severity: Notice --> Undefined variable: rel C:\xampp\htdocs\ria\application\views\banksettlement.php 279
+ERROR - 2019-01-08 06:25:57 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\banksettlement.php 278
+ERROR - 2019-01-08 06:25:57 --> Severity: Notice --> Undefined variable: t C:\xampp\htdocs\ria\application\views\banksettlement.php 278
+ERROR - 2019-01-08 06:25:57 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\banksettlement.php 278
+ERROR - 2019-01-08 06:25:57 --> Severity: Notice --> Undefined variable: t C:\xampp\htdocs\ria\application\views\banksettlement.php 278
+ERROR - 2019-01-08 06:25:57 --> Severity: Notice --> Undefined variable: t C:\xampp\htdocs\ria\application\views\banksettlement.php 278
+ERROR - 2019-01-08 06:25:57 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\banksettlement.php 278
+ERROR - 2019-01-08 06:25:57 --> Severity: Notice --> Undefined variable: t C:\xampp\htdocs\ria\application\views\banksettlement.php 278
+ERROR - 2019-01-08 06:25:57 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\banksettlement.php 278
+ERROR - 2019-01-08 06:25:57 --> Severity: Notice --> Undefined variable: t C:\xampp\htdocs\ria\application\views\banksettlement.php 278
+ERROR - 2019-01-08 06:25:57 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\banksettlement.php 278
+ERROR - 2019-01-08 06:25:57 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\banksettlement.php 279
+ERROR - 2019-01-08 06:25:57 --> Severity: Notice --> Undefined variable: rel C:\xampp\htdocs\ria\application\views\banksettlement.php 279
+ERROR - 2019-01-08 06:25:57 --> Severity: Notice --> Undefined variable: t C:\xampp\htdocs\ria\application\views\banksettlement.php 278
+ERROR - 2019-01-08 06:25:57 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\banksettlement.php 278
+ERROR - 2019-01-08 06:25:57 --> Severity: Notice --> Undefined variable: t C:\xampp\htdocs\ria\application\views\banksettlement.php 278
+ERROR - 2019-01-08 06:25:57 --> Severity: Notice --> Undefined variable: t C:\xampp\htdocs\ria\application\views\banksettlement.php 278
+ERROR - 2019-01-08 06:25:57 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\banksettlement.php 279
+ERROR - 2019-01-08 06:25:57 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\banksettlement.php 278
+ERROR - 2019-01-08 06:25:58 --> Severity: Notice --> Undefined variable: rel C:\xampp\htdocs\ria\application\views\banksettlement.php 279
+ERROR - 2019-01-08 06:25:58 --> Severity: Notice --> Undefined variable: t C:\xampp\htdocs\ria\application\views\banksettlement.php 278
+ERROR - 2019-01-08 06:25:58 --> Severity: Notice --> Undefined variable: rel C:\xampp\htdocs\ria\application\views\banksettlement.php 279
+ERROR - 2019-01-08 06:25:58 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\banksettlement.php 278
+ERROR - 2019-01-08 06:25:58 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\banksettlement.php 278
+ERROR - 2019-01-08 06:25:58 --> Severity: Notice --> Undefined variable: rel C:\xampp\htdocs\ria\application\views\banksettlement.php 279
+ERROR - 2019-01-08 06:25:58 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\banksettlement.php 279
+ERROR - 2019-01-08 06:25:58 --> Severity: Notice --> Undefined variable: t C:\xampp\htdocs\ria\application\views\banksettlement.php 278
+ERROR - 2019-01-08 06:25:58 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\banksettlement.php 278
+ERROR - 2019-01-08 06:25:58 --> Severity: Notice --> Undefined variable: rel C:\xampp\htdocs\ria\application\views\banksettlement.php 279
+ERROR - 2019-01-08 06:25:58 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\banksettlement.php 279
+ERROR - 2019-01-08 06:25:58 --> Severity: Notice --> Undefined variable: t C:\xampp\htdocs\ria\application\views\banksettlement.php 278
+ERROR - 2019-01-08 06:25:58 --> Severity: Notice --> Undefined variable: rel C:\xampp\htdocs\ria\application\views\banksettlement.php 279
+ERROR - 2019-01-08 06:25:58 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\banksettlement.php 278
+ERROR - 2019-01-08 06:25:58 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\banksettlement.php 279
+ERROR - 2019-01-08 06:25:58 --> Severity: Notice --> Undefined variable: t C:\xampp\htdocs\ria\application\views\banksettlement.php 278
+ERROR - 2019-01-08 06:25:58 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\banksettlement.php 278
+ERROR - 2019-01-08 06:25:58 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\banksettlement.php 278
+ERROR - 2019-01-08 06:25:58 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\banksettlement.php 279
+ERROR - 2019-01-08 06:25:58 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\banksettlement.php 279
+ERROR - 2019-01-08 06:25:58 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\banksettlement.php 278
+ERROR - 2019-01-08 06:25:58 --> Severity: Notice --> Undefined variable: t C:\xampp\htdocs\ria\application\views\banksettlement.php 278
+ERROR - 2019-01-08 06:25:58 --> Severity: Notice --> Undefined variable: rel C:\xampp\htdocs\ria\application\views\banksettlement.php 279
+ERROR - 2019-01-08 06:25:58 --> Severity: Notice --> Undefined variable: t C:\xampp\htdocs\ria\application\views\banksettlement.php 278
+ERROR - 2019-01-08 06:25:58 --> Severity: Notice --> Undefined variable: t C:\xampp\htdocs\ria\application\views\banksettlement.php 278
+ERROR - 2019-01-08 06:25:58 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\banksettlement.php 279
+ERROR - 2019-01-08 06:25:58 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\banksettlement.php 278
+ERROR - 2019-01-08 06:25:58 --> Severity: Notice --> Undefined variable: t C:\xampp\htdocs\ria\application\views\banksettlement.php 278
+ERROR - 2019-01-08 06:25:58 --> Severity: Notice --> Undefined variable: t C:\xampp\htdocs\ria\application\views\banksettlement.php 278
+ERROR - 2019-01-08 06:25:58 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\banksettlement.php 278
+ERROR - 2019-01-08 06:25:58 --> Severity: Notice --> Undefined variable: rel C:\xampp\htdocs\ria\application\views\banksettlement.php 279
+ERROR - 2019-01-08 06:25:58 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\banksettlement.php 278
+ERROR - 2019-01-08 06:25:58 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\banksettlement.php 278
+ERROR - 2019-01-08 06:25:58 --> Severity: Notice --> Undefined variable: t C:\xampp\htdocs\ria\application\views\banksettlement.php 278
+ERROR - 2019-01-08 06:25:58 --> Severity: Notice --> Undefined variable: rel C:\xampp\htdocs\ria\application\views\banksettlement.php 279
+ERROR - 2019-01-08 06:25:58 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\banksettlement.php 278
+ERROR - 2019-01-08 06:25:58 --> Severity: Notice --> Undefined variable: t C:\xampp\htdocs\ria\application\views\banksettlement.php 278
+ERROR - 2019-01-08 06:25:58 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\banksettlement.php 279
+ERROR - 2019-01-08 06:25:58 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\banksettlement.php 279
+ERROR - 2019-01-08 06:25:58 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\banksettlement.php 278
+ERROR - 2019-01-08 06:25:58 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\banksettlement.php 278
+ERROR - 2019-01-08 06:25:58 --> Severity: Notice --> Undefined variable: rel C:\xampp\htdocs\ria\application\views\banksettlement.php 279
+ERROR - 2019-01-08 06:25:58 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\banksettlement.php 279
+ERROR - 2019-01-08 06:25:58 --> Severity: Notice --> Undefined variable: rel C:\xampp\htdocs\ria\application\views\banksettlement.php 279
+ERROR - 2019-01-08 06:25:58 --> Severity: Notice --> Undefined variable: rel C:\xampp\htdocs\ria\application\views\banksettlement.php 279
+ERROR - 2019-01-08 06:25:58 --> Severity: Notice --> Undefined variable: t C:\xampp\htdocs\ria\application\views\banksettlement.php 278
+ERROR - 2019-01-08 06:25:58 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\banksettlement.php 279
+ERROR - 2019-01-08 06:25:58 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\banksettlement.php 278
+ERROR - 2019-01-08 06:25:58 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\banksettlement.php 279
+ERROR - 2019-01-08 06:25:58 --> Severity: Notice --> Undefined variable: t C:\xampp\htdocs\ria\application\views\banksettlement.php 278
+ERROR - 2019-01-08 06:25:58 --> Severity: Notice --> Undefined variable: t C:\xampp\htdocs\ria\application\views\banksettlement.php 278
+ERROR - 2019-01-08 06:25:58 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\banksettlement.php 278
+ERROR - 2019-01-08 06:25:58 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\banksettlement.php 278
+ERROR - 2019-01-08 06:25:58 --> Severity: Notice --> Undefined variable: rel C:\xampp\htdocs\ria\application\views\banksettlement.php 279
+ERROR - 2019-01-08 06:25:58 --> Severity: Notice --> Undefined variable: t C:\xampp\htdocs\ria\application\views\banksettlement.php 278
+ERROR - 2019-01-08 06:25:58 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\banksettlement.php 278
+ERROR - 2019-01-08 06:25:58 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\banksettlement.php 279
+ERROR - 2019-01-08 06:25:58 --> Severity: Notice --> Undefined variable: rel C:\xampp\htdocs\ria\application\views\banksettlement.php 279
+ERROR - 2019-01-08 06:25:58 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\banksettlement.php 279
+ERROR - 2019-01-08 06:26:17 --> Severity: Notice --> Undefined variable: fdate C:\xampp\htdocs\ria\application\controllers\cashbook.php 1738
+ERROR - 2019-01-08 06:26:17 --> Severity: Notice --> Undefined variable: tdate C:\xampp\htdocs\ria\application\controllers\cashbook.php 1738
+ERROR - 2019-01-08 06:26:17 --> Severity: Notice --> Undefined variable: fa C:\xampp\htdocs\ria\application\controllers\cashbook.php 1738
+ERROR - 2019-01-08 06:26:17 --> Severity: Notice --> Undefined variable: aa C:\xampp\htdocs\ria\application\controllers\cashbook.php 1738
+ERROR - 2019-01-08 06:26:18 --> Severity: Notice --> Undefined variable: financialyear C:\xampp\htdocs\ria\application\views\bankstatement.php 2
+ERROR - 2019-01-08 06:26:18 --> Severity: Warning --> Invalid argument supplied for foreach() C:\xampp\htdocs\ria\application\views\bankstatement.php 2
+ERROR - 2019-01-08 06:26:18 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 87
+ERROR - 2019-01-08 06:26:18 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 87
+ERROR - 2019-01-08 06:26:18 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 88
+ERROR - 2019-01-08 06:26:18 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 88
+ERROR - 2019-01-08 06:26:18 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 89
+ERROR - 2019-01-08 06:26:18 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 89
+ERROR - 2019-01-08 06:26:18 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 139
+ERROR - 2019-01-08 06:26:18 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 139
+ERROR - 2019-01-08 06:26:18 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 140
+ERROR - 2019-01-08 06:26:18 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 140
+ERROR - 2019-01-08 06:26:18 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 141
+ERROR - 2019-01-08 06:26:18 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 141
+ERROR - 2019-01-08 06:26:26 --> Severity: Notice --> Undefined variable: financialyear C:\xampp\htdocs\ria\application\views\banksettlement.php 4
+ERROR - 2019-01-08 06:26:26 --> Severity: Warning --> Invalid argument supplied for foreach() C:\xampp\htdocs\ria\application\views\banksettlement.php 4
+ERROR - 2019-01-08 06:26:26 --> Severity: Notice --> Undefined variable: t C:\xampp\htdocs\ria\application\views\banksettlement.php 278
+ERROR - 2019-01-08 06:26:26 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\banksettlement.php 278
+ERROR - 2019-01-08 06:26:26 --> Severity: Notice --> Undefined variable: t C:\xampp\htdocs\ria\application\views\banksettlement.php 278
+ERROR - 2019-01-08 06:26:26 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\banksettlement.php 278
+ERROR - 2019-01-08 06:26:26 --> Severity: Notice --> Undefined variable: rel C:\xampp\htdocs\ria\application\views\banksettlement.php 279
+ERROR - 2019-01-08 06:26:26 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\banksettlement.php 279
+ERROR - 2019-01-08 06:26:26 --> Severity: Notice --> Undefined variable: t C:\xampp\htdocs\ria\application\views\banksettlement.php 278
+ERROR - 2019-01-08 06:26:26 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\banksettlement.php 278
+ERROR - 2019-01-08 06:26:26 --> Severity: Notice --> Undefined variable: t C:\xampp\htdocs\ria\application\views\banksettlement.php 278
+ERROR - 2019-01-08 06:26:26 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\banksettlement.php 278
+ERROR - 2019-01-08 06:26:26 --> Severity: Notice --> Undefined variable: rel C:\xampp\htdocs\ria\application\views\banksettlement.php 279
+ERROR - 2019-01-08 06:26:26 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\banksettlement.php 279
+ERROR - 2019-01-08 06:26:26 --> Severity: Notice --> Undefined variable: t C:\xampp\htdocs\ria\application\views\banksettlement.php 278
+ERROR - 2019-01-08 06:26:26 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\banksettlement.php 278
+ERROR - 2019-01-08 06:26:26 --> Severity: Notice --> Undefined variable: t C:\xampp\htdocs\ria\application\views\banksettlement.php 278
+ERROR - 2019-01-08 06:26:26 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\banksettlement.php 278
+ERROR - 2019-01-08 06:26:26 --> Severity: Notice --> Undefined variable: rel C:\xampp\htdocs\ria\application\views\banksettlement.php 279
+ERROR - 2019-01-08 06:26:26 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\banksettlement.php 279
+ERROR - 2019-01-08 06:26:26 --> Severity: Notice --> Undefined variable: t C:\xampp\htdocs\ria\application\views\banksettlement.php 278
+ERROR - 2019-01-08 06:26:26 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\banksettlement.php 278
+ERROR - 2019-01-08 06:26:26 --> Severity: Notice --> Undefined variable: t C:\xampp\htdocs\ria\application\views\banksettlement.php 278
+ERROR - 2019-01-08 06:26:26 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\banksettlement.php 278
+ERROR - 2019-01-08 06:26:26 --> Severity: Notice --> Undefined variable: rel C:\xampp\htdocs\ria\application\views\banksettlement.php 279
+ERROR - 2019-01-08 06:26:26 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\banksettlement.php 279
+ERROR - 2019-01-08 06:26:26 --> Severity: Notice --> Undefined variable: t C:\xampp\htdocs\ria\application\views\banksettlement.php 278
+ERROR - 2019-01-08 06:26:27 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\banksettlement.php 278
+ERROR - 2019-01-08 06:26:27 --> Severity: Notice --> Undefined variable: t C:\xampp\htdocs\ria\application\views\banksettlement.php 278
+ERROR - 2019-01-08 06:26:27 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\banksettlement.php 278
+ERROR - 2019-01-08 06:26:27 --> Severity: Notice --> Undefined variable: rel C:\xampp\htdocs\ria\application\views\banksettlement.php 279
+ERROR - 2019-01-08 06:26:27 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\banksettlement.php 279
+ERROR - 2019-01-08 06:26:27 --> Severity: Notice --> Undefined variable: t C:\xampp\htdocs\ria\application\views\banksettlement.php 278
+ERROR - 2019-01-08 06:26:27 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\banksettlement.php 278
+ERROR - 2019-01-08 06:26:27 --> Severity: Notice --> Undefined variable: t C:\xampp\htdocs\ria\application\views\banksettlement.php 278
+ERROR - 2019-01-08 06:26:27 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\banksettlement.php 278
+ERROR - 2019-01-08 06:26:27 --> Severity: Notice --> Undefined variable: rel C:\xampp\htdocs\ria\application\views\banksettlement.php 279
+ERROR - 2019-01-08 06:26:27 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\banksettlement.php 279
+ERROR - 2019-01-08 06:26:35 --> Severity: Notice --> Undefined variable: fdate C:\xampp\htdocs\ria\application\controllers\cashbook.php 1738
+ERROR - 2019-01-08 06:26:35 --> Severity: Notice --> Undefined variable: tdate C:\xampp\htdocs\ria\application\controllers\cashbook.php 1738
+ERROR - 2019-01-08 06:26:35 --> Severity: Notice --> Undefined variable: fa C:\xampp\htdocs\ria\application\controllers\cashbook.php 1738
+ERROR - 2019-01-08 06:26:35 --> Severity: Notice --> Undefined variable: aa C:\xampp\htdocs\ria\application\controllers\cashbook.php 1738
+ERROR - 2019-01-08 06:26:35 --> Severity: Notice --> Undefined variable: financialyear C:\xampp\htdocs\ria\application\views\bankstatement.php 2
+ERROR - 2019-01-08 06:26:35 --> Severity: Warning --> Invalid argument supplied for foreach() C:\xampp\htdocs\ria\application\views\bankstatement.php 2
+ERROR - 2019-01-08 06:26:35 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 87
+ERROR - 2019-01-08 06:26:36 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 87
+ERROR - 2019-01-08 06:26:36 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 88
+ERROR - 2019-01-08 06:26:36 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 88
+ERROR - 2019-01-08 06:26:36 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 89
+ERROR - 2019-01-08 06:26:36 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 89
+ERROR - 2019-01-08 06:26:36 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 139
+ERROR - 2019-01-08 06:26:36 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 139
+ERROR - 2019-01-08 06:26:36 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 140
+ERROR - 2019-01-08 06:26:36 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 140
+ERROR - 2019-01-08 06:26:36 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 141
+ERROR - 2019-01-08 06:26:36 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 141
+ERROR - 2019-01-08 06:26:50 --> Severity: Notice --> Undefined variable: financialyear C:\xampp\htdocs\ria\application\views\bankdebit.php 2
+ERROR - 2019-01-08 06:26:50 --> Severity: Warning --> Invalid argument supplied for foreach() C:\xampp\htdocs\ria\application\views\bankdebit.php 2
+ERROR - 2019-01-08 06:26:57 --> Severity: Notice --> Undefined variable: financialyear C:\xampp\htdocs\ria\application\views\bankdebit.php 2
+ERROR - 2019-01-08 06:26:57 --> Severity: Warning --> Invalid argument supplied for foreach() C:\xampp\htdocs\ria\application\views\bankdebit.php 2
+ERROR - 2019-01-08 06:26:57 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankdebit.php 167
+ERROR - 2019-01-08 06:26:57 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\ria\application\views\bankdebit.php 169
+ERROR - 2019-01-08 06:26:57 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankdebit.php 167
+ERROR - 2019-01-08 06:26:57 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\ria\application\views\bankdebit.php 169
+ERROR - 2019-01-08 06:26:57 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankdebit.php 167
+ERROR - 2019-01-08 06:26:57 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\ria\application\views\bankdebit.php 169
+ERROR - 2019-01-08 06:26:57 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankdebit.php 167
+ERROR - 2019-01-08 06:26:57 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\ria\application\views\bankdebit.php 169
+ERROR - 2019-01-08 06:26:57 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankdebit.php 167
+ERROR - 2019-01-08 06:26:57 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\ria\application\views\bankdebit.php 169
+ERROR - 2019-01-08 06:26:57 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankdebit.php 167
+ERROR - 2019-01-08 06:26:57 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\ria\application\views\bankdebit.php 169
+ERROR - 2019-01-08 06:26:57 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankdebit.php 167
+ERROR - 2019-01-08 06:26:57 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\ria\application\views\bankdebit.php 169
+ERROR - 2019-01-08 06:26:57 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankdebit.php 167
+ERROR - 2019-01-08 06:26:57 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\ria\application\views\bankdebit.php 169
+ERROR - 2019-01-08 06:26:57 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankdebit.php 167
+ERROR - 2019-01-08 06:26:57 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\ria\application\views\bankdebit.php 169
+ERROR - 2019-01-08 06:26:57 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankdebit.php 167
+ERROR - 2019-01-08 06:26:57 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\ria\application\views\bankdebit.php 169
+ERROR - 2019-01-08 06:26:57 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankdebit.php 167
+ERROR - 2019-01-08 06:26:58 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\ria\application\views\bankdebit.php 169
+ERROR - 2019-01-08 06:26:58 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankdebit.php 167
+ERROR - 2019-01-08 06:26:58 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\ria\application\views\bankdebit.php 169
+ERROR - 2019-01-08 06:26:58 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankdebit.php 167
+ERROR - 2019-01-08 06:26:58 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\ria\application\views\bankdebit.php 169
+ERROR - 2019-01-08 06:26:58 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankdebit.php 167
+ERROR - 2019-01-08 06:26:58 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\ria\application\views\bankdebit.php 169
+ERROR - 2019-01-08 06:26:58 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankdebit.php 167
+ERROR - 2019-01-08 06:26:58 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\ria\application\views\bankdebit.php 169
+ERROR - 2019-01-08 06:26:58 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankdebit.php 167
+ERROR - 2019-01-08 06:26:58 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\ria\application\views\bankdebit.php 169
+ERROR - 2019-01-08 06:26:58 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankdebit.php 167
+ERROR - 2019-01-08 06:26:58 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\ria\application\views\bankdebit.php 169
+ERROR - 2019-01-08 06:26:58 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankdebit.php 167
+ERROR - 2019-01-08 06:26:58 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\ria\application\views\bankdebit.php 169
+ERROR - 2019-01-08 06:26:58 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankdebit.php 167
+ERROR - 2019-01-08 06:26:58 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\ria\application\views\bankdebit.php 169
+ERROR - 2019-01-08 06:26:58 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankdebit.php 167
+ERROR - 2019-01-08 06:26:58 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\ria\application\views\bankdebit.php 169
+ERROR - 2019-01-08 06:26:58 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankdebit.php 167
+ERROR - 2019-01-08 06:26:58 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\ria\application\views\bankdebit.php 169
+ERROR - 2019-01-08 06:26:58 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankdebit.php 167
+ERROR - 2019-01-08 06:26:58 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\ria\application\views\bankdebit.php 169
+ERROR - 2019-01-08 06:26:58 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankdebit.php 167
+ERROR - 2019-01-08 06:26:58 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\ria\application\views\bankdebit.php 169
+ERROR - 2019-01-08 06:26:58 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankdebit.php 167
+ERROR - 2019-01-08 06:26:58 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\ria\application\views\bankdebit.php 169
+ERROR - 2019-01-08 06:26:59 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankdebit.php 167
+ERROR - 2019-01-08 06:26:59 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\ria\application\views\bankdebit.php 169
+ERROR - 2019-01-08 06:26:59 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankdebit.php 167
+ERROR - 2019-01-08 06:26:59 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\ria\application\views\bankdebit.php 169
+ERROR - 2019-01-08 06:26:59 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankdebit.php 167
+ERROR - 2019-01-08 06:26:59 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\ria\application\views\bankdebit.php 169
+ERROR - 2019-01-08 06:28:03 --> Severity: Notice --> Undefined variable: balancetocleared C:\xampp\htdocs\ria\application\controllers\cashbook.php 1933
+ERROR - 2019-01-08 06:28:03 --> Severity: Notice --> Undefined variable: balancetocleared C:\xampp\htdocs\ria\application\controllers\cashbook.php 1933
+ERROR - 2019-01-08 06:28:03 --> Severity: Notice --> Undefined variable: clearedblnce C:\xampp\htdocs\ria\application\controllers\cashbook.php 1942
+ERROR - 2019-01-08 06:28:03 --> Severity: Notice --> Undefined variable: balancetocleared C:\xampp\htdocs\ria\application\controllers\cashbook.php 1942
+ERROR - 2019-01-08 06:28:03 --> Severity: Notice --> Undefined variable: clearedblnce C:\xampp\htdocs\ria\application\controllers\cashbook.php 1942
+ERROR - 2019-01-08 06:28:03 --> Severity: Notice --> Undefined variable: balancetocleared C:\xampp\htdocs\ria\application\controllers\cashbook.php 1942
+ERROR - 2019-01-08 06:28:03 --> Severity: Notice --> Undefined variable: data C:\xampp\htdocs\ria\application\controllers\cashbook.php 2008
+ERROR - 2019-01-08 06:28:03 --> Severity: Notice --> Undefined variable: data C:\xampp\htdocs\ria\application\controllers\cashbook.php 2008
+ERROR - 2019-01-08 06:28:03 --> Severity: Notice --> Undefined variable: data C:\xampp\htdocs\ria\application\controllers\cashbook.php 2008
+ERROR - 2019-01-08 06:28:03 --> Severity: Notice --> Undefined variable: financialyear C:\xampp\htdocs\ria\application\views\bankstatement.php 2
+ERROR - 2019-01-08 06:28:03 --> Severity: Warning --> Invalid argument supplied for foreach() C:\xampp\htdocs\ria\application\views\bankstatement.php 2
+ERROR - 2019-01-08 06:28:03 --> Severity: Notice --> Undefined variable: bankreport C:\xampp\htdocs\ria\application\views\bankstatement.php 8
+ERROR - 2019-01-08 06:28:03 --> Severity: Warning --> Invalid argument supplied for foreach() C:\xampp\htdocs\ria\application\views\bankstatement.php 8
+ERROR - 2019-01-08 06:28:03 --> Severity: Notice --> Undefined variable: financialyear C:\xampp\htdocs\ria\application\views\bankstatement.php 2
+ERROR - 2019-01-08 06:28:03 --> Severity: Notice --> Undefined variable: financialyear C:\xampp\htdocs\ria\application\views\bankstatement.php 2
+ERROR - 2019-01-08 06:28:03 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 87
+ERROR - 2019-01-08 06:28:03 --> Severity: Warning --> Invalid argument supplied for foreach() C:\xampp\htdocs\ria\application\views\bankstatement.php 2
+ERROR - 2019-01-08 06:28:03 --> Severity: Warning --> Invalid argument supplied for foreach() C:\xampp\htdocs\ria\application\views\bankstatement.php 2
+ERROR - 2019-01-08 06:28:03 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 87
+ERROR - 2019-01-08 06:28:03 --> Severity: Notice --> Undefined variable: bankreport C:\xampp\htdocs\ria\application\views\bankstatement.php 8
+ERROR - 2019-01-08 06:28:03 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 88
+ERROR - 2019-01-08 06:28:03 --> Severity: Notice --> Undefined variable: bankreport C:\xampp\htdocs\ria\application\views\bankstatement.php 8
+ERROR - 2019-01-08 06:28:03 --> Severity: Warning --> Invalid argument supplied for foreach() C:\xampp\htdocs\ria\application\views\bankstatement.php 8
+ERROR - 2019-01-08 06:28:03 --> Severity: Warning --> Invalid argument supplied for foreach() C:\xampp\htdocs\ria\application\views\bankstatement.php 8
+ERROR - 2019-01-08 06:28:03 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 88
+ERROR - 2019-01-08 06:28:04 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 87
+ERROR - 2019-01-08 06:28:04 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 89
+ERROR - 2019-01-08 06:28:04 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 87
+ERROR - 2019-01-08 06:28:04 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 87
+ERROR - 2019-01-08 06:28:04 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 87
+ERROR - 2019-01-08 06:28:04 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 89
+ERROR - 2019-01-08 06:28:04 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 88
+ERROR - 2019-01-08 06:28:04 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 139
+ERROR - 2019-01-08 06:28:04 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 88
+ERROR - 2019-01-08 06:28:04 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 88
+ERROR - 2019-01-08 06:28:04 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 139
+ERROR - 2019-01-08 06:28:04 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 88
+ERROR - 2019-01-08 06:28:04 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 140
+ERROR - 2019-01-08 06:28:04 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 89
+ERROR - 2019-01-08 06:28:04 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 89
+ERROR - 2019-01-08 06:28:04 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 89
+ERROR - 2019-01-08 06:28:04 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 89
+ERROR - 2019-01-08 06:28:04 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 140
+ERROR - 2019-01-08 06:28:04 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 141
+ERROR - 2019-01-08 06:28:04 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 139
+ERROR - 2019-01-08 06:28:04 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 139
+ERROR - 2019-01-08 06:28:04 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 139
+ERROR - 2019-01-08 06:28:04 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 141
+ERROR - 2019-01-08 06:28:04 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 139
+ERROR - 2019-01-08 06:28:04 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 140
+ERROR - 2019-01-08 06:28:04 --> Severity: Notice --> Undefined variable: finyear C:\xampp\htdocs\ria\application\views\bankstatement.php 199
+ERROR - 2019-01-08 06:28:04 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 140
+ERROR - 2019-01-08 06:28:04 --> Severity: Warning --> Invalid argument supplied for foreach() C:\xampp\htdocs\ria\application\views\bankstatement.php 199
+ERROR - 2019-01-08 06:28:04 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 140
+ERROR - 2019-01-08 06:28:04 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 140
+ERROR - 2019-01-08 06:28:04 --> Severity: Notice --> Undefined variable: Bankname C:\xampp\htdocs\ria\application\views\bankstatement.php 237
+ERROR - 2019-01-08 06:28:04 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 141
+ERROR - 2019-01-08 06:28:04 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 141
+ERROR - 2019-01-08 06:28:04 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 141
+ERROR - 2019-01-08 06:28:04 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 141
+ERROR - 2019-01-08 06:28:04 --> Severity: Notice --> Undefined variable: finyear C:\xampp\htdocs\ria\application\views\bankstatement.php 199
+ERROR - 2019-01-08 06:28:04 --> Severity: Notice --> Undefined variable: finyear C:\xampp\htdocs\ria\application\views\bankstatement.php 199
+ERROR - 2019-01-08 06:28:04 --> Severity: Warning --> Invalid argument supplied for foreach() C:\xampp\htdocs\ria\application\views\bankstatement.php 199
+ERROR - 2019-01-08 06:28:04 --> Severity: Notice --> Undefined variable: Bankname C:\xampp\htdocs\ria\application\views\bankstatement.php 237
+ERROR - 2019-01-08 06:28:04 --> Severity: Warning --> Invalid argument supplied for foreach() C:\xampp\htdocs\ria\application\views\bankstatement.php 199
+ERROR - 2019-01-08 06:28:04 --> Severity: Notice --> Undefined variable: Bankname C:\xampp\htdocs\ria\application\views\bankstatement.php 237
+ERROR - 2019-01-08 06:28:05 --> Severity: Notice --> Undefined variable: fdate C:\xampp\htdocs\ria\application\controllers\cashbook.php 1738
+ERROR - 2019-01-08 06:28:05 --> Severity: Notice --> Undefined variable: tdate C:\xampp\htdocs\ria\application\controllers\cashbook.php 1738
+ERROR - 2019-01-08 06:28:05 --> Severity: Notice --> Undefined variable: fa C:\xampp\htdocs\ria\application\controllers\cashbook.php 1738
+ERROR - 2019-01-08 06:28:05 --> Severity: Notice --> Undefined variable: aa C:\xampp\htdocs\ria\application\controllers\cashbook.php 1738
+ERROR - 2019-01-08 06:28:05 --> Severity: Notice --> Undefined variable: fdate C:\xampp\htdocs\ria\application\controllers\cashbook.php 1738
+ERROR - 2019-01-08 06:28:05 --> Severity: Notice --> Undefined variable: tdate C:\xampp\htdocs\ria\application\controllers\cashbook.php 1738
+ERROR - 2019-01-08 06:28:05 --> Severity: Notice --> Undefined variable: fa C:\xampp\htdocs\ria\application\controllers\cashbook.php 1738
+ERROR - 2019-01-08 06:28:05 --> Severity: Notice --> Undefined variable: fdate C:\xampp\htdocs\ria\application\controllers\cashbook.php 1738
+ERROR - 2019-01-08 06:28:05 --> Severity: Notice --> Undefined variable: aa C:\xampp\htdocs\ria\application\controllers\cashbook.php 1738
+ERROR - 2019-01-08 06:28:05 --> Severity: Notice --> Undefined variable: tdate C:\xampp\htdocs\ria\application\controllers\cashbook.php 1738
+ERROR - 2019-01-08 06:28:05 --> Severity: Notice --> Undefined variable: fa C:\xampp\htdocs\ria\application\controllers\cashbook.php 1738
+ERROR - 2019-01-08 06:28:05 --> Severity: Notice --> Undefined variable: financialyear C:\xampp\htdocs\ria\application\views\bankstatement.php 2
+ERROR - 2019-01-08 06:28:05 --> Severity: Notice --> Undefined variable: aa C:\xampp\htdocs\ria\application\controllers\cashbook.php 1738
+ERROR - 2019-01-08 06:28:05 --> Severity: Warning --> Invalid argument supplied for foreach() C:\xampp\htdocs\ria\application\views\bankstatement.php 2
+ERROR - 2019-01-08 06:28:05 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 87
+ERROR - 2019-01-08 06:28:05 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 87
+ERROR - 2019-01-08 06:28:05 --> Severity: Notice --> Undefined variable: financialyear C:\xampp\htdocs\ria\application\views\bankstatement.php 2
+ERROR - 2019-01-08 06:28:06 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 88
+ERROR - 2019-01-08 06:28:06 --> Severity: Warning --> Invalid argument supplied for foreach() C:\xampp\htdocs\ria\application\views\bankstatement.php 2
+ERROR - 2019-01-08 06:28:06 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 88
+ERROR - 2019-01-08 06:28:06 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 89
+ERROR - 2019-01-08 06:28:06 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 87
+ERROR - 2019-01-08 06:28:06 --> Severity: Notice --> Undefined variable: financialyear C:\xampp\htdocs\ria\application\views\bankstatement.php 2
+ERROR - 2019-01-08 06:28:06 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 87
+ERROR - 2019-01-08 06:28:06 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 89
+ERROR - 2019-01-08 06:28:06 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 88
+ERROR - 2019-01-08 06:28:06 --> Severity: Warning --> Invalid argument supplied for foreach() C:\xampp\htdocs\ria\application\views\bankstatement.php 2
+ERROR - 2019-01-08 06:28:06 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 139
+ERROR - 2019-01-08 06:28:06 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 87
+ERROR - 2019-01-08 06:28:06 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 139
+ERROR - 2019-01-08 06:28:06 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 88
+ERROR - 2019-01-08 06:28:06 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 89
+ERROR - 2019-01-08 06:28:06 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 140
+ERROR - 2019-01-08 06:28:06 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 87
+ERROR - 2019-01-08 06:28:06 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 140
+ERROR - 2019-01-08 06:28:06 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 89
+ERROR - 2019-01-08 06:28:06 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 88
+ERROR - 2019-01-08 06:28:06 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 88
+ERROR - 2019-01-08 06:28:06 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 139
+ERROR - 2019-01-08 06:28:06 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 141
+ERROR - 2019-01-08 06:28:06 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 139
+ERROR - 2019-01-08 06:28:06 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 89
+ERROR - 2019-01-08 06:28:06 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 141
+ERROR - 2019-01-08 06:28:06 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 89
+ERROR - 2019-01-08 06:28:06 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 140
+ERROR - 2019-01-08 06:28:06 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 140
+ERROR - 2019-01-08 06:28:06 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 139
+ERROR - 2019-01-08 06:28:06 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 139
+ERROR - 2019-01-08 06:28:06 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 141
+ERROR - 2019-01-08 06:28:06 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 141
+ERROR - 2019-01-08 06:28:06 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 140
+ERROR - 2019-01-08 06:28:06 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 140
+ERROR - 2019-01-08 06:28:06 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 141
+ERROR - 2019-01-08 06:28:06 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 141
+ERROR - 2019-01-08 06:28:16 --> Severity: Notice --> Undefined variable: financialyear C:\xampp\htdocs\ria\application\views\banksettlement.php 4
+ERROR - 2019-01-08 06:28:16 --> Severity: Warning --> Invalid argument supplied for foreach() C:\xampp\htdocs\ria\application\views\banksettlement.php 4
+ERROR - 2019-01-08 06:28:16 --> Severity: Notice --> Undefined variable: t C:\xampp\htdocs\ria\application\views\banksettlement.php 278
+ERROR - 2019-01-08 06:28:16 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\banksettlement.php 278
+ERROR - 2019-01-08 06:28:16 --> Severity: Notice --> Undefined variable: t C:\xampp\htdocs\ria\application\views\banksettlement.php 278
+ERROR - 2019-01-08 06:28:16 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\banksettlement.php 278
+ERROR - 2019-01-08 06:28:16 --> Severity: Notice --> Undefined variable: rel C:\xampp\htdocs\ria\application\views\banksettlement.php 279
+ERROR - 2019-01-08 06:28:16 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\banksettlement.php 279
+ERROR - 2019-01-08 06:28:16 --> Severity: Notice --> Undefined variable: t C:\xampp\htdocs\ria\application\views\banksettlement.php 278
+ERROR - 2019-01-08 06:28:16 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\banksettlement.php 278
+ERROR - 2019-01-08 06:28:16 --> Severity: Notice --> Undefined variable: t C:\xampp\htdocs\ria\application\views\banksettlement.php 278
+ERROR - 2019-01-08 06:28:16 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\banksettlement.php 278
+ERROR - 2019-01-08 06:28:16 --> Severity: Notice --> Undefined variable: rel C:\xampp\htdocs\ria\application\views\banksettlement.php 279
+ERROR - 2019-01-08 06:28:17 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\banksettlement.php 279
+ERROR - 2019-01-08 06:28:17 --> Severity: Notice --> Undefined variable: t C:\xampp\htdocs\ria\application\views\banksettlement.php 278
+ERROR - 2019-01-08 06:28:17 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\banksettlement.php 278
+ERROR - 2019-01-08 06:28:17 --> Severity: Notice --> Undefined variable: t C:\xampp\htdocs\ria\application\views\banksettlement.php 278
+ERROR - 2019-01-08 06:28:17 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\banksettlement.php 278
+ERROR - 2019-01-08 06:28:17 --> Severity: Notice --> Undefined variable: rel C:\xampp\htdocs\ria\application\views\banksettlement.php 279
+ERROR - 2019-01-08 06:28:17 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\banksettlement.php 279
+ERROR - 2019-01-08 06:28:38 --> Severity: Notice --> Undefined variable: financialyear C:\xampp\htdocs\ria\application\views\bankdebit.php 2
+ERROR - 2019-01-08 06:28:38 --> Severity: Warning --> Invalid argument supplied for foreach() C:\xampp\htdocs\ria\application\views\bankdebit.php 2
+ERROR - 2019-01-08 06:28:44 --> Severity: Notice --> Undefined variable: financialyear C:\xampp\htdocs\ria\application\views\bankdebit.php 2
+ERROR - 2019-01-08 06:28:44 --> Severity: Warning --> Invalid argument supplied for foreach() C:\xampp\htdocs\ria\application\views\bankdebit.php 2
+ERROR - 2019-01-08 06:28:44 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankdebit.php 167
+ERROR - 2019-01-08 06:28:44 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\ria\application\views\bankdebit.php 169
+ERROR - 2019-01-08 06:28:44 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankdebit.php 167
+ERROR - 2019-01-08 06:28:44 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\ria\application\views\bankdebit.php 169
+ERROR - 2019-01-08 06:28:44 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankdebit.php 167
+ERROR - 2019-01-08 06:28:44 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\ria\application\views\bankdebit.php 169
+ERROR - 2019-01-08 06:28:44 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankdebit.php 167
+ERROR - 2019-01-08 06:28:44 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\ria\application\views\bankdebit.php 169
+ERROR - 2019-01-08 06:28:44 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankdebit.php 167
+ERROR - 2019-01-08 06:28:44 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\ria\application\views\bankdebit.php 169
+ERROR - 2019-01-08 06:28:44 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankdebit.php 167
+ERROR - 2019-01-08 06:28:44 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\ria\application\views\bankdebit.php 169
+ERROR - 2019-01-08 06:28:44 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankdebit.php 167
+ERROR - 2019-01-08 06:28:44 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\ria\application\views\bankdebit.php 169
+ERROR - 2019-01-08 06:28:44 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankdebit.php 167
+ERROR - 2019-01-08 06:28:44 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\ria\application\views\bankdebit.php 169
+ERROR - 2019-01-08 06:28:44 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankdebit.php 167
+ERROR - 2019-01-08 06:28:45 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\ria\application\views\bankdebit.php 169
+ERROR - 2019-01-08 06:28:45 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankdebit.php 167
+ERROR - 2019-01-08 06:28:45 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\ria\application\views\bankdebit.php 169
+ERROR - 2019-01-08 06:28:45 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankdebit.php 167
+ERROR - 2019-01-08 06:28:45 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\ria\application\views\bankdebit.php 169
+ERROR - 2019-01-08 06:28:45 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankdebit.php 167
+ERROR - 2019-01-08 06:28:45 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\ria\application\views\bankdebit.php 169
+ERROR - 2019-01-08 06:28:45 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankdebit.php 167
+ERROR - 2019-01-08 06:28:45 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\ria\application\views\bankdebit.php 169
+ERROR - 2019-01-08 06:28:45 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankdebit.php 167
+ERROR - 2019-01-08 06:28:45 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\ria\application\views\bankdebit.php 169
+ERROR - 2019-01-08 06:28:45 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankdebit.php 167
+ERROR - 2019-01-08 06:28:45 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\ria\application\views\bankdebit.php 169
+ERROR - 2019-01-08 06:28:45 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankdebit.php 167
+ERROR - 2019-01-08 06:28:45 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\ria\application\views\bankdebit.php 169
+ERROR - 2019-01-08 06:28:45 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankdebit.php 167
+ERROR - 2019-01-08 06:28:45 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\ria\application\views\bankdebit.php 169
+ERROR - 2019-01-08 06:28:45 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankdebit.php 167
+ERROR - 2019-01-08 06:28:45 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\ria\application\views\bankdebit.php 169
+ERROR - 2019-01-08 06:28:45 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankdebit.php 167
+ERROR - 2019-01-08 06:28:45 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\ria\application\views\bankdebit.php 169
+ERROR - 2019-01-08 06:28:45 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankdebit.php 167
+ERROR - 2019-01-08 06:28:45 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\ria\application\views\bankdebit.php 169
+ERROR - 2019-01-08 06:28:45 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankdebit.php 167
+ERROR - 2019-01-08 06:28:45 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\ria\application\views\bankdebit.php 169
+ERROR - 2019-01-08 06:28:46 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankdebit.php 167
+ERROR - 2019-01-08 06:28:46 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\ria\application\views\bankdebit.php 169
+ERROR - 2019-01-08 06:28:46 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankdebit.php 167
+ERROR - 2019-01-08 06:28:46 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\ria\application\views\bankdebit.php 169
+ERROR - 2019-01-08 06:28:46 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankdebit.php 167
+ERROR - 2019-01-08 06:28:46 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\ria\application\views\bankdebit.php 169
+ERROR - 2019-01-08 06:28:46 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankdebit.php 167
+ERROR - 2019-01-08 06:28:46 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\ria\application\views\bankdebit.php 169
+ERROR - 2019-01-08 06:28:46 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankdebit.php 167
+ERROR - 2019-01-08 06:28:46 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\ria\application\views\bankdebit.php 169
+ERROR - 2019-01-08 06:28:46 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankdebit.php 167
+ERROR - 2019-01-08 06:28:46 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\ria\application\views\bankdebit.php 169
+ERROR - 2019-01-08 06:29:28 --> Severity: Notice --> Undefined variable: balancetocleared C:\xampp\htdocs\ria\application\controllers\cashbook.php 1933
+ERROR - 2019-01-08 06:29:28 --> Severity: Notice --> Undefined variable: balancetocleared C:\xampp\htdocs\ria\application\controllers\cashbook.php 1933
+ERROR - 2019-01-08 06:29:28 --> Severity: Notice --> Undefined variable: clearedblnce C:\xampp\htdocs\ria\application\controllers\cashbook.php 1942
+ERROR - 2019-01-08 06:29:28 --> Severity: Notice --> Undefined variable: balancetocleared C:\xampp\htdocs\ria\application\controllers\cashbook.php 1933
+ERROR - 2019-01-08 06:29:28 --> Severity: Notice --> Undefined variable: balancetocleared C:\xampp\htdocs\ria\application\controllers\cashbook.php 1942
+ERROR - 2019-01-08 06:29:28 --> Severity: Notice --> Undefined variable: clearedblnce C:\xampp\htdocs\ria\application\controllers\cashbook.php 1942
+ERROR - 2019-01-08 06:29:28 --> Severity: Notice --> Undefined variable: clearedblnce C:\xampp\htdocs\ria\application\controllers\cashbook.php 1942
+ERROR - 2019-01-08 06:29:28 --> Severity: Notice --> Undefined variable: balancetocleared C:\xampp\htdocs\ria\application\controllers\cashbook.php 1942
+ERROR - 2019-01-08 06:29:28 --> Severity: Notice --> Undefined variable: balancetocleared C:\xampp\htdocs\ria\application\controllers\cashbook.php 1942
+ERROR - 2019-01-08 06:29:28 --> Severity: Notice --> Undefined variable: data C:\xampp\htdocs\ria\application\controllers\cashbook.php 2008
+ERROR - 2019-01-08 06:29:29 --> Severity: Notice --> Undefined variable: data C:\xampp\htdocs\ria\application\controllers\cashbook.php 2008
+ERROR - 2019-01-08 06:29:29 --> Severity: Notice --> Undefined variable: data C:\xampp\htdocs\ria\application\controllers\cashbook.php 2008
+ERROR - 2019-01-08 06:29:29 --> Severity: Notice --> Undefined variable: data C:\xampp\htdocs\ria\application\controllers\cashbook.php 2008
+ERROR - 2019-01-08 06:29:29 --> Severity: Notice --> Undefined variable: financialyear C:\xampp\htdocs\ria\application\views\bankstatement.php 2
+ERROR - 2019-01-08 06:29:29 --> Severity: Notice --> Undefined variable: financialyear C:\xampp\htdocs\ria\application\views\bankstatement.php 2
+ERROR - 2019-01-08 06:29:29 --> Severity: Warning --> Invalid argument supplied for foreach() C:\xampp\htdocs\ria\application\views\bankstatement.php 2
+ERROR - 2019-01-08 06:29:29 --> Severity: Notice --> Undefined variable: bankreport C:\xampp\htdocs\ria\application\views\bankstatement.php 8
+ERROR - 2019-01-08 06:29:29 --> Severity: Warning --> Invalid argument supplied for foreach() C:\xampp\htdocs\ria\application\views\bankstatement.php 2
+ERROR - 2019-01-08 06:29:29 --> Severity: Notice --> Undefined variable: financialyear C:\xampp\htdocs\ria\application\views\bankstatement.php 2
+ERROR - 2019-01-08 06:29:29 --> Severity: Notice --> Undefined variable: financialyear C:\xampp\htdocs\ria\application\views\bankstatement.php 2
+ERROR - 2019-01-08 06:29:29 --> Severity: Notice --> Undefined variable: bankreport C:\xampp\htdocs\ria\application\views\bankstatement.php 8
+ERROR - 2019-01-08 06:29:29 --> Severity: Warning --> Invalid argument supplied for foreach() C:\xampp\htdocs\ria\application\views\bankstatement.php 8
+ERROR - 2019-01-08 06:29:29 --> Severity: Warning --> Invalid argument supplied for foreach() C:\xampp\htdocs\ria\application\views\bankstatement.php 2
+ERROR - 2019-01-08 06:29:29 --> Severity: Warning --> Invalid argument supplied for foreach() C:\xampp\htdocs\ria\application\views\bankstatement.php 8
+ERROR - 2019-01-08 06:29:29 --> Severity: Warning --> Invalid argument supplied for foreach() C:\xampp\htdocs\ria\application\views\bankstatement.php 2
+ERROR - 2019-01-08 06:29:29 --> Severity: Notice --> Undefined variable: bankreport C:\xampp\htdocs\ria\application\views\bankstatement.php 8
+ERROR - 2019-01-08 06:29:29 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 87
+ERROR - 2019-01-08 06:29:29 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 87
+ERROR - 2019-01-08 06:29:29 --> Severity: Notice --> Undefined variable: bankreport C:\xampp\htdocs\ria\application\views\bankstatement.php 8
+ERROR - 2019-01-08 06:29:29 --> Severity: Warning --> Invalid argument supplied for foreach() C:\xampp\htdocs\ria\application\views\bankstatement.php 8
+ERROR - 2019-01-08 06:29:29 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 87
+ERROR - 2019-01-08 06:29:29 --> Severity: Warning --> Invalid argument supplied for foreach() C:\xampp\htdocs\ria\application\views\bankstatement.php 8
+ERROR - 2019-01-08 06:29:29 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 87
+ERROR - 2019-01-08 06:29:29 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 88
+ERROR - 2019-01-08 06:29:29 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 88
+ERROR - 2019-01-08 06:29:29 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 87
+ERROR - 2019-01-08 06:29:29 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 87
+ERROR - 2019-01-08 06:29:29 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 87
+ERROR - 2019-01-08 06:29:29 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 88
+ERROR - 2019-01-08 06:29:29 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 88
+ERROR - 2019-01-08 06:29:29 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 87
+ERROR - 2019-01-08 06:29:29 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 89
+ERROR - 2019-01-08 06:29:29 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 88
+ERROR - 2019-01-08 06:29:29 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 89
+ERROR - 2019-01-08 06:29:29 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 88
+ERROR - 2019-01-08 06:29:29 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 89
+ERROR - 2019-01-08 06:29:29 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 88
+ERROR - 2019-01-08 06:29:29 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 88
+ERROR - 2019-01-08 06:29:29 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 89
+ERROR - 2019-01-08 06:29:29 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 139
+ERROR - 2019-01-08 06:29:29 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 89
+ERROR - 2019-01-08 06:29:29 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 89
+ERROR - 2019-01-08 06:29:29 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 139
+ERROR - 2019-01-08 06:29:29 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 89
+ERROR - 2019-01-08 06:29:29 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 139
+ERROR - 2019-01-08 06:29:29 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 139
+ERROR - 2019-01-08 06:29:29 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 89
+ERROR - 2019-01-08 06:29:29 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 140
+ERROR - 2019-01-08 06:29:29 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 140
+ERROR - 2019-01-08 06:29:29 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 139
+ERROR - 2019-01-08 06:29:29 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 139
+ERROR - 2019-01-08 06:29:29 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 140
+ERROR - 2019-01-08 06:29:29 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 139
+ERROR - 2019-01-08 06:29:29 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 139
+ERROR - 2019-01-08 06:29:29 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 140
+ERROR - 2019-01-08 06:29:29 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 140
+ERROR - 2019-01-08 06:29:29 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 140
+ERROR - 2019-01-08 06:29:29 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 141
+ERROR - 2019-01-08 06:29:29 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 141
+ERROR - 2019-01-08 06:29:29 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 141
+ERROR - 2019-01-08 06:29:29 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 141
+ERROR - 2019-01-08 06:29:29 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 140
+ERROR - 2019-01-08 06:29:29 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 140
+ERROR - 2019-01-08 06:29:29 --> Severity: Notice --> Undefined variable: finyear C:\xampp\htdocs\ria\application\views\bankstatement.php 199
+ERROR - 2019-01-08 06:29:29 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 141
+ERROR - 2019-01-08 06:29:29 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 141
+ERROR - 2019-01-08 06:29:29 --> Severity: Notice --> Undefined variable: finyear C:\xampp\htdocs\ria\application\views\bankstatement.php 199
+ERROR - 2019-01-08 06:29:29 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 141
+ERROR - 2019-01-08 06:29:29 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 141
+ERROR - 2019-01-08 06:29:29 --> Severity: Warning --> Invalid argument supplied for foreach() C:\xampp\htdocs\ria\application\views\bankstatement.php 199
+ERROR - 2019-01-08 06:29:29 --> Severity: Warning --> Invalid argument supplied for foreach() C:\xampp\htdocs\ria\application\views\bankstatement.php 199
+ERROR - 2019-01-08 06:29:29 --> Severity: Notice --> Undefined variable: finyear C:\xampp\htdocs\ria\application\views\bankstatement.php 199
+ERROR - 2019-01-08 06:29:29 --> Severity: Notice --> Undefined variable: Bankname C:\xampp\htdocs\ria\application\views\bankstatement.php 237
+ERROR - 2019-01-08 06:29:29 --> Severity: Notice --> Undefined variable: Bankname C:\xampp\htdocs\ria\application\views\bankstatement.php 237
+ERROR - 2019-01-08 06:29:29 --> Severity: Notice --> Undefined variable: finyear C:\xampp\htdocs\ria\application\views\bankstatement.php 199
+ERROR - 2019-01-08 06:29:29 --> Severity: Warning --> Invalid argument supplied for foreach() C:\xampp\htdocs\ria\application\views\bankstatement.php 199
+ERROR - 2019-01-08 06:29:29 --> Severity: Warning --> Invalid argument supplied for foreach() C:\xampp\htdocs\ria\application\views\bankstatement.php 199
+ERROR - 2019-01-08 06:29:30 --> Severity: Notice --> Undefined variable: Bankname C:\xampp\htdocs\ria\application\views\bankstatement.php 237
+ERROR - 2019-01-08 06:29:30 --> Severity: Notice --> Undefined variable: Bankname C:\xampp\htdocs\ria\application\views\bankstatement.php 237
+ERROR - 2019-01-08 06:29:31 --> Severity: Notice --> Undefined variable: fdate C:\xampp\htdocs\ria\application\controllers\cashbook.php 1738
+ERROR - 2019-01-08 06:29:31 --> Severity: Notice --> Undefined variable: fdate C:\xampp\htdocs\ria\application\controllers\cashbook.php 1738
+ERROR - 2019-01-08 06:29:31 --> Severity: Notice --> Undefined variable: tdate C:\xampp\htdocs\ria\application\controllers\cashbook.php 1738
+ERROR - 2019-01-08 06:29:31 --> Severity: Notice --> Undefined variable: fa C:\xampp\htdocs\ria\application\controllers\cashbook.php 1738
+ERROR - 2019-01-08 06:29:31 --> Severity: Notice --> Undefined variable: tdate C:\xampp\htdocs\ria\application\controllers\cashbook.php 1738
+ERROR - 2019-01-08 06:29:31 --> Severity: Notice --> Undefined variable: fdate C:\xampp\htdocs\ria\application\controllers\cashbook.php 1738
+ERROR - 2019-01-08 06:29:31 --> Severity: Notice --> Undefined variable: aa C:\xampp\htdocs\ria\application\controllers\cashbook.php 1738
+ERROR - 2019-01-08 06:29:31 --> Severity: Notice --> Undefined variable: fa C:\xampp\htdocs\ria\application\controllers\cashbook.php 1738
+ERROR - 2019-01-08 06:29:31 --> Severity: Notice --> Undefined variable: tdate C:\xampp\htdocs\ria\application\controllers\cashbook.php 1738
+ERROR - 2019-01-08 06:29:31 --> Severity: Notice --> Undefined variable: fa C:\xampp\htdocs\ria\application\controllers\cashbook.php 1738
+ERROR - 2019-01-08 06:29:31 --> Severity: Notice --> Undefined variable: aa C:\xampp\htdocs\ria\application\controllers\cashbook.php 1738
+ERROR - 2019-01-08 06:29:31 --> Severity: Notice --> Undefined variable: aa C:\xampp\htdocs\ria\application\controllers\cashbook.php 1738
+ERROR - 2019-01-08 06:29:31 --> Severity: Notice --> Undefined variable: financialyear C:\xampp\htdocs\ria\application\views\bankstatement.php 2
+ERROR - 2019-01-08 06:29:31 --> Severity: Notice --> Undefined variable: financialyear C:\xampp\htdocs\ria\application\views\bankstatement.php 2
+ERROR - 2019-01-08 06:29:31 --> Severity: Warning --> Invalid argument supplied for foreach() C:\xampp\htdocs\ria\application\views\bankstatement.php 2
+ERROR - 2019-01-08 06:29:31 --> Severity: Warning --> Invalid argument supplied for foreach() C:\xampp\htdocs\ria\application\views\bankstatement.php 2
+ERROR - 2019-01-08 06:29:31 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 87
+ERROR - 2019-01-08 06:29:31 --> Severity: Notice --> Undefined variable: financialyear C:\xampp\htdocs\ria\application\views\bankstatement.php 2
+ERROR - 2019-01-08 06:29:31 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 87
+ERROR - 2019-01-08 06:29:31 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 87
+ERROR - 2019-01-08 06:29:31 --> Severity: Warning --> Invalid argument supplied for foreach() C:\xampp\htdocs\ria\application\views\bankstatement.php 2
+ERROR - 2019-01-08 06:29:31 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 88
+ERROR - 2019-01-08 06:29:31 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 87
+ERROR - 2019-01-08 06:29:31 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 87
+ERROR - 2019-01-08 06:29:31 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 88
+ERROR - 2019-01-08 06:29:31 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 87
+ERROR - 2019-01-08 06:29:31 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 88
+ERROR - 2019-01-08 06:29:31 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 88
+ERROR - 2019-01-08 06:29:31 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 88
+ERROR - 2019-01-08 06:29:31 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 89
+ERROR - 2019-01-08 06:29:31 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 89
+ERROR - 2019-01-08 06:29:31 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 88
+ERROR - 2019-01-08 06:29:31 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 89
+ERROR - 2019-01-08 06:29:31 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 89
+ERROR - 2019-01-08 06:29:31 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 89
+ERROR - 2019-01-08 06:29:31 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 139
+ERROR - 2019-01-08 06:29:31 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 89
+ERROR - 2019-01-08 06:29:31 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 139
+ERROR - 2019-01-08 06:29:31 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 139
+ERROR - 2019-01-08 06:29:31 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 139
+ERROR - 2019-01-08 06:29:31 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 139
+ERROR - 2019-01-08 06:29:32 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 140
+ERROR - 2019-01-08 06:29:32 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 140
+ERROR - 2019-01-08 06:29:32 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 139
+ERROR - 2019-01-08 06:29:32 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 140
+ERROR - 2019-01-08 06:29:32 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 140
+ERROR - 2019-01-08 06:29:32 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 140
+ERROR - 2019-01-08 06:29:32 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 140
+ERROR - 2019-01-08 06:29:32 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 141
+ERROR - 2019-01-08 06:29:32 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 141
+ERROR - 2019-01-08 06:29:32 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 141
+ERROR - 2019-01-08 06:29:32 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 141
+ERROR - 2019-01-08 06:29:32 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 141
+ERROR - 2019-01-08 06:29:32 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 141
+ERROR - 2019-01-08 06:29:40 --> Severity: Notice --> Undefined variable: financialyear C:\xampp\htdocs\ria\application\views\banksettlement.php 4
+ERROR - 2019-01-08 06:29:40 --> Severity: Warning --> Invalid argument supplied for foreach() C:\xampp\htdocs\ria\application\views\banksettlement.php 4
+ERROR - 2019-01-08 06:29:40 --> Severity: Notice --> Undefined variable: t C:\xampp\htdocs\ria\application\views\banksettlement.php 278
+ERROR - 2019-01-08 06:29:40 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\banksettlement.php 278
+ERROR - 2019-01-08 06:29:40 --> Severity: Notice --> Undefined variable: t C:\xampp\htdocs\ria\application\views\banksettlement.php 278
+ERROR - 2019-01-08 06:29:40 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\banksettlement.php 278
+ERROR - 2019-01-08 06:29:40 --> Severity: Notice --> Undefined variable: rel C:\xampp\htdocs\ria\application\views\banksettlement.php 279
+ERROR - 2019-01-08 06:29:40 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\banksettlement.php 279
+ERROR - 2019-01-08 06:29:40 --> Severity: Notice --> Undefined variable: t C:\xampp\htdocs\ria\application\views\banksettlement.php 278
+ERROR - 2019-01-08 06:29:40 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\banksettlement.php 278
+ERROR - 2019-01-08 06:29:40 --> Severity: Notice --> Undefined variable: t C:\xampp\htdocs\ria\application\views\banksettlement.php 278
+ERROR - 2019-01-08 06:29:40 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\banksettlement.php 278
+ERROR - 2019-01-08 06:29:40 --> Severity: Notice --> Undefined variable: rel C:\xampp\htdocs\ria\application\views\banksettlement.php 279
+ERROR - 2019-01-08 06:29:40 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\banksettlement.php 279
+ERROR - 2019-01-08 06:29:40 --> Severity: Notice --> Undefined variable: t C:\xampp\htdocs\ria\application\views\banksettlement.php 278
+ERROR - 2019-01-08 06:29:40 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\banksettlement.php 278
+ERROR - 2019-01-08 06:29:40 --> Severity: Notice --> Undefined variable: t C:\xampp\htdocs\ria\application\views\banksettlement.php 278
+ERROR - 2019-01-08 06:29:40 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\banksettlement.php 278
+ERROR - 2019-01-08 06:29:40 --> Severity: Notice --> Undefined variable: rel C:\xampp\htdocs\ria\application\views\banksettlement.php 279
+ERROR - 2019-01-08 06:29:40 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\banksettlement.php 279
+ERROR - 2019-01-08 06:29:40 --> Severity: Notice --> Undefined variable: t C:\xampp\htdocs\ria\application\views\banksettlement.php 278
+ERROR - 2019-01-08 06:29:40 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\banksettlement.php 278
+ERROR - 2019-01-08 06:29:40 --> Severity: Notice --> Undefined variable: t C:\xampp\htdocs\ria\application\views\banksettlement.php 278
+ERROR - 2019-01-08 06:29:40 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\banksettlement.php 278
+ERROR - 2019-01-08 06:29:40 --> Severity: Notice --> Undefined variable: rel C:\xampp\htdocs\ria\application\views\banksettlement.php 279
+ERROR - 2019-01-08 06:29:41 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\banksettlement.php 279
+ERROR - 2019-01-08 15:34:52 --> Severity: Notice --> Undefined variable: fdate C:\xampp\htdocs\ria\application\controllers\cashbook.php 1738
+ERROR - 2019-01-08 15:34:52 --> Severity: Notice --> Undefined variable: tdate C:\xampp\htdocs\ria\application\controllers\cashbook.php 1738
+ERROR - 2019-01-08 15:34:52 --> Severity: Notice --> Undefined variable: fa C:\xampp\htdocs\ria\application\controllers\cashbook.php 1738
+ERROR - 2019-01-08 15:34:52 --> Severity: Notice --> Undefined variable: aa C:\xampp\htdocs\ria\application\controllers\cashbook.php 1738
+ERROR - 2019-01-08 15:34:53 --> Severity: Notice --> Undefined variable: financialyear C:\xampp\htdocs\ria\application\views\bankstatement.php 2
+ERROR - 2019-01-08 15:34:53 --> Severity: Warning --> Invalid argument supplied for foreach() C:\xampp\htdocs\ria\application\views\bankstatement.php 2
+ERROR - 2019-01-08 15:34:53 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 87
+ERROR - 2019-01-08 15:34:53 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 87
+ERROR - 2019-01-08 15:34:53 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 88
+ERROR - 2019-01-08 15:34:53 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 88
+ERROR - 2019-01-08 15:34:53 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 89
+ERROR - 2019-01-08 15:34:53 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 89
+ERROR - 2019-01-08 15:34:53 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 139
+ERROR - 2019-01-08 15:34:53 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 139
+ERROR - 2019-01-08 15:34:54 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 140
+ERROR - 2019-01-08 15:34:54 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 140
+ERROR - 2019-01-08 15:34:54 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 141
+ERROR - 2019-01-08 15:34:54 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 141
+ERROR - 2019-01-08 15:35:08 --> Severity: Notice --> Undefined variable: financialyear C:\xampp\htdocs\ria\application\views\bankdebit.php 2
+ERROR - 2019-01-08 15:35:08 --> Severity: Warning --> Invalid argument supplied for foreach() C:\xampp\htdocs\ria\application\views\bankdebit.php 2
+ERROR - 2019-01-08 15:35:15 --> Severity: Notice --> Undefined variable: financialyear C:\xampp\htdocs\ria\application\views\bankdebit.php 2
+ERROR - 2019-01-08 15:35:15 --> Severity: Warning --> Invalid argument supplied for foreach() C:\xampp\htdocs\ria\application\views\bankdebit.php 2
+ERROR - 2019-01-08 15:35:15 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankdebit.php 167
+ERROR - 2019-01-08 15:35:15 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\ria\application\views\bankdebit.php 169
+ERROR - 2019-01-08 15:35:15 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankdebit.php 167
+ERROR - 2019-01-08 15:35:15 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\ria\application\views\bankdebit.php 169
+ERROR - 2019-01-08 15:35:15 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankdebit.php 167
+ERROR - 2019-01-08 15:35:15 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\ria\application\views\bankdebit.php 169
+ERROR - 2019-01-08 15:35:15 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankdebit.php 167
+ERROR - 2019-01-08 15:35:15 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\ria\application\views\bankdebit.php 169
+ERROR - 2019-01-08 15:35:16 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankdebit.php 167
+ERROR - 2019-01-08 15:35:16 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\ria\application\views\bankdebit.php 169
+ERROR - 2019-01-08 15:35:16 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankdebit.php 167
+ERROR - 2019-01-08 15:35:16 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\ria\application\views\bankdebit.php 169
+ERROR - 2019-01-08 15:35:16 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankdebit.php 167
+ERROR - 2019-01-08 15:35:16 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\ria\application\views\bankdebit.php 169
+ERROR - 2019-01-08 15:35:16 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankdebit.php 167
+ERROR - 2019-01-08 15:35:16 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\ria\application\views\bankdebit.php 169
+ERROR - 2019-01-08 15:35:16 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankdebit.php 167
+ERROR - 2019-01-08 15:35:16 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\ria\application\views\bankdebit.php 169
+ERROR - 2019-01-08 15:35:16 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankdebit.php 167
+ERROR - 2019-01-08 15:35:16 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\ria\application\views\bankdebit.php 169
+ERROR - 2019-01-08 15:35:16 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankdebit.php 167
+ERROR - 2019-01-08 15:35:16 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\ria\application\views\bankdebit.php 169
+ERROR - 2019-01-08 15:35:16 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankdebit.php 167
+ERROR - 2019-01-08 15:35:16 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\ria\application\views\bankdebit.php 169
+ERROR - 2019-01-08 15:35:16 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankdebit.php 167
+ERROR - 2019-01-08 15:35:16 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\ria\application\views\bankdebit.php 169
+ERROR - 2019-01-08 15:35:16 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankdebit.php 167
+ERROR - 2019-01-08 15:35:16 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\ria\application\views\bankdebit.php 169
+ERROR - 2019-01-08 15:35:16 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankdebit.php 167
+ERROR - 2019-01-08 15:35:16 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\ria\application\views\bankdebit.php 169
+ERROR - 2019-01-08 15:35:16 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankdebit.php 167
+ERROR - 2019-01-08 15:35:17 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\ria\application\views\bankdebit.php 169
+ERROR - 2019-01-08 15:35:17 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankdebit.php 167
+ERROR - 2019-01-08 15:35:17 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\ria\application\views\bankdebit.php 169
+ERROR - 2019-01-08 15:35:17 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankdebit.php 167
+ERROR - 2019-01-08 15:35:17 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\ria\application\views\bankdebit.php 169
+ERROR - 2019-01-08 15:35:17 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankdebit.php 167
+ERROR - 2019-01-08 15:35:17 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\ria\application\views\bankdebit.php 169
+ERROR - 2019-01-08 15:35:17 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankdebit.php 167
+ERROR - 2019-01-08 15:35:17 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\ria\application\views\bankdebit.php 169
+ERROR - 2019-01-08 15:35:17 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankdebit.php 167
+ERROR - 2019-01-08 15:35:17 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\ria\application\views\bankdebit.php 169
+ERROR - 2019-01-08 15:35:17 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankdebit.php 167
+ERROR - 2019-01-08 15:35:17 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\ria\application\views\bankdebit.php 169
+ERROR - 2019-01-08 15:35:17 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankdebit.php 167
+ERROR - 2019-01-08 15:35:17 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\ria\application\views\bankdebit.php 169
+ERROR - 2019-01-08 15:35:17 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankdebit.php 167
+ERROR - 2019-01-08 15:35:17 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\ria\application\views\bankdebit.php 169
+ERROR - 2019-01-08 15:35:17 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankdebit.php 167
+ERROR - 2019-01-08 15:35:17 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\ria\application\views\bankdebit.php 169
+ERROR - 2019-01-08 15:35:17 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankdebit.php 167
+ERROR - 2019-01-08 15:35:17 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\ria\application\views\bankdebit.php 169
+ERROR - 2019-01-08 15:35:18 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankdebit.php 167
+ERROR - 2019-01-08 15:35:18 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\ria\application\views\bankdebit.php 169
+ERROR - 2019-01-08 15:35:38 --> Severity: Notice --> Undefined variable: data C:\xampp\htdocs\ria\application\controllers\cashbook.php 2008
+ERROR - 2019-01-08 15:35:38 --> Severity: Notice --> Undefined variable: financialyear C:\xampp\htdocs\ria\application\views\bankstatement.php 2
+ERROR - 2019-01-08 15:35:38 --> Severity: Warning --> Invalid argument supplied for foreach() C:\xampp\htdocs\ria\application\views\bankstatement.php 2
+ERROR - 2019-01-08 15:35:38 --> Severity: Notice --> Undefined variable: bankreport C:\xampp\htdocs\ria\application\views\bankstatement.php 8
+ERROR - 2019-01-08 15:35:38 --> Severity: Warning --> Invalid argument supplied for foreach() C:\xampp\htdocs\ria\application\views\bankstatement.php 8
+ERROR - 2019-01-08 15:35:38 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 87
+ERROR - 2019-01-08 15:35:38 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 87
+ERROR - 2019-01-08 15:35:38 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 88
+ERROR - 2019-01-08 15:35:38 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 88
+ERROR - 2019-01-08 15:35:38 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 89
+ERROR - 2019-01-08 15:35:38 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 89
+ERROR - 2019-01-08 15:35:38 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 139
+ERROR - 2019-01-08 15:35:38 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 139
+ERROR - 2019-01-08 15:35:38 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 140
+ERROR - 2019-01-08 15:35:38 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 140
+ERROR - 2019-01-08 15:35:38 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 141
+ERROR - 2019-01-08 15:35:38 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 141
+ERROR - 2019-01-08 15:35:38 --> Severity: Notice --> Undefined variable: finyear C:\xampp\htdocs\ria\application\views\bankstatement.php 199
+ERROR - 2019-01-08 15:35:38 --> Severity: Warning --> Invalid argument supplied for foreach() C:\xampp\htdocs\ria\application\views\bankstatement.php 199
+ERROR - 2019-01-08 15:35:38 --> Severity: Notice --> Undefined variable: Bankname C:\xampp\htdocs\ria\application\views\bankstatement.php 237
+ERROR - 2019-01-08 15:35:40 --> Severity: Notice --> Undefined variable: fdate C:\xampp\htdocs\ria\application\controllers\cashbook.php 1738
+ERROR - 2019-01-08 15:35:40 --> Severity: Notice --> Undefined variable: tdate C:\xampp\htdocs\ria\application\controllers\cashbook.php 1738
+ERROR - 2019-01-08 15:35:40 --> Severity: Notice --> Undefined variable: fa C:\xampp\htdocs\ria\application\controllers\cashbook.php 1738
+ERROR - 2019-01-08 15:35:40 --> Severity: Notice --> Undefined variable: aa C:\xampp\htdocs\ria\application\controllers\cashbook.php 1738
+ERROR - 2019-01-08 15:35:40 --> Severity: Notice --> Undefined variable: financialyear C:\xampp\htdocs\ria\application\views\bankstatement.php 2
+ERROR - 2019-01-08 15:35:41 --> Severity: Warning --> Invalid argument supplied for foreach() C:\xampp\htdocs\ria\application\views\bankstatement.php 2
+ERROR - 2019-01-08 15:35:41 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 87
+ERROR - 2019-01-08 15:35:41 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 87
+ERROR - 2019-01-08 15:35:41 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 88
+ERROR - 2019-01-08 15:35:41 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 88
+ERROR - 2019-01-08 15:35:41 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 89
+ERROR - 2019-01-08 15:35:41 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 89
+ERROR - 2019-01-08 15:35:41 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 139
+ERROR - 2019-01-08 15:35:41 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 139
+ERROR - 2019-01-08 15:35:41 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 140
+ERROR - 2019-01-08 15:35:41 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 140
+ERROR - 2019-01-08 15:35:41 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 141
+ERROR - 2019-01-08 15:35:41 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 141
+ERROR - 2019-01-08 15:35:56 --> Severity: Notice --> Undefined variable: fdate C:\xampp\htdocs\ria\application\controllers\cashbook.php 1738
+ERROR - 2019-01-08 15:35:56 --> Severity: Notice --> Undefined variable: tdate C:\xampp\htdocs\ria\application\controllers\cashbook.php 1738
+ERROR - 2019-01-08 15:35:56 --> Severity: Notice --> Undefined variable: fa C:\xampp\htdocs\ria\application\controllers\cashbook.php 1738
+ERROR - 2019-01-08 15:35:56 --> Severity: Notice --> Undefined variable: aa C:\xampp\htdocs\ria\application\controllers\cashbook.php 1738
+ERROR - 2019-01-08 15:35:57 --> Severity: Notice --> Undefined variable: financialyear C:\xampp\htdocs\ria\application\views\bankstatement.php 2
+ERROR - 2019-01-08 15:35:57 --> Severity: Warning --> Invalid argument supplied for foreach() C:\xampp\htdocs\ria\application\views\bankstatement.php 2
+ERROR - 2019-01-08 15:35:57 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 87
+ERROR - 2019-01-08 15:35:57 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 87
+ERROR - 2019-01-08 15:35:57 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 88
+ERROR - 2019-01-08 15:35:57 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 88
+ERROR - 2019-01-08 15:35:57 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 89
+ERROR - 2019-01-08 15:35:57 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 89
+ERROR - 2019-01-08 15:35:57 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 139
+ERROR - 2019-01-08 15:35:57 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 139
+ERROR - 2019-01-08 15:35:57 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 140
+ERROR - 2019-01-08 15:35:57 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 140
+ERROR - 2019-01-08 15:35:57 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 141
+ERROR - 2019-01-08 15:35:57 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 141
+ERROR - 2019-01-08 15:36:05 --> Severity: Notice --> Undefined variable: financialyear C:\xampp\htdocs\ria\application\views\banksettlement.php 4
+ERROR - 2019-01-08 15:36:05 --> Severity: Warning --> Invalid argument supplied for foreach() C:\xampp\htdocs\ria\application\views\banksettlement.php 4
+ERROR - 2019-01-08 15:36:05 --> Severity: Notice --> Undefined variable: t C:\xampp\htdocs\ria\application\views\banksettlement.php 278
+ERROR - 2019-01-08 15:36:05 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\banksettlement.php 278
+ERROR - 2019-01-08 15:36:05 --> Severity: Notice --> Undefined variable: t C:\xampp\htdocs\ria\application\views\banksettlement.php 278
+ERROR - 2019-01-08 15:36:06 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\banksettlement.php 278
+ERROR - 2019-01-08 15:36:06 --> Severity: Notice --> Undefined variable: rel C:\xampp\htdocs\ria\application\views\banksettlement.php 279
+ERROR - 2019-01-08 15:36:06 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\banksettlement.php 279
+ERROR - 2019-01-08 15:36:38 --> Severity: Notice --> Undefined variable: fdate C:\xampp\htdocs\ria\application\controllers\cashbook.php 1738
+ERROR - 2019-01-08 15:36:38 --> Severity: Notice --> Undefined variable: tdate C:\xampp\htdocs\ria\application\controllers\cashbook.php 1738
+ERROR - 2019-01-08 15:36:38 --> Severity: Notice --> Undefined variable: fa C:\xampp\htdocs\ria\application\controllers\cashbook.php 1738
+ERROR - 2019-01-08 15:36:38 --> Severity: Notice --> Undefined variable: aa C:\xampp\htdocs\ria\application\controllers\cashbook.php 1738
+ERROR - 2019-01-08 15:36:38 --> Severity: Notice --> Undefined variable: financialyear C:\xampp\htdocs\ria\application\views\bankstatement.php 2
+ERROR - 2019-01-08 15:36:38 --> Severity: Warning --> Invalid argument supplied for foreach() C:\xampp\htdocs\ria\application\views\bankstatement.php 2
+ERROR - 2019-01-08 15:36:38 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 87
+ERROR - 2019-01-08 15:36:38 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 87
+ERROR - 2019-01-08 15:36:38 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 88
+ERROR - 2019-01-08 15:36:38 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 88
+ERROR - 2019-01-08 15:36:38 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 89
+ERROR - 2019-01-08 15:36:39 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 89
+ERROR - 2019-01-08 15:36:39 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 139
+ERROR - 2019-01-08 15:36:39 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 139
+ERROR - 2019-01-08 15:36:39 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 140
+ERROR - 2019-01-08 15:36:39 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 140
+ERROR - 2019-01-08 15:36:39 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 141
+ERROR - 2019-01-08 15:36:39 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 141
+ERROR - 2019-01-08 15:36:51 --> Severity: Notice --> Undefined variable: financialyear C:\xampp\htdocs\ria\application\views\bankdebit.php 2
+ERROR - 2019-01-08 15:36:51 --> Severity: Warning --> Invalid argument supplied for foreach() C:\xampp\htdocs\ria\application\views\bankdebit.php 2
+ERROR - 2019-01-08 15:36:55 --> Severity: Notice --> Undefined variable: financialyear C:\xampp\htdocs\ria\application\views\bankdebit.php 2
+ERROR - 2019-01-08 15:36:55 --> Severity: Warning --> Invalid argument supplied for foreach() C:\xampp\htdocs\ria\application\views\bankdebit.php 2
+ERROR - 2019-01-08 15:36:56 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankdebit.php 167
+ERROR - 2019-01-08 15:36:56 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\ria\application\views\bankdebit.php 169
+ERROR - 2019-01-08 15:36:56 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankdebit.php 167
+ERROR - 2019-01-08 15:36:56 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\ria\application\views\bankdebit.php 169
+ERROR - 2019-01-08 15:36:56 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankdebit.php 167
+ERROR - 2019-01-08 15:36:56 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\ria\application\views\bankdebit.php 169
+ERROR - 2019-01-08 15:36:56 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankdebit.php 167
+ERROR - 2019-01-08 15:36:56 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\ria\application\views\bankdebit.php 169
+ERROR - 2019-01-08 15:36:56 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankdebit.php 167
+ERROR - 2019-01-08 15:36:56 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\ria\application\views\bankdebit.php 169
+ERROR - 2019-01-08 15:36:56 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankdebit.php 167
+ERROR - 2019-01-08 15:36:56 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\ria\application\views\bankdebit.php 169
+ERROR - 2019-01-08 15:36:56 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankdebit.php 167
+ERROR - 2019-01-08 15:36:56 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\ria\application\views\bankdebit.php 169
+ERROR - 2019-01-08 15:36:56 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankdebit.php 167
+ERROR - 2019-01-08 15:36:56 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\ria\application\views\bankdebit.php 169
+ERROR - 2019-01-08 15:36:56 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankdebit.php 167
+ERROR - 2019-01-08 15:36:56 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\ria\application\views\bankdebit.php 169
+ERROR - 2019-01-08 15:36:56 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankdebit.php 167
+ERROR - 2019-01-08 15:36:56 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\ria\application\views\bankdebit.php 169
+ERROR - 2019-01-08 15:36:56 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankdebit.php 167
+ERROR - 2019-01-08 15:36:57 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\ria\application\views\bankdebit.php 169
+ERROR - 2019-01-08 15:36:57 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankdebit.php 167
+ERROR - 2019-01-08 15:36:57 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\ria\application\views\bankdebit.php 169
+ERROR - 2019-01-08 15:36:57 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankdebit.php 167
+ERROR - 2019-01-08 15:36:57 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\ria\application\views\bankdebit.php 169
+ERROR - 2019-01-08 15:36:57 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankdebit.php 167
+ERROR - 2019-01-08 15:36:57 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\ria\application\views\bankdebit.php 169
+ERROR - 2019-01-08 15:36:57 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankdebit.php 167
+ERROR - 2019-01-08 15:36:57 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\ria\application\views\bankdebit.php 169
+ERROR - 2019-01-08 15:36:57 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankdebit.php 167
+ERROR - 2019-01-08 15:36:57 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\ria\application\views\bankdebit.php 169
+ERROR - 2019-01-08 15:36:57 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankdebit.php 167
+ERROR - 2019-01-08 15:36:57 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\ria\application\views\bankdebit.php 169
+ERROR - 2019-01-08 15:36:57 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankdebit.php 167
+ERROR - 2019-01-08 15:36:57 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\ria\application\views\bankdebit.php 169
+ERROR - 2019-01-08 15:36:57 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankdebit.php 167
+ERROR - 2019-01-08 15:36:57 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\ria\application\views\bankdebit.php 169
+ERROR - 2019-01-08 15:36:57 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankdebit.php 167
+ERROR - 2019-01-08 15:36:57 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\ria\application\views\bankdebit.php 169
+ERROR - 2019-01-08 15:36:57 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankdebit.php 167
+ERROR - 2019-01-08 15:36:57 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\ria\application\views\bankdebit.php 169
+ERROR - 2019-01-08 15:36:57 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankdebit.php 167
+ERROR - 2019-01-08 15:36:58 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\ria\application\views\bankdebit.php 169
+ERROR - 2019-01-08 15:36:58 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankdebit.php 167
+ERROR - 2019-01-08 15:36:58 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\ria\application\views\bankdebit.php 169
+ERROR - 2019-01-08 15:36:58 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankdebit.php 167
+ERROR - 2019-01-08 15:36:58 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\ria\application\views\bankdebit.php 169
+ERROR - 2019-01-08 15:36:58 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankdebit.php 167
+ERROR - 2019-01-08 15:36:58 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\ria\application\views\bankdebit.php 169
+ERROR - 2019-01-08 15:36:58 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankdebit.php 167
+ERROR - 2019-01-08 15:36:58 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\ria\application\views\bankdebit.php 169
+ERROR - 2019-01-08 15:36:58 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankdebit.php 167
+ERROR - 2019-01-08 15:36:58 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\ria\application\views\bankdebit.php 169
+ERROR - 2019-01-08 15:37:21 --> Severity: Notice --> Undefined variable: balancetocleared C:\xampp\htdocs\ria\application\controllers\cashbook.php 1933
+ERROR - 2019-01-08 15:37:21 --> Severity: Notice --> Undefined variable: clearedblnce C:\xampp\htdocs\ria\application\controllers\cashbook.php 1942
+ERROR - 2019-01-08 15:37:21 --> Severity: Notice --> Undefined variable: balancetocleared C:\xampp\htdocs\ria\application\controllers\cashbook.php 1942
+ERROR - 2019-01-08 15:37:22 --> Severity: Notice --> Undefined variable: data C:\xampp\htdocs\ria\application\controllers\cashbook.php 2008
+ERROR - 2019-01-08 15:37:22 --> Severity: Notice --> Undefined variable: data C:\xampp\htdocs\ria\application\controllers\cashbook.php 2008
+ERROR - 2019-01-08 15:37:22 --> Severity: Notice --> Undefined variable: financialyear C:\xampp\htdocs\ria\application\views\bankstatement.php 2
+ERROR - 2019-01-08 15:37:22 --> Severity: Warning --> Invalid argument supplied for foreach() C:\xampp\htdocs\ria\application\views\bankstatement.php 2
+ERROR - 2019-01-08 15:37:22 --> Severity: Notice --> Undefined variable: financialyear C:\xampp\htdocs\ria\application\views\bankstatement.php 2
+ERROR - 2019-01-08 15:37:22 --> Severity: Notice --> Undefined variable: bankreport C:\xampp\htdocs\ria\application\views\bankstatement.php 8
+ERROR - 2019-01-08 15:37:22 --> Severity: Warning --> Invalid argument supplied for foreach() C:\xampp\htdocs\ria\application\views\bankstatement.php 8
+ERROR - 2019-01-08 15:37:22 --> Severity: Warning --> Invalid argument supplied for foreach() C:\xampp\htdocs\ria\application\views\bankstatement.php 2
+ERROR - 2019-01-08 15:37:22 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 87
+ERROR - 2019-01-08 15:37:22 --> Severity: Notice --> Undefined variable: bankreport C:\xampp\htdocs\ria\application\views\bankstatement.php 8
+ERROR - 2019-01-08 15:37:22 --> Severity: Warning --> Invalid argument supplied for foreach() C:\xampp\htdocs\ria\application\views\bankstatement.php 8
+ERROR - 2019-01-08 15:37:22 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 87
+ERROR - 2019-01-08 15:37:22 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 87
+ERROR - 2019-01-08 15:37:22 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 88
+ERROR - 2019-01-08 15:37:22 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 88
+ERROR - 2019-01-08 15:37:22 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 87
+ERROR - 2019-01-08 15:37:22 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 89
+ERROR - 2019-01-08 15:37:22 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 88
+ERROR - 2019-01-08 15:37:22 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 89
+ERROR - 2019-01-08 15:37:22 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 88
+ERROR - 2019-01-08 15:37:22 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 89
+ERROR - 2019-01-08 15:37:22 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 139
+ERROR - 2019-01-08 15:37:22 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 89
+ERROR - 2019-01-08 15:37:22 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 139
+ERROR - 2019-01-08 15:37:22 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 139
+ERROR - 2019-01-08 15:37:22 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 140
+ERROR - 2019-01-08 15:37:23 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 139
+ERROR - 2019-01-08 15:37:23 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 140
+ERROR - 2019-01-08 15:37:23 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 140
+ERROR - 2019-01-08 15:37:23 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 141
+ERROR - 2019-01-08 15:37:23 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 140
+ERROR - 2019-01-08 15:37:23 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 141
+ERROR - 2019-01-08 15:37:23 --> Severity: Notice --> Undefined variable: finyear C:\xampp\htdocs\ria\application\views\bankstatement.php 199
+ERROR - 2019-01-08 15:37:23 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 141
+ERROR - 2019-01-08 15:37:23 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 141
+ERROR - 2019-01-08 15:37:23 --> Severity: Warning --> Invalid argument supplied for foreach() C:\xampp\htdocs\ria\application\views\bankstatement.php 199
+ERROR - 2019-01-08 15:37:23 --> Severity: Notice --> Undefined variable: finyear C:\xampp\htdocs\ria\application\views\bankstatement.php 199
+ERROR - 2019-01-08 15:37:23 --> Severity: Notice --> Undefined variable: Bankname C:\xampp\htdocs\ria\application\views\bankstatement.php 237
+ERROR - 2019-01-08 15:37:23 --> Severity: Warning --> Invalid argument supplied for foreach() C:\xampp\htdocs\ria\application\views\bankstatement.php 199
+ERROR - 2019-01-08 15:37:23 --> Severity: Notice --> Undefined variable: Bankname C:\xampp\htdocs\ria\application\views\bankstatement.php 237
+ERROR - 2019-01-08 15:37:24 --> Severity: Notice --> Undefined variable: fdate C:\xampp\htdocs\ria\application\controllers\cashbook.php 1738
+ERROR - 2019-01-08 15:37:24 --> Severity: Notice --> Undefined variable: tdate C:\xampp\htdocs\ria\application\controllers\cashbook.php 1738
+ERROR - 2019-01-08 15:37:24 --> Severity: Notice --> Undefined variable: fdate C:\xampp\htdocs\ria\application\controllers\cashbook.php 1738
+ERROR - 2019-01-08 15:37:25 --> Severity: Notice --> Undefined variable: fa C:\xampp\htdocs\ria\application\controllers\cashbook.php 1738
+ERROR - 2019-01-08 15:37:25 --> Severity: Notice --> Undefined variable: tdate C:\xampp\htdocs\ria\application\controllers\cashbook.php 1738
+ERROR - 2019-01-08 15:37:25 --> Severity: Notice --> Undefined variable: aa C:\xampp\htdocs\ria\application\controllers\cashbook.php 1738
+ERROR - 2019-01-08 15:37:25 --> Severity: Notice --> Undefined variable: fa C:\xampp\htdocs\ria\application\controllers\cashbook.php 1738
+ERROR - 2019-01-08 15:37:25 --> Severity: Notice --> Undefined variable: aa C:\xampp\htdocs\ria\application\controllers\cashbook.php 1738
+ERROR - 2019-01-08 15:37:25 --> Severity: Notice --> Undefined variable: financialyear C:\xampp\htdocs\ria\application\views\bankstatement.php 2
+ERROR - 2019-01-08 15:37:25 --> Severity: Notice --> Undefined variable: financialyear C:\xampp\htdocs\ria\application\views\bankstatement.php 2
+ERROR - 2019-01-08 15:37:25 --> Severity: Warning --> Invalid argument supplied for foreach() C:\xampp\htdocs\ria\application\views\bankstatement.php 2
+ERROR - 2019-01-08 15:37:25 --> Severity: Warning --> Invalid argument supplied for foreach() C:\xampp\htdocs\ria\application\views\bankstatement.php 2
+ERROR - 2019-01-08 15:37:25 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 87
+ERROR - 2019-01-08 15:37:25 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 87
+ERROR - 2019-01-08 15:37:25 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 87
+ERROR - 2019-01-08 15:37:25 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 87
+ERROR - 2019-01-08 15:37:25 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 88
+ERROR - 2019-01-08 15:37:25 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 88
+ERROR - 2019-01-08 15:37:25 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 88
+ERROR - 2019-01-08 15:37:25 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 88
+ERROR - 2019-01-08 15:37:25 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 89
+ERROR - 2019-01-08 15:37:25 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 89
+ERROR - 2019-01-08 15:37:25 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 89
+ERROR - 2019-01-08 15:37:25 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 89
+ERROR - 2019-01-08 15:37:25 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 139
+ERROR - 2019-01-08 15:37:25 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 139
+ERROR - 2019-01-08 15:37:25 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 139
+ERROR - 2019-01-08 15:37:25 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 139
+ERROR - 2019-01-08 15:37:25 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 140
+ERROR - 2019-01-08 15:37:25 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 140
+ERROR - 2019-01-08 15:37:26 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 140
+ERROR - 2019-01-08 15:37:26 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 140
+ERROR - 2019-01-08 15:37:26 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 141
+ERROR - 2019-01-08 15:37:26 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 141
+ERROR - 2019-01-08 15:37:26 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 141
+ERROR - 2019-01-08 15:37:26 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 141
+ERROR - 2019-01-08 15:37:35 --> Severity: Notice --> Undefined variable: financialyear C:\xampp\htdocs\ria\application\views\banksettlement.php 4
+ERROR - 2019-01-08 15:37:35 --> Severity: Warning --> Invalid argument supplied for foreach() C:\xampp\htdocs\ria\application\views\banksettlement.php 4
+ERROR - 2019-01-08 15:37:35 --> Severity: Notice --> Undefined variable: t C:\xampp\htdocs\ria\application\views\banksettlement.php 278
+ERROR - 2019-01-08 15:37:35 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\banksettlement.php 278
+ERROR - 2019-01-08 15:37:35 --> Severity: Notice --> Undefined variable: t C:\xampp\htdocs\ria\application\views\banksettlement.php 278
+ERROR - 2019-01-08 15:37:35 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\banksettlement.php 278
+ERROR - 2019-01-08 15:37:35 --> Severity: Notice --> Undefined variable: rel C:\xampp\htdocs\ria\application\views\banksettlement.php 279
+ERROR - 2019-01-08 15:37:35 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\banksettlement.php 279
+ERROR - 2019-01-08 15:37:35 --> Severity: Notice --> Undefined variable: t C:\xampp\htdocs\ria\application\views\banksettlement.php 278
+ERROR - 2019-01-08 15:37:35 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\banksettlement.php 278
+ERROR - 2019-01-08 15:37:35 --> Severity: Notice --> Undefined variable: t C:\xampp\htdocs\ria\application\views\banksettlement.php 278
+ERROR - 2019-01-08 15:37:35 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\banksettlement.php 278
+ERROR - 2019-01-08 15:37:35 --> Severity: Notice --> Undefined variable: rel C:\xampp\htdocs\ria\application\views\banksettlement.php 279
+ERROR - 2019-01-08 15:37:35 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\banksettlement.php 279
+ERROR - 2019-01-08 15:42:40 --> Severity: Notice --> Undefined variable: fdate C:\xampp\htdocs\ria\application\controllers\cashbook.php 1738
+ERROR - 2019-01-08 15:42:40 --> Severity: Notice --> Undefined variable: tdate C:\xampp\htdocs\ria\application\controllers\cashbook.php 1738
+ERROR - 2019-01-08 15:42:40 --> Severity: Notice --> Undefined variable: fa C:\xampp\htdocs\ria\application\controllers\cashbook.php 1738
+ERROR - 2019-01-08 15:42:40 --> Severity: Notice --> Undefined variable: aa C:\xampp\htdocs\ria\application\controllers\cashbook.php 1738
+ERROR - 2019-01-08 15:42:40 --> Severity: Notice --> Undefined variable: financialyear C:\xampp\htdocs\ria\application\views\bankstatement.php 2
+ERROR - 2019-01-08 15:42:40 --> Severity: Warning --> Invalid argument supplied for foreach() C:\xampp\htdocs\ria\application\views\bankstatement.php 2
+ERROR - 2019-01-08 15:42:40 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 87
+ERROR - 2019-01-08 15:42:40 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 87
+ERROR - 2019-01-08 15:42:40 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 88
+ERROR - 2019-01-08 15:42:40 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 88
+ERROR - 2019-01-08 15:42:40 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 89
+ERROR - 2019-01-08 15:42:40 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 89
+ERROR - 2019-01-08 15:42:40 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 139
+ERROR - 2019-01-08 15:42:40 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 139
+ERROR - 2019-01-08 15:42:40 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 140
+ERROR - 2019-01-08 15:42:40 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 140
+ERROR - 2019-01-08 15:42:41 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 141
+ERROR - 2019-01-08 15:42:41 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 141
+ERROR - 2019-01-08 15:43:09 --> Severity: Notice --> Undefined variable: financialyear C:\xampp\htdocs\ria\application\views\banksettlement.php 4
+ERROR - 2019-01-08 15:43:09 --> Severity: Warning --> Invalid argument supplied for foreach() C:\xampp\htdocs\ria\application\views\banksettlement.php 4
+ERROR - 2019-01-08 15:43:09 --> Severity: Notice --> Undefined variable: t C:\xampp\htdocs\ria\application\views\banksettlement.php 278
+ERROR - 2019-01-08 15:43:09 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\banksettlement.php 278
+ERROR - 2019-01-08 15:43:09 --> Severity: Notice --> Undefined variable: t C:\xampp\htdocs\ria\application\views\banksettlement.php 278
+ERROR - 2019-01-08 15:43:09 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\banksettlement.php 278
+ERROR - 2019-01-08 15:43:09 --> Severity: Notice --> Undefined variable: rel C:\xampp\htdocs\ria\application\views\banksettlement.php 279
+ERROR - 2019-01-08 15:43:09 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\banksettlement.php 279
+ERROR - 2019-01-08 15:43:39 --> Severity: Notice --> Undefined variable: financialyear C:\xampp\htdocs\ria\application\views\bankamountpaid.php 10
+ERROR - 2019-01-08 15:43:39 --> Severity: Warning --> Invalid argument supplied for foreach() C:\xampp\htdocs\ria\application\views\bankamountpaid.php 10
+ERROR - 2019-01-08 15:43:39 --> Severity: Notice --> Undefined variable: financialyear C:\xampp\htdocs\ria\application\views\bankamountpaid.php 733
+ERROR - 2019-01-08 15:43:39 --> Severity: Warning --> Invalid argument supplied for foreach() C:\xampp\htdocs\ria\application\views\bankamountpaid.php 733
+ERROR - 2019-01-08 15:43:39 --> Severity: Notice --> Undefined variable: suppliername C:\xampp\htdocs\ria\application\views\bankamountpaid.php 858
+ERROR - 2019-01-08 15:43:39 --> Severity: Notice --> Undefined variable: supplierid C:\xampp\htdocs\ria\application\views\bankamountpaid.php 862
+ERROR - 2019-01-08 15:43:39 --> Severity: Notice --> Undefined variable: suppliername C:\xampp\htdocs\ria\application\views\bankamountpaid.php 863
+ERROR - 2019-01-08 15:43:39 --> Severity: Notice --> Undefined variable: finyear C:\xampp\htdocs\ria\application\views\bankamountpaid.php 882
+ERROR - 2019-01-08 15:43:39 --> Severity: Warning --> Invalid argument supplied for foreach() C:\xampp\htdocs\ria\application\views\bankamountpaid.php 882
+ERROR - 2019-01-08 15:44:03 --> Severity: Notice --> Undefined variable: financialyear C:\xampp\htdocs\ria\application\views\bankamountpaid.php 10
+ERROR - 2019-01-08 15:44:03 --> Severity: Warning --> Invalid argument supplied for foreach() C:\xampp\htdocs\ria\application\views\bankamountpaid.php 10
+ERROR - 2019-01-08 15:44:03 --> Severity: Notice --> Undefined variable: t C:\xampp\htdocs\ria\application\views\bankamountpaid.php 295
+ERROR - 2019-01-08 15:44:03 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankamountpaid.php 295
+ERROR - 2019-01-08 15:44:03 --> Severity: Notice --> Undefined variable: t C:\xampp\htdocs\ria\application\views\bankamountpaid.php 295
+ERROR - 2019-01-08 15:44:03 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankamountpaid.php 295
+ERROR - 2019-01-08 15:44:03 --> Severity: Notice --> Undefined variable: record C:\xampp\htdocs\ria\application\views\bankamountpaid.php 351
+ERROR - 2019-01-08 15:44:03 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankamountpaid.php 351
+ERROR - 2019-01-08 15:44:03 --> Severity: Notice --> Undefined variable: t C:\xampp\htdocs\ria\application\views\bankamountpaid.php 295
+ERROR - 2019-01-08 15:44:03 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankamountpaid.php 295
+ERROR - 2019-01-08 15:44:03 --> Severity: Notice --> Undefined variable: t C:\xampp\htdocs\ria\application\views\bankamountpaid.php 295
+ERROR - 2019-01-08 15:44:03 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankamountpaid.php 295
+ERROR - 2019-01-08 15:44:03 --> Severity: Notice --> Undefined variable: record C:\xampp\htdocs\ria\application\views\bankamountpaid.php 351
+ERROR - 2019-01-08 15:44:03 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankamountpaid.php 351
+ERROR - 2019-01-08 15:44:03 --> Severity: Notice --> Undefined variable: t C:\xampp\htdocs\ria\application\views\bankamountpaid.php 295
+ERROR - 2019-01-08 15:44:03 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankamountpaid.php 295
+ERROR - 2019-01-08 15:44:03 --> Severity: Notice --> Undefined variable: t C:\xampp\htdocs\ria\application\views\bankamountpaid.php 295
+ERROR - 2019-01-08 15:44:03 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankamountpaid.php 295
+ERROR - 2019-01-08 15:44:03 --> Severity: Notice --> Undefined variable: record C:\xampp\htdocs\ria\application\views\bankamountpaid.php 351
+ERROR - 2019-01-08 15:44:03 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankamountpaid.php 351
+ERROR - 2019-01-08 15:44:04 --> Severity: Notice --> Undefined variable: t C:\xampp\htdocs\ria\application\views\bankamountpaid.php 295
+ERROR - 2019-01-08 15:44:04 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankamountpaid.php 295
+ERROR - 2019-01-08 15:44:04 --> Severity: Notice --> Undefined variable: t C:\xampp\htdocs\ria\application\views\bankamountpaid.php 295
+ERROR - 2019-01-08 15:44:04 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankamountpaid.php 295
+ERROR - 2019-01-08 15:44:04 --> Severity: Notice --> Undefined variable: record C:\xampp\htdocs\ria\application\views\bankamountpaid.php 351
+ERROR - 2019-01-08 15:44:04 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankamountpaid.php 351
+ERROR - 2019-01-08 15:44:04 --> Severity: Notice --> Undefined variable: t C:\xampp\htdocs\ria\application\views\bankamountpaid.php 295
+ERROR - 2019-01-08 15:44:04 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankamountpaid.php 295
+ERROR - 2019-01-08 15:44:04 --> Severity: Notice --> Undefined variable: t C:\xampp\htdocs\ria\application\views\bankamountpaid.php 295
+ERROR - 2019-01-08 15:44:04 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankamountpaid.php 295
+ERROR - 2019-01-08 15:44:04 --> Severity: Notice --> Undefined variable: record C:\xampp\htdocs\ria\application\views\bankamountpaid.php 351
+ERROR - 2019-01-08 15:44:04 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankamountpaid.php 351
+ERROR - 2019-01-08 15:44:04 --> Severity: Notice --> Undefined variable: t C:\xampp\htdocs\ria\application\views\bankamountpaid.php 295
+ERROR - 2019-01-08 15:44:04 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankamountpaid.php 295
+ERROR - 2019-01-08 15:44:04 --> Severity: Notice --> Undefined variable: t C:\xampp\htdocs\ria\application\views\bankamountpaid.php 295
+ERROR - 2019-01-08 15:44:04 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankamountpaid.php 295
+ERROR - 2019-01-08 15:44:04 --> Severity: Notice --> Undefined variable: record C:\xampp\htdocs\ria\application\views\bankamountpaid.php 351
+ERROR - 2019-01-08 15:44:04 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankamountpaid.php 351
+ERROR - 2019-01-08 15:44:04 --> Severity: Notice --> Undefined variable: t C:\xampp\htdocs\ria\application\views\bankamountpaid.php 295
+ERROR - 2019-01-08 15:44:04 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankamountpaid.php 295
+ERROR - 2019-01-08 15:44:04 --> Severity: Notice --> Undefined variable: t C:\xampp\htdocs\ria\application\views\bankamountpaid.php 295
+ERROR - 2019-01-08 15:44:04 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankamountpaid.php 295
+ERROR - 2019-01-08 15:44:04 --> Severity: Notice --> Undefined variable: record C:\xampp\htdocs\ria\application\views\bankamountpaid.php 351
+ERROR - 2019-01-08 15:44:05 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankamountpaid.php 351
+ERROR - 2019-01-08 15:44:05 --> Severity: Notice --> Undefined variable: t C:\xampp\htdocs\ria\application\views\bankamountpaid.php 295
+ERROR - 2019-01-08 15:44:05 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankamountpaid.php 295
+ERROR - 2019-01-08 15:44:05 --> Severity: Notice --> Undefined variable: t C:\xampp\htdocs\ria\application\views\bankamountpaid.php 295
+ERROR - 2019-01-08 15:44:05 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankamountpaid.php 295
+ERROR - 2019-01-08 15:44:05 --> Severity: Notice --> Undefined variable: record C:\xampp\htdocs\ria\application\views\bankamountpaid.php 351
+ERROR - 2019-01-08 15:44:05 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankamountpaid.php 351
+ERROR - 2019-01-08 15:44:05 --> Severity: Notice --> Undefined variable: t C:\xampp\htdocs\ria\application\views\bankamountpaid.php 295
+ERROR - 2019-01-08 15:44:05 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankamountpaid.php 295
+ERROR - 2019-01-08 15:44:05 --> Severity: Notice --> Undefined variable: t C:\xampp\htdocs\ria\application\views\bankamountpaid.php 295
+ERROR - 2019-01-08 15:44:05 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankamountpaid.php 295
+ERROR - 2019-01-08 15:44:05 --> Severity: Notice --> Undefined variable: record C:\xampp\htdocs\ria\application\views\bankamountpaid.php 351
+ERROR - 2019-01-08 15:44:05 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankamountpaid.php 351
+ERROR - 2019-01-08 15:44:05 --> Severity: Notice --> Undefined variable: t C:\xampp\htdocs\ria\application\views\bankamountpaid.php 295
+ERROR - 2019-01-08 15:44:05 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankamountpaid.php 295
+ERROR - 2019-01-08 15:44:05 --> Severity: Notice --> Undefined variable: t C:\xampp\htdocs\ria\application\views\bankamountpaid.php 295
+ERROR - 2019-01-08 15:44:05 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankamountpaid.php 295
+ERROR - 2019-01-08 15:44:05 --> Severity: Notice --> Undefined variable: record C:\xampp\htdocs\ria\application\views\bankamountpaid.php 351
+ERROR - 2019-01-08 15:44:05 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankamountpaid.php 351
+ERROR - 2019-01-08 15:44:05 --> Severity: Notice --> Undefined variable: t C:\xampp\htdocs\ria\application\views\bankamountpaid.php 295
+ERROR - 2019-01-08 15:44:05 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankamountpaid.php 295
+ERROR - 2019-01-08 15:44:05 --> Severity: Notice --> Undefined variable: t C:\xampp\htdocs\ria\application\views\bankamountpaid.php 295
+ERROR - 2019-01-08 15:44:06 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankamountpaid.php 295
+ERROR - 2019-01-08 15:44:06 --> Severity: Notice --> Undefined variable: record C:\xampp\htdocs\ria\application\views\bankamountpaid.php 351
+ERROR - 2019-01-08 15:44:06 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankamountpaid.php 351
+ERROR - 2019-01-08 15:44:06 --> Severity: Notice --> Undefined variable: t C:\xampp\htdocs\ria\application\views\bankamountpaid.php 295
+ERROR - 2019-01-08 15:44:06 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankamountpaid.php 295
+ERROR - 2019-01-08 15:44:06 --> Severity: Notice --> Undefined variable: t C:\xampp\htdocs\ria\application\views\bankamountpaid.php 295
+ERROR - 2019-01-08 15:44:06 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankamountpaid.php 295
+ERROR - 2019-01-08 15:44:06 --> Severity: Notice --> Undefined variable: record C:\xampp\htdocs\ria\application\views\bankamountpaid.php 351
+ERROR - 2019-01-08 15:44:06 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankamountpaid.php 351
+ERROR - 2019-01-08 15:44:06 --> Severity: Notice --> Undefined variable: t C:\xampp\htdocs\ria\application\views\bankamountpaid.php 295
+ERROR - 2019-01-08 15:44:06 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankamountpaid.php 295
+ERROR - 2019-01-08 15:44:06 --> Severity: Notice --> Undefined variable: t C:\xampp\htdocs\ria\application\views\bankamountpaid.php 295
+ERROR - 2019-01-08 15:44:06 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankamountpaid.php 295
+ERROR - 2019-01-08 15:44:06 --> Severity: Notice --> Undefined variable: record C:\xampp\htdocs\ria\application\views\bankamountpaid.php 351
+ERROR - 2019-01-08 15:44:06 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankamountpaid.php 351
+ERROR - 2019-01-08 15:44:06 --> Severity: Notice --> Undefined variable: t C:\xampp\htdocs\ria\application\views\bankamountpaid.php 295
+ERROR - 2019-01-08 15:44:06 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankamountpaid.php 295
+ERROR - 2019-01-08 15:44:06 --> Severity: Notice --> Undefined variable: t C:\xampp\htdocs\ria\application\views\bankamountpaid.php 295
+ERROR - 2019-01-08 15:44:06 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankamountpaid.php 295
+ERROR - 2019-01-08 15:44:06 --> Severity: Notice --> Undefined variable: record C:\xampp\htdocs\ria\application\views\bankamountpaid.php 351
+ERROR - 2019-01-08 15:44:06 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankamountpaid.php 351
+ERROR - 2019-01-08 15:44:06 --> Severity: Notice --> Undefined variable: t C:\xampp\htdocs\ria\application\views\bankamountpaid.php 295
+ERROR - 2019-01-08 15:44:07 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankamountpaid.php 295
+ERROR - 2019-01-08 15:44:07 --> Severity: Notice --> Undefined variable: t C:\xampp\htdocs\ria\application\views\bankamountpaid.php 295
+ERROR - 2019-01-08 15:44:07 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankamountpaid.php 295
+ERROR - 2019-01-08 15:44:07 --> Severity: Notice --> Undefined variable: record C:\xampp\htdocs\ria\application\views\bankamountpaid.php 351
+ERROR - 2019-01-08 15:44:07 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankamountpaid.php 351
+ERROR - 2019-01-08 15:44:07 --> Severity: Notice --> Undefined variable: financialyear C:\xampp\htdocs\ria\application\views\bankamountpaid.php 733
+ERROR - 2019-01-08 15:44:07 --> Severity: Warning --> Invalid argument supplied for foreach() C:\xampp\htdocs\ria\application\views\bankamountpaid.php 733
+ERROR - 2019-01-08 15:44:07 --> Severity: Notice --> Undefined variable: suppliername C:\xampp\htdocs\ria\application\views\bankamountpaid.php 858
+ERROR - 2019-01-08 15:44:07 --> Severity: Notice --> Undefined variable: supplierid C:\xampp\htdocs\ria\application\views\bankamountpaid.php 862
+ERROR - 2019-01-08 15:44:07 --> Severity: Notice --> Undefined variable: suppliername C:\xampp\htdocs\ria\application\views\bankamountpaid.php 863
+ERROR - 2019-01-08 15:44:07 --> Severity: Notice --> Undefined variable: finyear C:\xampp\htdocs\ria\application\views\bankamountpaid.php 882
+ERROR - 2019-01-08 15:44:07 --> Severity: Warning --> Invalid argument supplied for foreach() C:\xampp\htdocs\ria\application\views\bankamountpaid.php 882
+ERROR - 2019-01-08 15:44:07 --> Severity: Notice --> Undefined property: stdClass::$Podate C:\xampp\htdocs\ria\application\views\bankamountpaid.php 1015
+ERROR - 2019-01-08 15:44:07 --> Severity: Notice --> Undefined property: stdClass::$BankDate C:\xampp\htdocs\ria\application\views\bankamountpaid.php 1016
+ERROR - 2019-01-08 15:44:07 --> Severity: Notice --> Undefined variable: t C:\xampp\htdocs\ria\application\views\bankamountpaid.php 1018
+ERROR - 2019-01-08 15:44:07 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankamountpaid.php 1018
+ERROR - 2019-01-08 15:44:07 --> Severity: Notice --> Undefined variable: t C:\xampp\htdocs\ria\application\views\bankamountpaid.php 1018
+ERROR - 2019-01-08 15:44:07 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankamountpaid.php 1018
+ERROR - 2019-01-08 15:44:07 --> Severity: Notice --> Undefined property: stdClass::$igrfile C:\xampp\htdocs\ria\application\views\bankamountpaid.php 1026
+ERROR - 2019-01-08 15:44:07 --> Severity: Notice --> Undefined property: stdClass::$pofile C:\xampp\htdocs\ria\application\views\bankamountpaid.php 1041
+ERROR - 2019-01-08 15:44:07 --> Severity: Notice --> Undefined variable: record C:\xampp\htdocs\ria\application\views\bankamountpaid.php 1074
+ERROR - 2019-01-08 15:44:07 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankamountpaid.php 1074
+ERROR - 2019-01-08 15:44:08 --> Severity: Notice --> Undefined property: stdClass::$Podate C:\xampp\htdocs\ria\application\views\bankamountpaid.php 1015
+ERROR - 2019-01-08 15:44:08 --> Severity: Notice --> Undefined property: stdClass::$BankDate C:\xampp\htdocs\ria\application\views\bankamountpaid.php 1016
+ERROR - 2019-01-08 15:44:08 --> Severity: Notice --> Undefined variable: t C:\xampp\htdocs\ria\application\views\bankamountpaid.php 1018
+ERROR - 2019-01-08 15:44:08 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankamountpaid.php 1018
+ERROR - 2019-01-08 15:44:08 --> Severity: Notice --> Undefined variable: t C:\xampp\htdocs\ria\application\views\bankamountpaid.php 1018
+ERROR - 2019-01-08 15:44:08 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankamountpaid.php 1018
+ERROR - 2019-01-08 15:44:08 --> Severity: Notice --> Undefined property: stdClass::$igrfile C:\xampp\htdocs\ria\application\views\bankamountpaid.php 1026
+ERROR - 2019-01-08 15:44:08 --> Severity: Notice --> Undefined property: stdClass::$pofile C:\xampp\htdocs\ria\application\views\bankamountpaid.php 1041
+ERROR - 2019-01-08 15:44:08 --> Severity: Notice --> Undefined variable: record C:\xampp\htdocs\ria\application\views\bankamountpaid.php 1074
+ERROR - 2019-01-08 15:44:08 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankamountpaid.php 1074
+ERROR - 2019-01-08 15:44:08 --> Severity: Notice --> Undefined property: stdClass::$Podate C:\xampp\htdocs\ria\application\views\bankamountpaid.php 1015
+ERROR - 2019-01-08 15:44:08 --> Severity: Notice --> Undefined property: stdClass::$BankDate C:\xampp\htdocs\ria\application\views\bankamountpaid.php 1016
+ERROR - 2019-01-08 15:44:08 --> Severity: Notice --> Undefined variable: t C:\xampp\htdocs\ria\application\views\bankamountpaid.php 1018
+ERROR - 2019-01-08 15:44:08 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankamountpaid.php 1018
+ERROR - 2019-01-08 15:44:08 --> Severity: Notice --> Undefined variable: t C:\xampp\htdocs\ria\application\views\bankamountpaid.php 1018
+ERROR - 2019-01-08 15:44:08 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankamountpaid.php 1018
+ERROR - 2019-01-08 15:44:08 --> Severity: Notice --> Undefined property: stdClass::$igrfile C:\xampp\htdocs\ria\application\views\bankamountpaid.php 1026
+ERROR - 2019-01-08 15:44:08 --> Severity: Notice --> Undefined property: stdClass::$pofile C:\xampp\htdocs\ria\application\views\bankamountpaid.php 1041
+ERROR - 2019-01-08 15:44:08 --> Severity: Notice --> Undefined variable: record C:\xampp\htdocs\ria\application\views\bankamountpaid.php 1074
+ERROR - 2019-01-08 15:44:08 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankamountpaid.php 1074
+ERROR - 2019-01-08 15:44:08 --> Severity: Notice --> Undefined property: stdClass::$Podate C:\xampp\htdocs\ria\application\views\bankamountpaid.php 1015
+ERROR - 2019-01-08 15:44:08 --> Severity: Notice --> Undefined property: stdClass::$BankDate C:\xampp\htdocs\ria\application\views\bankamountpaid.php 1016
+ERROR - 2019-01-08 15:44:09 --> Severity: Notice --> Undefined variable: t C:\xampp\htdocs\ria\application\views\bankamountpaid.php 1018
+ERROR - 2019-01-08 15:44:09 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankamountpaid.php 1018
+ERROR - 2019-01-08 15:44:09 --> Severity: Notice --> Undefined variable: t C:\xampp\htdocs\ria\application\views\bankamountpaid.php 1018
+ERROR - 2019-01-08 15:44:09 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankamountpaid.php 1018
+ERROR - 2019-01-08 15:44:09 --> Severity: Notice --> Undefined property: stdClass::$igrfile C:\xampp\htdocs\ria\application\views\bankamountpaid.php 1026
+ERROR - 2019-01-08 15:44:09 --> Severity: Notice --> Undefined property: stdClass::$pofile C:\xampp\htdocs\ria\application\views\bankamountpaid.php 1041
+ERROR - 2019-01-08 15:44:09 --> Severity: Notice --> Undefined variable: record C:\xampp\htdocs\ria\application\views\bankamountpaid.php 1074
+ERROR - 2019-01-08 15:44:09 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankamountpaid.php 1074
+ERROR - 2019-01-08 15:44:09 --> Severity: Notice --> Undefined property: stdClass::$Podate C:\xampp\htdocs\ria\application\views\bankamountpaid.php 1015
+ERROR - 2019-01-08 15:44:09 --> Severity: Notice --> Undefined property: stdClass::$BankDate C:\xampp\htdocs\ria\application\views\bankamountpaid.php 1016
+ERROR - 2019-01-08 15:44:09 --> Severity: Notice --> Undefined variable: t C:\xampp\htdocs\ria\application\views\bankamountpaid.php 1018
+ERROR - 2019-01-08 15:44:09 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankamountpaid.php 1018
+ERROR - 2019-01-08 15:44:09 --> Severity: Notice --> Undefined variable: t C:\xampp\htdocs\ria\application\views\bankamountpaid.php 1018
+ERROR - 2019-01-08 15:44:09 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankamountpaid.php 1018
+ERROR - 2019-01-08 15:44:09 --> Severity: Notice --> Undefined property: stdClass::$igrfile C:\xampp\htdocs\ria\application\views\bankamountpaid.php 1026
+ERROR - 2019-01-08 15:44:09 --> Severity: Notice --> Undefined property: stdClass::$pofile C:\xampp\htdocs\ria\application\views\bankamountpaid.php 1041
+ERROR - 2019-01-08 15:44:09 --> Severity: Notice --> Undefined variable: record C:\xampp\htdocs\ria\application\views\bankamountpaid.php 1074
+ERROR - 2019-01-08 15:44:09 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankamountpaid.php 1074
+ERROR - 2019-01-08 15:44:09 --> Severity: Notice --> Undefined property: stdClass::$Podate C:\xampp\htdocs\ria\application\views\bankamountpaid.php 1015
+ERROR - 2019-01-08 15:44:09 --> Severity: Notice --> Undefined property: stdClass::$BankDate C:\xampp\htdocs\ria\application\views\bankamountpaid.php 1016
+ERROR - 2019-01-08 15:44:09 --> Severity: Notice --> Undefined variable: t C:\xampp\htdocs\ria\application\views\bankamountpaid.php 1018
+ERROR - 2019-01-08 15:44:09 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankamountpaid.php 1018
+ERROR - 2019-01-08 15:44:09 --> Severity: Notice --> Undefined variable: t C:\xampp\htdocs\ria\application\views\bankamountpaid.php 1018
+ERROR - 2019-01-08 15:44:10 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankamountpaid.php 1018
+ERROR - 2019-01-08 15:44:10 --> Severity: Notice --> Undefined property: stdClass::$igrfile C:\xampp\htdocs\ria\application\views\bankamountpaid.php 1026
+ERROR - 2019-01-08 15:44:10 --> Severity: Notice --> Undefined property: stdClass::$pofile C:\xampp\htdocs\ria\application\views\bankamountpaid.php 1041
+ERROR - 2019-01-08 15:44:10 --> Severity: Notice --> Undefined variable: record C:\xampp\htdocs\ria\application\views\bankamountpaid.php 1074
+ERROR - 2019-01-08 15:44:10 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankamountpaid.php 1074
+ERROR - 2019-01-08 15:44:10 --> Severity: Notice --> Undefined property: stdClass::$Podate C:\xampp\htdocs\ria\application\views\bankamountpaid.php 1015
+ERROR - 2019-01-08 15:44:10 --> Severity: Notice --> Undefined property: stdClass::$BankDate C:\xampp\htdocs\ria\application\views\bankamountpaid.php 1016
+ERROR - 2019-01-08 15:44:10 --> Severity: Notice --> Undefined variable: t C:\xampp\htdocs\ria\application\views\bankamountpaid.php 1018
+ERROR - 2019-01-08 15:44:10 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankamountpaid.php 1018
+ERROR - 2019-01-08 15:44:10 --> Severity: Notice --> Undefined variable: t C:\xampp\htdocs\ria\application\views\bankamountpaid.php 1018
+ERROR - 2019-01-08 15:44:10 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankamountpaid.php 1018
+ERROR - 2019-01-08 15:44:10 --> Severity: Notice --> Undefined property: stdClass::$igrfile C:\xampp\htdocs\ria\application\views\bankamountpaid.php 1026
+ERROR - 2019-01-08 15:44:10 --> Severity: Notice --> Undefined property: stdClass::$pofile C:\xampp\htdocs\ria\application\views\bankamountpaid.php 1041
+ERROR - 2019-01-08 15:44:10 --> Severity: Notice --> Undefined variable: record C:\xampp\htdocs\ria\application\views\bankamountpaid.php 1074
+ERROR - 2019-01-08 15:44:10 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankamountpaid.php 1074
+ERROR - 2019-01-08 15:44:10 --> Severity: Notice --> Undefined property: stdClass::$Podate C:\xampp\htdocs\ria\application\views\bankamountpaid.php 1015
+ERROR - 2019-01-08 15:44:10 --> Severity: Notice --> Undefined property: stdClass::$BankDate C:\xampp\htdocs\ria\application\views\bankamountpaid.php 1016
+ERROR - 2019-01-08 15:44:10 --> Severity: Notice --> Undefined variable: t C:\xampp\htdocs\ria\application\views\bankamountpaid.php 1018
+ERROR - 2019-01-08 15:44:10 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankamountpaid.php 1018
+ERROR - 2019-01-08 15:44:10 --> Severity: Notice --> Undefined variable: t C:\xampp\htdocs\ria\application\views\bankamountpaid.php 1018
+ERROR - 2019-01-08 15:44:10 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankamountpaid.php 1018
+ERROR - 2019-01-08 15:44:11 --> Severity: Notice --> Undefined property: stdClass::$igrfile C:\xampp\htdocs\ria\application\views\bankamountpaid.php 1026
+ERROR - 2019-01-08 15:44:11 --> Severity: Notice --> Undefined property: stdClass::$pofile C:\xampp\htdocs\ria\application\views\bankamountpaid.php 1041
+ERROR - 2019-01-08 15:44:11 --> Severity: Notice --> Undefined variable: record C:\xampp\htdocs\ria\application\views\bankamountpaid.php 1074
+ERROR - 2019-01-08 15:44:11 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankamountpaid.php 1074
+ERROR - 2019-01-08 15:44:11 --> Severity: Notice --> Undefined property: stdClass::$Podate C:\xampp\htdocs\ria\application\views\bankamountpaid.php 1015
+ERROR - 2019-01-08 15:44:11 --> Severity: Notice --> Undefined property: stdClass::$BankDate C:\xampp\htdocs\ria\application\views\bankamountpaid.php 1016
+ERROR - 2019-01-08 15:44:11 --> Severity: Notice --> Undefined variable: t C:\xampp\htdocs\ria\application\views\bankamountpaid.php 1018
+ERROR - 2019-01-08 15:44:11 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankamountpaid.php 1018
+ERROR - 2019-01-08 15:44:11 --> Severity: Notice --> Undefined variable: t C:\xampp\htdocs\ria\application\views\bankamountpaid.php 1018
+ERROR - 2019-01-08 15:44:11 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankamountpaid.php 1018
+ERROR - 2019-01-08 15:44:11 --> Severity: Notice --> Undefined property: stdClass::$igrfile C:\xampp\htdocs\ria\application\views\bankamountpaid.php 1026
+ERROR - 2019-01-08 15:44:11 --> Severity: Notice --> Undefined property: stdClass::$pofile C:\xampp\htdocs\ria\application\views\bankamountpaid.php 1041
+ERROR - 2019-01-08 15:44:11 --> Severity: Notice --> Undefined variable: record C:\xampp\htdocs\ria\application\views\bankamountpaid.php 1074
+ERROR - 2019-01-08 15:44:11 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankamountpaid.php 1074
+ERROR - 2019-01-08 15:44:11 --> Severity: Notice --> Undefined property: stdClass::$Podate C:\xampp\htdocs\ria\application\views\bankamountpaid.php 1015
+ERROR - 2019-01-08 15:44:11 --> Severity: Notice --> Undefined property: stdClass::$BankDate C:\xampp\htdocs\ria\application\views\bankamountpaid.php 1016
+ERROR - 2019-01-08 15:44:11 --> Severity: Notice --> Undefined variable: t C:\xampp\htdocs\ria\application\views\bankamountpaid.php 1018
+ERROR - 2019-01-08 15:44:11 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankamountpaid.php 1018
+ERROR - 2019-01-08 15:44:11 --> Severity: Notice --> Undefined variable: t C:\xampp\htdocs\ria\application\views\bankamountpaid.php 1018
+ERROR - 2019-01-08 15:44:11 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankamountpaid.php 1018
+ERROR - 2019-01-08 15:44:11 --> Severity: Notice --> Undefined property: stdClass::$igrfile C:\xampp\htdocs\ria\application\views\bankamountpaid.php 1026
+ERROR - 2019-01-08 15:44:12 --> Severity: Notice --> Undefined property: stdClass::$pofile C:\xampp\htdocs\ria\application\views\bankamountpaid.php 1041
+ERROR - 2019-01-08 15:44:12 --> Severity: Notice --> Undefined variable: record C:\xampp\htdocs\ria\application\views\bankamountpaid.php 1074
+ERROR - 2019-01-08 15:44:12 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankamountpaid.php 1074
+ERROR - 2019-01-08 15:44:12 --> Severity: Notice --> Undefined property: stdClass::$Podate C:\xampp\htdocs\ria\application\views\bankamountpaid.php 1015
+ERROR - 2019-01-08 15:44:12 --> Severity: Notice --> Undefined property: stdClass::$BankDate C:\xampp\htdocs\ria\application\views\bankamountpaid.php 1016
+ERROR - 2019-01-08 15:44:12 --> Severity: Notice --> Undefined variable: t C:\xampp\htdocs\ria\application\views\bankamountpaid.php 1018
+ERROR - 2019-01-08 15:44:12 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankamountpaid.php 1018
+ERROR - 2019-01-08 15:44:12 --> Severity: Notice --> Undefined variable: t C:\xampp\htdocs\ria\application\views\bankamountpaid.php 1018
+ERROR - 2019-01-08 15:44:12 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankamountpaid.php 1018
+ERROR - 2019-01-08 15:44:12 --> Severity: Notice --> Undefined property: stdClass::$igrfile C:\xampp\htdocs\ria\application\views\bankamountpaid.php 1026
+ERROR - 2019-01-08 15:44:12 --> Severity: Notice --> Undefined property: stdClass::$pofile C:\xampp\htdocs\ria\application\views\bankamountpaid.php 1041
+ERROR - 2019-01-08 15:44:12 --> Severity: Notice --> Undefined variable: record C:\xampp\htdocs\ria\application\views\bankamountpaid.php 1074
+ERROR - 2019-01-08 15:44:12 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankamountpaid.php 1074
+ERROR - 2019-01-08 15:44:12 --> Severity: Notice --> Undefined property: stdClass::$Podate C:\xampp\htdocs\ria\application\views\bankamountpaid.php 1015
+ERROR - 2019-01-08 15:44:12 --> Severity: Notice --> Undefined property: stdClass::$BankDate C:\xampp\htdocs\ria\application\views\bankamountpaid.php 1016
+ERROR - 2019-01-08 15:44:12 --> Severity: Notice --> Undefined variable: t C:\xampp\htdocs\ria\application\views\bankamountpaid.php 1018
+ERROR - 2019-01-08 15:44:12 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankamountpaid.php 1018
+ERROR - 2019-01-08 15:44:12 --> Severity: Notice --> Undefined variable: t C:\xampp\htdocs\ria\application\views\bankamountpaid.php 1018
+ERROR - 2019-01-08 15:44:12 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankamountpaid.php 1018
+ERROR - 2019-01-08 15:44:12 --> Severity: Notice --> Undefined property: stdClass::$igrfile C:\xampp\htdocs\ria\application\views\bankamountpaid.php 1026
+ERROR - 2019-01-08 15:44:12 --> Severity: Notice --> Undefined property: stdClass::$pofile C:\xampp\htdocs\ria\application\views\bankamountpaid.php 1041
+ERROR - 2019-01-08 15:44:12 --> Severity: Notice --> Undefined variable: record C:\xampp\htdocs\ria\application\views\bankamountpaid.php 1074
+ERROR - 2019-01-08 15:44:13 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankamountpaid.php 1074
+ERROR - 2019-01-08 15:44:13 --> Severity: Notice --> Undefined property: stdClass::$Podate C:\xampp\htdocs\ria\application\views\bankamountpaid.php 1015
+ERROR - 2019-01-08 15:44:13 --> Severity: Notice --> Undefined property: stdClass::$BankDate C:\xampp\htdocs\ria\application\views\bankamountpaid.php 1016
+ERROR - 2019-01-08 15:44:13 --> Severity: Notice --> Undefined variable: t C:\xampp\htdocs\ria\application\views\bankamountpaid.php 1018
+ERROR - 2019-01-08 15:44:13 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankamountpaid.php 1018
+ERROR - 2019-01-08 15:44:13 --> Severity: Notice --> Undefined variable: t C:\xampp\htdocs\ria\application\views\bankamountpaid.php 1018
+ERROR - 2019-01-08 15:44:13 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankamountpaid.php 1018
+ERROR - 2019-01-08 15:44:13 --> Severity: Notice --> Undefined property: stdClass::$igrfile C:\xampp\htdocs\ria\application\views\bankamountpaid.php 1026
+ERROR - 2019-01-08 15:44:13 --> Severity: Notice --> Undefined property: stdClass::$pofile C:\xampp\htdocs\ria\application\views\bankamountpaid.php 1041
+ERROR - 2019-01-08 15:44:13 --> Severity: Notice --> Undefined variable: record C:\xampp\htdocs\ria\application\views\bankamountpaid.php 1074
+ERROR - 2019-01-08 15:44:13 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankamountpaid.php 1074
+ERROR - 2019-01-08 15:44:13 --> Severity: Notice --> Undefined property: stdClass::$Podate C:\xampp\htdocs\ria\application\views\bankamountpaid.php 1015
+ERROR - 2019-01-08 15:44:13 --> Severity: Notice --> Undefined property: stdClass::$BankDate C:\xampp\htdocs\ria\application\views\bankamountpaid.php 1016
+ERROR - 2019-01-08 15:44:13 --> Severity: Notice --> Undefined variable: t C:\xampp\htdocs\ria\application\views\bankamountpaid.php 1018
+ERROR - 2019-01-08 15:44:13 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankamountpaid.php 1018
+ERROR - 2019-01-08 15:44:13 --> Severity: Notice --> Undefined variable: t C:\xampp\htdocs\ria\application\views\bankamountpaid.php 1018
+ERROR - 2019-01-08 15:44:13 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankamountpaid.php 1018
+ERROR - 2019-01-08 15:44:13 --> Severity: Notice --> Undefined property: stdClass::$igrfile C:\xampp\htdocs\ria\application\views\bankamountpaid.php 1026
+ERROR - 2019-01-08 15:44:13 --> Severity: Notice --> Undefined property: stdClass::$pofile C:\xampp\htdocs\ria\application\views\bankamountpaid.php 1041
+ERROR - 2019-01-08 15:44:13 --> Severity: Notice --> Undefined variable: record C:\xampp\htdocs\ria\application\views\bankamountpaid.php 1074
+ERROR - 2019-01-08 15:44:13 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankamountpaid.php 1074
+ERROR - 2019-01-08 15:44:14 --> Severity: Notice --> Undefined property: stdClass::$Podate C:\xampp\htdocs\ria\application\views\bankamountpaid.php 1015
+ERROR - 2019-01-08 15:44:14 --> Severity: Notice --> Undefined property: stdClass::$BankDate C:\xampp\htdocs\ria\application\views\bankamountpaid.php 1016
+ERROR - 2019-01-08 15:44:14 --> Severity: Notice --> Undefined variable: t C:\xampp\htdocs\ria\application\views\bankamountpaid.php 1018
+ERROR - 2019-01-08 15:44:14 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankamountpaid.php 1018
+ERROR - 2019-01-08 15:44:14 --> Severity: Notice --> Undefined variable: t C:\xampp\htdocs\ria\application\views\bankamountpaid.php 1018
+ERROR - 2019-01-08 15:44:14 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankamountpaid.php 1018
+ERROR - 2019-01-08 15:44:14 --> Severity: Notice --> Undefined property: stdClass::$igrfile C:\xampp\htdocs\ria\application\views\bankamountpaid.php 1026
+ERROR - 2019-01-08 15:44:14 --> Severity: Notice --> Undefined property: stdClass::$pofile C:\xampp\htdocs\ria\application\views\bankamountpaid.php 1041
+ERROR - 2019-01-08 15:44:14 --> Severity: Notice --> Undefined variable: record C:\xampp\htdocs\ria\application\views\bankamountpaid.php 1074
+ERROR - 2019-01-08 15:44:14 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankamountpaid.php 1074
+ERROR - 2019-01-08 15:44:41 --> Severity: Notice --> Undefined index: igrLTno C:\xampp\htdocs\ria\application\controllers\cashbook.php 1870
+ERROR - 2019-01-08 15:44:42 --> Severity: Notice --> Undefined variable: financialyear C:\xampp\htdocs\ria\application\views\bankposettlement.php 1
+ERROR - 2019-01-08 15:44:42 --> Severity: Warning --> Invalid argument supplied for foreach() C:\xampp\htdocs\ria\application\views\bankposettlement.php 1
diff --git a/application/logs/log-2019-01-09.php b/application/logs/log-2019-01-09.php
new file mode 100644
index 00000000..54c0a03b
--- /dev/null
+++ b/application/logs/log-2019-01-09.php
@@ -0,0 +1,16865 @@
+
+
+ERROR - 2019-01-09 07:50:20 --> Severity: Notice --> Undefined variable: fdate C:\xampp\htdocs\ria\application\controllers\cashbook.php 1738
+ERROR - 2019-01-09 07:50:20 --> Severity: Notice --> Undefined variable: tdate C:\xampp\htdocs\ria\application\controllers\cashbook.php 1738
+ERROR - 2019-01-09 07:50:20 --> Severity: Notice --> Undefined variable: fa C:\xampp\htdocs\ria\application\controllers\cashbook.php 1738
+ERROR - 2019-01-09 07:50:20 --> Severity: Notice --> Undefined variable: aa C:\xampp\htdocs\ria\application\controllers\cashbook.php 1738
+ERROR - 2019-01-09 07:50:21 --> Severity: Notice --> Undefined variable: financialyear C:\xampp\htdocs\ria\application\views\bankstatement.php 2
+ERROR - 2019-01-09 07:50:21 --> Severity: Warning --> Invalid argument supplied for foreach() C:\xampp\htdocs\ria\application\views\bankstatement.php 2
+ERROR - 2019-01-09 07:50:21 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 85
+ERROR - 2019-01-09 07:50:21 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 85
+ERROR - 2019-01-09 07:50:21 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 86
+ERROR - 2019-01-09 07:50:21 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 86
+ERROR - 2019-01-09 07:50:21 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 87
+ERROR - 2019-01-09 07:50:21 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 87
+ERROR - 2019-01-09 07:50:21 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 137
+ERROR - 2019-01-09 07:50:21 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 137
+ERROR - 2019-01-09 07:50:21 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 138
+ERROR - 2019-01-09 07:50:21 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 138
+ERROR - 2019-01-09 07:50:21 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 139
+ERROR - 2019-01-09 07:50:21 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 139
+ERROR - 2019-01-09 07:50:52 --> Severity: Notice --> Undefined variable: creditdebit C:\xampp\htdocs\ria\application\views\bankingfile.php 132
+ERROR - 2019-01-09 07:52:46 --> Severity: Notice --> Undefined variable: financialyear C:\xampp\htdocs\ria\application\views\bankamountpaid.php 10
+ERROR - 2019-01-09 07:52:46 --> Severity: Warning --> Invalid argument supplied for foreach() C:\xampp\htdocs\ria\application\views\bankamountpaid.php 10
+ERROR - 2019-01-09 07:52:46 --> Severity: Notice --> Undefined variable: suppliername C:\xampp\htdocs\ria\application\views\bankamountpaid.php 134
+ERROR - 2019-01-09 07:52:46 --> Severity: Notice --> Undefined variable: supplierid C:\xampp\htdocs\ria\application\views\bankamountpaid.php 138
+ERROR - 2019-01-09 07:52:46 --> Severity: Notice --> Undefined variable: suppliername C:\xampp\htdocs\ria\application\views\bankamountpaid.php 139
+ERROR - 2019-01-09 07:52:46 --> Severity: Notice --> Undefined variable: finyear C:\xampp\htdocs\ria\application\views\bankamountpaid.php 158
+ERROR - 2019-01-09 07:52:46 --> Severity: Warning --> Invalid argument supplied for foreach() C:\xampp\htdocs\ria\application\views\bankamountpaid.php 158
+ERROR - 2019-01-09 07:57:43 --> Severity: Notice --> Undefined variable: financialyear C:\xampp\htdocs\ria\application\views\bankunpaidsupp.php 2
+ERROR - 2019-01-09 07:57:43 --> Severity: Warning --> Invalid argument supplied for foreach() C:\xampp\htdocs\ria\application\views\bankunpaidsupp.php 2
+ERROR - 2019-01-09 07:57:44 --> Severity: Notice --> Undefined variable: t C:\xampp\htdocs\ria\application\views\bankunpaidsupp.php 110
+ERROR - 2019-01-09 07:57:44 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankunpaidsupp.php 110
+ERROR - 2019-01-09 07:57:44 --> Severity: Notice --> Undefined variable: fa C:\xampp\htdocs\ria\application\views\bankunpaidsupp.php 111
+ERROR - 2019-01-09 07:57:44 --> Severity: Notice --> Undefined variable: ta C:\xampp\htdocs\ria\application\views\bankunpaidsupp.php 112
+ERROR - 2019-01-09 07:57:44 --> Severity: Notice --> Undefined variable: m C:\xampp\htdocs\ria\application\views\bankunpaidsupp.php 113
+ERROR - 2019-01-09 07:57:44 --> Severity: Notice --> Undefined variable: fdate C:\xampp\htdocs\ria\application\views\bankunpaidsupp.php 114
+ERROR - 2019-01-09 07:57:44 --> Severity: Notice --> Undefined variable: tdate C:\xampp\htdocs\ria\application\views\bankunpaidsupp.php 115
+ERROR - 2019-01-09 07:57:44 --> Severity: Notice --> Undefined variable: financialyear C:\xampp\htdocs\ria\application\views\bankunpaidsupp.php 2
+ERROR - 2019-01-09 07:57:44 --> Severity: Warning --> Invalid argument supplied for foreach() C:\xampp\htdocs\ria\application\views\bankunpaidsupp.php 2
+ERROR - 2019-01-09 07:57:44 --> Severity: Notice --> Undefined variable: t C:\xampp\htdocs\ria\application\views\bankunpaidsupp.php 110
+ERROR - 2019-01-09 07:57:44 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankunpaidsupp.php 110
+ERROR - 2019-01-09 07:57:44 --> Severity: Notice --> Undefined variable: fa C:\xampp\htdocs\ria\application\views\bankunpaidsupp.php 111
+ERROR - 2019-01-09 07:57:44 --> Severity: Notice --> Undefined variable: ta C:\xampp\htdocs\ria\application\views\bankunpaidsupp.php 112
+ERROR - 2019-01-09 07:57:44 --> Severity: Notice --> Undefined variable: m C:\xampp\htdocs\ria\application\views\bankunpaidsupp.php 113
+ERROR - 2019-01-09 07:57:44 --> Severity: Notice --> Undefined variable: fdate C:\xampp\htdocs\ria\application\views\bankunpaidsupp.php 114
+ERROR - 2019-01-09 07:57:44 --> Severity: Notice --> Undefined variable: tdate C:\xampp\htdocs\ria\application\views\bankunpaidsupp.php 115
+ERROR - 2019-01-09 07:57:56 --> Query error: Unknown column 'PaymentStatus' in 'where clause'
+ERROR - 2019-01-09 08:27:13 --> Severity: Notice --> Undefined variable: financialyear C:\xampp\htdocs\ria\application\views\bankunpaidsupp.php 2
+ERROR - 2019-01-09 08:27:14 --> Severity: Warning --> Invalid argument supplied for foreach() C:\xampp\htdocs\ria\application\views\bankunpaidsupp.php 2
+ERROR - 2019-01-09 08:27:14 --> Severity: Notice --> Undefined variable: t C:\xampp\htdocs\ria\application\views\bankunpaidsupp.php 110
+ERROR - 2019-01-09 08:27:14 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankunpaidsupp.php 110
+ERROR - 2019-01-09 08:27:14 --> Severity: Notice --> Undefined variable: fa C:\xampp\htdocs\ria\application\views\bankunpaidsupp.php 111
+ERROR - 2019-01-09 08:27:14 --> Severity: Notice --> Undefined variable: ta C:\xampp\htdocs\ria\application\views\bankunpaidsupp.php 112
+ERROR - 2019-01-09 08:27:14 --> Severity: Notice --> Undefined variable: m C:\xampp\htdocs\ria\application\views\bankunpaidsupp.php 113
+ERROR - 2019-01-09 08:27:14 --> Severity: Notice --> Undefined variable: fdate C:\xampp\htdocs\ria\application\views\bankunpaidsupp.php 114
+ERROR - 2019-01-09 08:27:14 --> Severity: Notice --> Undefined variable: tdate C:\xampp\htdocs\ria\application\views\bankunpaidsupp.php 115
+ERROR - 2019-01-09 08:27:25 --> Query error: Unknown column 'PaymentStatus' in 'where clause'
+ERROR - 2019-01-09 08:54:36 --> Severity: Notice --> Undefined variable: financialyear C:\xampp\htdocs\ria\application\views\bankunpaidsupp.php 2
+ERROR - 2019-01-09 08:54:36 --> Severity: Warning --> Invalid argument supplied for foreach() C:\xampp\htdocs\ria\application\views\bankunpaidsupp.php 2
+ERROR - 2019-01-09 08:54:36 --> Severity: Notice --> Undefined variable: t C:\xampp\htdocs\ria\application\views\bankunpaidsupp.php 110
+ERROR - 2019-01-09 08:54:36 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankunpaidsupp.php 110
+ERROR - 2019-01-09 08:54:36 --> Severity: Notice --> Undefined variable: fa C:\xampp\htdocs\ria\application\views\bankunpaidsupp.php 111
+ERROR - 2019-01-09 08:54:36 --> Severity: Notice --> Undefined variable: ta C:\xampp\htdocs\ria\application\views\bankunpaidsupp.php 112
+ERROR - 2019-01-09 08:54:36 --> Severity: Notice --> Undefined variable: m C:\xampp\htdocs\ria\application\views\bankunpaidsupp.php 113
+ERROR - 2019-01-09 08:54:36 --> Severity: Notice --> Undefined variable: fdate C:\xampp\htdocs\ria\application\views\bankunpaidsupp.php 114
+ERROR - 2019-01-09 08:54:36 --> Severity: Notice --> Undefined variable: tdate C:\xampp\htdocs\ria\application\views\bankunpaidsupp.php 115
+ERROR - 2019-01-09 08:54:50 --> Query error: Unknown column 'PaymentStatus' in 'where clause'
+ERROR - 2019-01-09 09:14:39 --> Severity: Notice --> Undefined variable: financialyear C:\xampp\htdocs\ria\application\views\bankunpaidsupp.php 2
+ERROR - 2019-01-09 09:14:39 --> Severity: Warning --> Invalid argument supplied for foreach() C:\xampp\htdocs\ria\application\views\bankunpaidsupp.php 2
+ERROR - 2019-01-09 09:14:39 --> Severity: Notice --> Undefined variable: t C:\xampp\htdocs\ria\application\views\bankunpaidsupp.php 110
+ERROR - 2019-01-09 09:14:39 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankunpaidsupp.php 110
+ERROR - 2019-01-09 09:14:39 --> Severity: Notice --> Undefined variable: fa C:\xampp\htdocs\ria\application\views\bankunpaidsupp.php 111
+ERROR - 2019-01-09 09:14:39 --> Severity: Notice --> Undefined variable: ta C:\xampp\htdocs\ria\application\views\bankunpaidsupp.php 112
+ERROR - 2019-01-09 09:14:39 --> Severity: Notice --> Undefined variable: m C:\xampp\htdocs\ria\application\views\bankunpaidsupp.php 113
+ERROR - 2019-01-09 09:14:39 --> Severity: Notice --> Undefined variable: fdate C:\xampp\htdocs\ria\application\views\bankunpaidsupp.php 114
+ERROR - 2019-01-09 09:14:39 --> Severity: Notice --> Undefined variable: tdate C:\xampp\htdocs\ria\application\views\bankunpaidsupp.php 115
+ERROR - 2019-01-09 09:14:52 --> Severity: Notice --> Undefined variable: financialyear C:\xampp\htdocs\ria\application\views\bankunpaidsupp.php 2
+ERROR - 2019-01-09 09:14:52 --> Severity: Warning --> Invalid argument supplied for foreach() C:\xampp\htdocs\ria\application\views\bankunpaidsupp.php 2
+ERROR - 2019-01-09 09:14:52 --> Severity: Notice --> Undefined variable: t C:\xampp\htdocs\ria\application\views\bankunpaidsupp.php 110
+ERROR - 2019-01-09 09:14:52 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankunpaidsupp.php 110
+ERROR - 2019-01-09 09:14:52 --> Severity: Notice --> Undefined variable: ta C:\xampp\htdocs\ria\application\views\bankunpaidsupp.php 112
+ERROR - 2019-01-09 09:14:52 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankunpaidsupp.php 200
+ERROR - 2019-01-09 09:14:52 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankunpaidsupp.php 201
+ERROR - 2019-01-09 09:14:52 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\ria\application\views\bankunpaidsupp.php 202
+ERROR - 2019-01-09 09:14:52 --> Severity: Notice --> Undefined property: stdClass::$SupplierID C:\xampp\htdocs\ria\application\views\bankunpaidsupp.php 204
+ERROR - 2019-01-09 09:14:52 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankunpaidsupp.php 214
+ERROR - 2019-01-09 09:14:52 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankunpaidsupp.php 215
+ERROR - 2019-01-09 09:14:53 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankunpaidsupp.php 221
+ERROR - 2019-01-09 09:14:53 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankunpaidsupp.php 200
+ERROR - 2019-01-09 09:14:53 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankunpaidsupp.php 201
+ERROR - 2019-01-09 09:14:53 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\ria\application\views\bankunpaidsupp.php 202
+ERROR - 2019-01-09 09:14:53 --> Severity: Notice --> Undefined property: stdClass::$SupplierID C:\xampp\htdocs\ria\application\views\bankunpaidsupp.php 204
+ERROR - 2019-01-09 09:14:53 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankunpaidsupp.php 200
+ERROR - 2019-01-09 09:14:53 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankunpaidsupp.php 201
+ERROR - 2019-01-09 09:14:53 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\ria\application\views\bankunpaidsupp.php 202
+ERROR - 2019-01-09 09:14:53 --> Severity: Notice --> Undefined property: stdClass::$SupplierID C:\xampp\htdocs\ria\application\views\bankunpaidsupp.php 204
+ERROR - 2019-01-09 09:16:18 --> Severity: Notice --> Undefined variable: financialyear C:\xampp\htdocs\ria\application\views\bankamountunpaid.php 2
+ERROR - 2019-01-09 09:16:18 --> Severity: Warning --> Invalid argument supplied for foreach() C:\xampp\htdocs\ria\application\views\bankamountunpaid.php 2
+ERROR - 2019-01-09 09:16:18 --> Severity: Notice --> Undefined variable: t C:\xampp\htdocs\ria\application\views\bankamountunpaid.php 103
+ERROR - 2019-01-09 09:16:18 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankamountunpaid.php 103
+ERROR - 2019-01-09 09:16:18 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankamountunpaid.php 268
+ERROR - 2019-01-09 09:16:18 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankamountunpaid.php 269
+ERROR - 2019-01-09 09:16:18 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\ria\application\views\bankamountunpaid.php 270
+ERROR - 2019-01-09 09:16:18 --> Severity: Notice --> Undefined property: stdClass::$DeliveryChellanOrInvoiceNo C:\xampp\htdocs\ria\application\views\bankamountunpaid.php 279
+ERROR - 2019-01-09 09:16:18 --> Severity: Notice --> Undefined property: stdClass::$IGRItemNo C:\xampp\htdocs\ria\application\views\bankamountunpaid.php 300
+ERROR - 2019-01-09 09:16:18 --> Severity: Notice --> Undefined property: stdClass::$iwFpath C:\xampp\htdocs\ria\application\views\bankamountunpaid.php 304
+ERROR - 2019-01-09 09:16:18 --> Severity: Notice --> Undefined property: stdClass::$poFilePath C:\xampp\htdocs\ria\application\views\bankamountunpaid.php 319
+ERROR - 2019-01-09 09:16:18 --> Severity: Notice --> Undefined property: stdClass::$days C:\xampp\htdocs\ria\application\views\bankamountunpaid.php 342
+ERROR - 2019-01-09 09:16:37 --> Severity: Notice --> Undefined variable: financialyear C:\xampp\htdocs\ria\application\views\bankunpaidsupp.php 2
+ERROR - 2019-01-09 09:16:37 --> Severity: Warning --> Invalid argument supplied for foreach() C:\xampp\htdocs\ria\application\views\bankunpaidsupp.php 2
+ERROR - 2019-01-09 09:16:37 --> Severity: Notice --> Undefined variable: t C:\xampp\htdocs\ria\application\views\bankunpaidsupp.php 110
+ERROR - 2019-01-09 09:16:37 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankunpaidsupp.php 110
+ERROR - 2019-01-09 09:16:37 --> Severity: Notice --> Undefined variable: ta C:\xampp\htdocs\ria\application\views\bankunpaidsupp.php 112
+ERROR - 2019-01-09 09:16:37 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankunpaidsupp.php 200
+ERROR - 2019-01-09 09:16:37 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankunpaidsupp.php 201
+ERROR - 2019-01-09 09:16:37 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\ria\application\views\bankunpaidsupp.php 202
+ERROR - 2019-01-09 09:16:37 --> Severity: Notice --> Undefined property: stdClass::$SupplierID C:\xampp\htdocs\ria\application\views\bankunpaidsupp.php 204
+ERROR - 2019-01-09 09:16:37 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankunpaidsupp.php 214
+ERROR - 2019-01-09 09:16:37 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankunpaidsupp.php 215
+ERROR - 2019-01-09 09:16:37 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankunpaidsupp.php 221
+ERROR - 2019-01-09 09:16:37 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankunpaidsupp.php 200
+ERROR - 2019-01-09 09:16:37 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankunpaidsupp.php 201
+ERROR - 2019-01-09 09:16:37 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\ria\application\views\bankunpaidsupp.php 202
+ERROR - 2019-01-09 09:16:37 --> Severity: Notice --> Undefined property: stdClass::$SupplierID C:\xampp\htdocs\ria\application\views\bankunpaidsupp.php 204
+ERROR - 2019-01-09 09:16:37 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankunpaidsupp.php 200
+ERROR - 2019-01-09 09:16:37 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankunpaidsupp.php 201
+ERROR - 2019-01-09 09:16:37 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\ria\application\views\bankunpaidsupp.php 202
+ERROR - 2019-01-09 09:16:37 --> Severity: Notice --> Undefined property: stdClass::$SupplierID C:\xampp\htdocs\ria\application\views\bankunpaidsupp.php 204
+ERROR - 2019-01-09 09:16:49 --> Severity: Notice --> Undefined variable: financialyear C:\xampp\htdocs\ria\application\views\bankamountunpaid.php 2
+ERROR - 2019-01-09 09:16:49 --> Severity: Warning --> Invalid argument supplied for foreach() C:\xampp\htdocs\ria\application\views\bankamountunpaid.php 2
+ERROR - 2019-01-09 09:16:49 --> Severity: Notice --> Undefined variable: t C:\xampp\htdocs\ria\application\views\bankamountunpaid.php 103
+ERROR - 2019-01-09 09:16:49 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankamountunpaid.php 103
+ERROR - 2019-01-09 09:16:49 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankamountunpaid.php 268
+ERROR - 2019-01-09 09:16:49 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankamountunpaid.php 269
+ERROR - 2019-01-09 09:16:49 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\ria\application\views\bankamountunpaid.php 270
+ERROR - 2019-01-09 09:16:49 --> Severity: Notice --> Undefined property: stdClass::$DeliveryChellanOrInvoiceNo C:\xampp\htdocs\ria\application\views\bankamountunpaid.php 279
+ERROR - 2019-01-09 09:16:49 --> Severity: Notice --> Undefined property: stdClass::$IGRItemNo C:\xampp\htdocs\ria\application\views\bankamountunpaid.php 300
+ERROR - 2019-01-09 09:16:49 --> Severity: Notice --> Undefined property: stdClass::$iwFpath C:\xampp\htdocs\ria\application\views\bankamountunpaid.php 304
+ERROR - 2019-01-09 09:16:49 --> Severity: Notice --> Undefined property: stdClass::$poFilePath C:\xampp\htdocs\ria\application\views\bankamountunpaid.php 319
+ERROR - 2019-01-09 09:16:49 --> Severity: Notice --> Undefined property: stdClass::$days C:\xampp\htdocs\ria\application\views\bankamountunpaid.php 342
+ERROR - 2019-01-09 09:16:49 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankamountunpaid.php 268
+ERROR - 2019-01-09 09:16:49 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankamountunpaid.php 269
+ERROR - 2019-01-09 09:16:49 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\ria\application\views\bankamountunpaid.php 270
+ERROR - 2019-01-09 09:16:49 --> Severity: Notice --> Undefined property: stdClass::$DeliveryChellanOrInvoiceNo C:\xampp\htdocs\ria\application\views\bankamountunpaid.php 279
+ERROR - 2019-01-09 09:16:50 --> Severity: Notice --> Undefined property: stdClass::$IGRItemNo C:\xampp\htdocs\ria\application\views\bankamountunpaid.php 300
+ERROR - 2019-01-09 09:16:50 --> Severity: Notice --> Undefined property: stdClass::$iwFpath C:\xampp\htdocs\ria\application\views\bankamountunpaid.php 304
+ERROR - 2019-01-09 09:16:50 --> Severity: Notice --> Undefined property: stdClass::$poFilePath C:\xampp\htdocs\ria\application\views\bankamountunpaid.php 319
+ERROR - 2019-01-09 09:16:50 --> Severity: Notice --> Undefined property: stdClass::$days C:\xampp\htdocs\ria\application\views\bankamountunpaid.php 342
+ERROR - 2019-01-09 09:16:50 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankamountunpaid.php 268
+ERROR - 2019-01-09 09:16:50 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankamountunpaid.php 269
+ERROR - 2019-01-09 09:16:50 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\ria\application\views\bankamountunpaid.php 270
+ERROR - 2019-01-09 09:16:50 --> Severity: Notice --> Undefined property: stdClass::$DeliveryChellanOrInvoiceNo C:\xampp\htdocs\ria\application\views\bankamountunpaid.php 279
+ERROR - 2019-01-09 09:16:50 --> Severity: Notice --> Undefined property: stdClass::$IGRItemNo C:\xampp\htdocs\ria\application\views\bankamountunpaid.php 300
+ERROR - 2019-01-09 09:16:50 --> Severity: Notice --> Undefined property: stdClass::$iwFpath C:\xampp\htdocs\ria\application\views\bankamountunpaid.php 304
+ERROR - 2019-01-09 09:16:50 --> Severity: Notice --> Undefined property: stdClass::$poFilePath C:\xampp\htdocs\ria\application\views\bankamountunpaid.php 319
+ERROR - 2019-01-09 09:16:50 --> Severity: Notice --> Undefined property: stdClass::$days C:\xampp\htdocs\ria\application\views\bankamountunpaid.php 342
+ERROR - 2019-01-09 09:16:50 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankamountunpaid.php 268
+ERROR - 2019-01-09 09:16:50 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankamountunpaid.php 269
+ERROR - 2019-01-09 09:16:50 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\ria\application\views\bankamountunpaid.php 270
+ERROR - 2019-01-09 09:16:50 --> Severity: Notice --> Undefined property: stdClass::$DeliveryChellanOrInvoiceNo C:\xampp\htdocs\ria\application\views\bankamountunpaid.php 279
+ERROR - 2019-01-09 09:16:50 --> Severity: Notice --> Undefined property: stdClass::$IGRItemNo C:\xampp\htdocs\ria\application\views\bankamountunpaid.php 300
+ERROR - 2019-01-09 09:16:50 --> Severity: Notice --> Undefined property: stdClass::$iwFpath C:\xampp\htdocs\ria\application\views\bankamountunpaid.php 304
+ERROR - 2019-01-09 09:16:50 --> Severity: Notice --> Undefined property: stdClass::$poFilePath C:\xampp\htdocs\ria\application\views\bankamountunpaid.php 319
+ERROR - 2019-01-09 09:16:50 --> Severity: Notice --> Undefined property: stdClass::$days C:\xampp\htdocs\ria\application\views\bankamountunpaid.php 342
+ERROR - 2019-01-09 09:17:12 --> Severity: Notice --> Undefined variable: financialyear C:\xampp\htdocs\ria\application\views\bankunpaidsupp.php 2
+ERROR - 2019-01-09 09:17:12 --> Severity: Warning --> Invalid argument supplied for foreach() C:\xampp\htdocs\ria\application\views\bankunpaidsupp.php 2
+ERROR - 2019-01-09 09:17:12 --> Severity: Notice --> Undefined variable: t C:\xampp\htdocs\ria\application\views\bankunpaidsupp.php 110
+ERROR - 2019-01-09 09:17:12 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankunpaidsupp.php 110
+ERROR - 2019-01-09 09:17:12 --> Severity: Notice --> Undefined variable: ta C:\xampp\htdocs\ria\application\views\bankunpaidsupp.php 112
+ERROR - 2019-01-09 09:17:12 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankunpaidsupp.php 200
+ERROR - 2019-01-09 09:17:12 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankunpaidsupp.php 201
+ERROR - 2019-01-09 09:17:13 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\ria\application\views\bankunpaidsupp.php 202
+ERROR - 2019-01-09 09:17:13 --> Severity: Notice --> Undefined property: stdClass::$SupplierID C:\xampp\htdocs\ria\application\views\bankunpaidsupp.php 204
+ERROR - 2019-01-09 09:17:13 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankunpaidsupp.php 214
+ERROR - 2019-01-09 09:17:13 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankunpaidsupp.php 215
+ERROR - 2019-01-09 09:17:13 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankunpaidsupp.php 221
+ERROR - 2019-01-09 09:17:13 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankunpaidsupp.php 200
+ERROR - 2019-01-09 09:17:13 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankunpaidsupp.php 201
+ERROR - 2019-01-09 09:17:13 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\ria\application\views\bankunpaidsupp.php 202
+ERROR - 2019-01-09 09:17:13 --> Severity: Notice --> Undefined property: stdClass::$SupplierID C:\xampp\htdocs\ria\application\views\bankunpaidsupp.php 204
+ERROR - 2019-01-09 09:17:13 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankunpaidsupp.php 200
+ERROR - 2019-01-09 09:17:13 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankunpaidsupp.php 201
+ERROR - 2019-01-09 09:17:13 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\ria\application\views\bankunpaidsupp.php 202
+ERROR - 2019-01-09 09:17:13 --> Severity: Notice --> Undefined property: stdClass::$SupplierID C:\xampp\htdocs\ria\application\views\bankunpaidsupp.php 204
+ERROR - 2019-01-09 09:17:25 --> Severity: Notice --> Undefined variable: financialyear C:\xampp\htdocs\ria\application\views\bankamountunpaid.php 2
+ERROR - 2019-01-09 09:17:25 --> Severity: Warning --> Invalid argument supplied for foreach() C:\xampp\htdocs\ria\application\views\bankamountunpaid.php 2
+ERROR - 2019-01-09 09:17:25 --> Severity: Notice --> Undefined variable: t C:\xampp\htdocs\ria\application\views\bankamountunpaid.php 103
+ERROR - 2019-01-09 09:17:25 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankamountunpaid.php 103
+ERROR - 2019-01-09 09:17:25 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankamountunpaid.php 268
+ERROR - 2019-01-09 09:17:25 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankamountunpaid.php 269
+ERROR - 2019-01-09 09:17:25 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\ria\application\views\bankamountunpaid.php 270
+ERROR - 2019-01-09 09:17:25 --> Severity: Notice --> Undefined property: stdClass::$DeliveryChellanOrInvoiceNo C:\xampp\htdocs\ria\application\views\bankamountunpaid.php 279
+ERROR - 2019-01-09 09:17:25 --> Severity: Notice --> Undefined property: stdClass::$IGRItemNo C:\xampp\htdocs\ria\application\views\bankamountunpaid.php 300
+ERROR - 2019-01-09 09:17:25 --> Severity: Notice --> Undefined property: stdClass::$iwFpath C:\xampp\htdocs\ria\application\views\bankamountunpaid.php 304
+ERROR - 2019-01-09 09:17:25 --> Severity: Notice --> Undefined property: stdClass::$poFilePath C:\xampp\htdocs\ria\application\views\bankamountunpaid.php 319
+ERROR - 2019-01-09 09:17:25 --> Severity: Notice --> Undefined property: stdClass::$days C:\xampp\htdocs\ria\application\views\bankamountunpaid.php 342
+ERROR - 2019-01-09 09:17:25 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankamountunpaid.php 268
+ERROR - 2019-01-09 09:17:25 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankamountunpaid.php 269
+ERROR - 2019-01-09 09:17:26 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\ria\application\views\bankamountunpaid.php 270
+ERROR - 2019-01-09 09:17:26 --> Severity: Notice --> Undefined property: stdClass::$DeliveryChellanOrInvoiceNo C:\xampp\htdocs\ria\application\views\bankamountunpaid.php 279
+ERROR - 2019-01-09 09:17:26 --> Severity: Notice --> Undefined property: stdClass::$IGRItemNo C:\xampp\htdocs\ria\application\views\bankamountunpaid.php 300
+ERROR - 2019-01-09 09:17:26 --> Severity: Notice --> Undefined property: stdClass::$iwFpath C:\xampp\htdocs\ria\application\views\bankamountunpaid.php 304
+ERROR - 2019-01-09 09:17:26 --> Severity: Notice --> Undefined property: stdClass::$poFilePath C:\xampp\htdocs\ria\application\views\bankamountunpaid.php 319
+ERROR - 2019-01-09 09:17:26 --> Severity: Notice --> Undefined property: stdClass::$days C:\xampp\htdocs\ria\application\views\bankamountunpaid.php 342
+ERROR - 2019-01-09 09:17:26 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankamountunpaid.php 268
+ERROR - 2019-01-09 09:17:26 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankamountunpaid.php 269
+ERROR - 2019-01-09 09:17:26 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\ria\application\views\bankamountunpaid.php 270
+ERROR - 2019-01-09 09:17:26 --> Severity: Notice --> Undefined property: stdClass::$DeliveryChellanOrInvoiceNo C:\xampp\htdocs\ria\application\views\bankamountunpaid.php 279
+ERROR - 2019-01-09 09:17:26 --> Severity: Notice --> Undefined property: stdClass::$IGRItemNo C:\xampp\htdocs\ria\application\views\bankamountunpaid.php 300
+ERROR - 2019-01-09 09:17:26 --> Severity: Notice --> Undefined property: stdClass::$iwFpath C:\xampp\htdocs\ria\application\views\bankamountunpaid.php 304
+ERROR - 2019-01-09 09:17:26 --> Severity: Notice --> Undefined property: stdClass::$poFilePath C:\xampp\htdocs\ria\application\views\bankamountunpaid.php 319
+ERROR - 2019-01-09 09:17:26 --> Severity: Notice --> Undefined property: stdClass::$days C:\xampp\htdocs\ria\application\views\bankamountunpaid.php 342
+ERROR - 2019-01-09 09:17:26 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankamountunpaid.php 268
+ERROR - 2019-01-09 09:17:26 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankamountunpaid.php 269
+ERROR - 2019-01-09 09:17:26 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\ria\application\views\bankamountunpaid.php 270
+ERROR - 2019-01-09 09:17:26 --> Severity: Notice --> Undefined property: stdClass::$DeliveryChellanOrInvoiceNo C:\xampp\htdocs\ria\application\views\bankamountunpaid.php 279
+ERROR - 2019-01-09 09:17:26 --> Severity: Notice --> Undefined property: stdClass::$IGRItemNo C:\xampp\htdocs\ria\application\views\bankamountunpaid.php 300
+ERROR - 2019-01-09 09:17:26 --> Severity: Notice --> Undefined property: stdClass::$iwFpath C:\xampp\htdocs\ria\application\views\bankamountunpaid.php 304
+ERROR - 2019-01-09 09:17:26 --> Severity: Notice --> Undefined property: stdClass::$poFilePath C:\xampp\htdocs\ria\application\views\bankamountunpaid.php 319
+ERROR - 2019-01-09 09:17:26 --> Severity: Notice --> Undefined property: stdClass::$days C:\xampp\htdocs\ria\application\views\bankamountunpaid.php 342
+ERROR - 2019-01-09 09:17:26 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankamountunpaid.php 268
+ERROR - 2019-01-09 09:17:26 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankamountunpaid.php 269
+ERROR - 2019-01-09 09:17:26 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\ria\application\views\bankamountunpaid.php 270
+ERROR - 2019-01-09 09:17:26 --> Severity: Notice --> Undefined property: stdClass::$DeliveryChellanOrInvoiceNo C:\xampp\htdocs\ria\application\views\bankamountunpaid.php 279
+ERROR - 2019-01-09 09:17:26 --> Severity: Notice --> Undefined property: stdClass::$IGRItemNo C:\xampp\htdocs\ria\application\views\bankamountunpaid.php 300
+ERROR - 2019-01-09 09:17:26 --> Severity: Notice --> Undefined property: stdClass::$iwFpath C:\xampp\htdocs\ria\application\views\bankamountunpaid.php 304
+ERROR - 2019-01-09 09:17:26 --> Severity: Notice --> Undefined property: stdClass::$poFilePath C:\xampp\htdocs\ria\application\views\bankamountunpaid.php 319
+ERROR - 2019-01-09 09:17:26 --> Severity: Notice --> Undefined property: stdClass::$days C:\xampp\htdocs\ria\application\views\bankamountunpaid.php 342
+ERROR - 2019-01-09 09:17:26 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankamountunpaid.php 268
+ERROR - 2019-01-09 09:17:26 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankamountunpaid.php 269
+ERROR - 2019-01-09 09:17:26 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\ria\application\views\bankamountunpaid.php 270
+ERROR - 2019-01-09 09:17:26 --> Severity: Notice --> Undefined property: stdClass::$DeliveryChellanOrInvoiceNo C:\xampp\htdocs\ria\application\views\bankamountunpaid.php 279
+ERROR - 2019-01-09 09:17:27 --> Severity: Notice --> Undefined property: stdClass::$IGRItemNo C:\xampp\htdocs\ria\application\views\bankamountunpaid.php 300
+ERROR - 2019-01-09 09:17:27 --> Severity: Notice --> Undefined property: stdClass::$iwFpath C:\xampp\htdocs\ria\application\views\bankamountunpaid.php 304
+ERROR - 2019-01-09 09:17:27 --> Severity: Notice --> Undefined property: stdClass::$poFilePath C:\xampp\htdocs\ria\application\views\bankamountunpaid.php 319
+ERROR - 2019-01-09 09:17:27 --> Severity: Notice --> Undefined property: stdClass::$days C:\xampp\htdocs\ria\application\views\bankamountunpaid.php 342
+ERROR - 2019-01-09 09:17:27 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankamountunpaid.php 268
+ERROR - 2019-01-09 09:17:27 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankamountunpaid.php 269
+ERROR - 2019-01-09 09:17:27 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\ria\application\views\bankamountunpaid.php 270
+ERROR - 2019-01-09 09:17:27 --> Severity: Notice --> Undefined property: stdClass::$DeliveryChellanOrInvoiceNo C:\xampp\htdocs\ria\application\views\bankamountunpaid.php 279
+ERROR - 2019-01-09 09:17:27 --> Severity: Notice --> Undefined property: stdClass::$IGRItemNo C:\xampp\htdocs\ria\application\views\bankamountunpaid.php 300
+ERROR - 2019-01-09 09:17:27 --> Severity: Notice --> Undefined property: stdClass::$iwFpath C:\xampp\htdocs\ria\application\views\bankamountunpaid.php 304
+ERROR - 2019-01-09 09:17:27 --> Severity: Notice --> Undefined property: stdClass::$poFilePath C:\xampp\htdocs\ria\application\views\bankamountunpaid.php 319
+ERROR - 2019-01-09 09:17:27 --> Severity: Notice --> Undefined property: stdClass::$days C:\xampp\htdocs\ria\application\views\bankamountunpaid.php 342
+ERROR - 2019-01-09 09:17:27 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankamountunpaid.php 268
+ERROR - 2019-01-09 09:17:27 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankamountunpaid.php 269
+ERROR - 2019-01-09 09:17:27 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\ria\application\views\bankamountunpaid.php 270
+ERROR - 2019-01-09 09:17:27 --> Severity: Notice --> Undefined property: stdClass::$DeliveryChellanOrInvoiceNo C:\xampp\htdocs\ria\application\views\bankamountunpaid.php 279
+ERROR - 2019-01-09 09:17:27 --> Severity: Notice --> Undefined property: stdClass::$IGRItemNo C:\xampp\htdocs\ria\application\views\bankamountunpaid.php 300
+ERROR - 2019-01-09 09:17:27 --> Severity: Notice --> Undefined property: stdClass::$iwFpath C:\xampp\htdocs\ria\application\views\bankamountunpaid.php 304
+ERROR - 2019-01-09 09:17:27 --> Severity: Notice --> Undefined property: stdClass::$poFilePath C:\xampp\htdocs\ria\application\views\bankamountunpaid.php 319
+ERROR - 2019-01-09 09:17:27 --> Severity: Notice --> Undefined property: stdClass::$days C:\xampp\htdocs\ria\application\views\bankamountunpaid.php 342
+ERROR - 2019-01-09 09:17:27 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankamountunpaid.php 268
+ERROR - 2019-01-09 09:17:27 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankamountunpaid.php 269
+ERROR - 2019-01-09 09:17:27 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\ria\application\views\bankamountunpaid.php 270
+ERROR - 2019-01-09 09:17:27 --> Severity: Notice --> Undefined property: stdClass::$DeliveryChellanOrInvoiceNo C:\xampp\htdocs\ria\application\views\bankamountunpaid.php 279
+ERROR - 2019-01-09 09:17:27 --> Severity: Notice --> Undefined property: stdClass::$IGRItemNo C:\xampp\htdocs\ria\application\views\bankamountunpaid.php 300
+ERROR - 2019-01-09 09:17:27 --> Severity: Notice --> Undefined property: stdClass::$iwFpath C:\xampp\htdocs\ria\application\views\bankamountunpaid.php 304
+ERROR - 2019-01-09 09:17:27 --> Severity: Notice --> Undefined property: stdClass::$poFilePath C:\xampp\htdocs\ria\application\views\bankamountunpaid.php 319
+ERROR - 2019-01-09 09:17:27 --> Severity: Notice --> Undefined property: stdClass::$days C:\xampp\htdocs\ria\application\views\bankamountunpaid.php 342
+ERROR - 2019-01-09 09:17:27 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankamountunpaid.php 268
+ERROR - 2019-01-09 09:17:27 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankamountunpaid.php 269
+ERROR - 2019-01-09 09:17:27 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\ria\application\views\bankamountunpaid.php 270
+ERROR - 2019-01-09 09:17:27 --> Severity: Notice --> Undefined property: stdClass::$DeliveryChellanOrInvoiceNo C:\xampp\htdocs\ria\application\views\bankamountunpaid.php 279
+ERROR - 2019-01-09 09:17:28 --> Severity: Notice --> Undefined property: stdClass::$IGRItemNo C:\xampp\htdocs\ria\application\views\bankamountunpaid.php 300
+ERROR - 2019-01-09 09:17:28 --> Severity: Notice --> Undefined property: stdClass::$iwFpath C:\xampp\htdocs\ria\application\views\bankamountunpaid.php 304
+ERROR - 2019-01-09 09:17:28 --> Severity: Notice --> Undefined property: stdClass::$poFilePath C:\xampp\htdocs\ria\application\views\bankamountunpaid.php 319
+ERROR - 2019-01-09 09:17:28 --> Severity: Notice --> Undefined property: stdClass::$days C:\xampp\htdocs\ria\application\views\bankamountunpaid.php 342
+ERROR - 2019-01-09 09:18:34 --> Severity: Notice --> Undefined variable: financialyear C:\xampp\htdocs\ria\application\views\bankunpaidsupp.php 2
+ERROR - 2019-01-09 09:18:34 --> Severity: Warning --> Invalid argument supplied for foreach() C:\xampp\htdocs\ria\application\views\bankunpaidsupp.php 2
+ERROR - 2019-01-09 09:18:34 --> Severity: Notice --> Undefined variable: t C:\xampp\htdocs\ria\application\views\bankunpaidsupp.php 110
+ERROR - 2019-01-09 09:18:34 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankunpaidsupp.php 110
+ERROR - 2019-01-09 09:18:34 --> Severity: Notice --> Undefined variable: fa C:\xampp\htdocs\ria\application\views\bankunpaidsupp.php 111
+ERROR - 2019-01-09 09:18:34 --> Severity: Notice --> Undefined variable: ta C:\xampp\htdocs\ria\application\views\bankunpaidsupp.php 112
+ERROR - 2019-01-09 09:18:34 --> Severity: Notice --> Undefined variable: m C:\xampp\htdocs\ria\application\views\bankunpaidsupp.php 113
+ERROR - 2019-01-09 09:18:34 --> Severity: Notice --> Undefined variable: fdate C:\xampp\htdocs\ria\application\views\bankunpaidsupp.php 114
+ERROR - 2019-01-09 09:18:34 --> Severity: Notice --> Undefined variable: tdate C:\xampp\htdocs\ria\application\views\bankunpaidsupp.php 115
+ERROR - 2019-01-09 10:13:46 --> Severity: Notice --> Undefined variable: financialyear C:\xampp\htdocs\ria\application\views\bankunpaidsupp.php 2
+ERROR - 2019-01-09 10:13:46 --> Severity: Warning --> Invalid argument supplied for foreach() C:\xampp\htdocs\ria\application\views\bankunpaidsupp.php 2
+ERROR - 2019-01-09 10:13:46 --> Severity: Notice --> Undefined variable: t C:\xampp\htdocs\ria\application\views\bankunpaidsupp.php 110
+ERROR - 2019-01-09 10:13:46 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankunpaidsupp.php 110
+ERROR - 2019-01-09 10:13:46 --> Severity: Notice --> Undefined variable: ta C:\xampp\htdocs\ria\application\views\bankunpaidsupp.php 112
+ERROR - 2019-01-09 10:13:46 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankunpaidsupp.php 200
+ERROR - 2019-01-09 10:13:46 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankunpaidsupp.php 201
+ERROR - 2019-01-09 10:13:46 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\ria\application\views\bankunpaidsupp.php 202
+ERROR - 2019-01-09 10:13:46 --> Severity: Notice --> Undefined property: stdClass::$SupplierID C:\xampp\htdocs\ria\application\views\bankunpaidsupp.php 204
+ERROR - 2019-01-09 10:13:46 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankunpaidsupp.php 214
+ERROR - 2019-01-09 10:13:46 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankunpaidsupp.php 215
+ERROR - 2019-01-09 10:13:46 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankunpaidsupp.php 221
+ERROR - 2019-01-09 10:13:46 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankunpaidsupp.php 200
+ERROR - 2019-01-09 10:13:46 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankunpaidsupp.php 201
+ERROR - 2019-01-09 10:13:46 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\ria\application\views\bankunpaidsupp.php 202
+ERROR - 2019-01-09 10:13:46 --> Severity: Notice --> Undefined property: stdClass::$SupplierID C:\xampp\htdocs\ria\application\views\bankunpaidsupp.php 204
+ERROR - 2019-01-09 10:13:46 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankunpaidsupp.php 200
+ERROR - 2019-01-09 10:13:46 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankunpaidsupp.php 201
+ERROR - 2019-01-09 10:13:46 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\ria\application\views\bankunpaidsupp.php 202
+ERROR - 2019-01-09 10:13:46 --> Severity: Notice --> Undefined property: stdClass::$SupplierID C:\xampp\htdocs\ria\application\views\bankunpaidsupp.php 204
+ERROR - 2019-01-09 10:16:01 --> Severity: Notice --> Use of undefined constant ST066 - assumed 'ST066' C:\xampp\htdocs\ria\application\models\cashbook_model.php 1766
+ERROR - 2019-01-09 10:16:02 --> Severity: Notice --> Undefined variable: financialyear C:\xampp\htdocs\ria\application\views\bankreceivedsupp.php 2
+ERROR - 2019-01-09 10:16:02 --> Severity: Warning --> Invalid argument supplied for foreach() C:\xampp\htdocs\ria\application\views\bankreceivedsupp.php 2
+ERROR - 2019-01-09 10:16:02 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankreceivedsupp.php 243
+ERROR - 2019-01-09 10:16:02 --> Severity: Notice --> Undefined variable: fa C:\xampp\htdocs\ria\application\views\bankreceivedsupp.php 243
+ERROR - 2019-01-09 10:16:02 --> Severity: Notice --> Undefined variable: aa C:\xampp\htdocs\ria\application\views\bankreceivedsupp.php 243
+ERROR - 2019-01-09 10:16:02 --> Severity: Notice --> Undefined variable: m C:\xampp\htdocs\ria\application\views\bankreceivedsupp.php 243
+ERROR - 2019-01-09 10:16:02 --> Severity: Notice --> Undefined variable: fdate C:\xampp\htdocs\ria\application\views\bankreceivedsupp.php 243
+ERROR - 2019-01-09 10:16:02 --> Severity: Notice --> Undefined variable: tdate C:\xampp\htdocs\ria\application\views\bankreceivedsupp.php 243
+ERROR - 2019-01-09 10:16:02 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankreceivedsupp.php 244
+ERROR - 2019-01-09 10:16:02 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankreceivedsupp.php 250
+ERROR - 2019-01-09 10:16:18 --> Severity: Notice --> Use of undefined constant ST066 - assumed 'ST066' C:\xampp\htdocs\ria\application\models\cashbook_model.php 1732
+ERROR - 2019-01-09 10:16:19 --> Severity: Notice --> Undefined variable: financialyear C:\xampp\htdocs\ria\application\views\bankamountreceived.php 10
+ERROR - 2019-01-09 10:16:19 --> Severity: Warning --> Invalid argument supplied for foreach() C:\xampp\htdocs\ria\application\views\bankamountreceived.php 10
+ERROR - 2019-01-09 10:16:31 --> Severity: Notice --> Use of undefined constant ST066 - assumed 'ST066' C:\xampp\htdocs\ria\application\models\cashbook_model.php 1013
+ERROR - 2019-01-09 10:16:32 --> Severity: Notice --> Undefined variable: financialyear C:\xampp\htdocs\ria\application\views\bankamountreceived.php 10
+ERROR - 2019-01-09 10:16:32 --> Severity: Warning --> Invalid argument supplied for foreach() C:\xampp\htdocs\ria\application\views\bankamountreceived.php 10
+ERROR - 2019-01-09 10:16:52 --> Severity: Notice --> Use of undefined constant ST066 - assumed 'ST066' C:\xampp\htdocs\ria\application\models\cashbook_model.php 1766
+ERROR - 2019-01-09 10:16:53 --> Severity: Notice --> Undefined variable: financialyear C:\xampp\htdocs\ria\application\views\bankreceivedsupp.php 2
+ERROR - 2019-01-09 10:16:53 --> Severity: Warning --> Invalid argument supplied for foreach() C:\xampp\htdocs\ria\application\views\bankreceivedsupp.php 2
+ERROR - 2019-01-09 10:16:53 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankreceivedsupp.php 243
+ERROR - 2019-01-09 10:16:53 --> Severity: Notice --> Undefined variable: fa C:\xampp\htdocs\ria\application\views\bankreceivedsupp.php 243
+ERROR - 2019-01-09 10:16:53 --> Severity: Notice --> Undefined variable: aa C:\xampp\htdocs\ria\application\views\bankreceivedsupp.php 243
+ERROR - 2019-01-09 10:16:53 --> Severity: Notice --> Undefined variable: m C:\xampp\htdocs\ria\application\views\bankreceivedsupp.php 243
+ERROR - 2019-01-09 10:16:53 --> Severity: Notice --> Undefined variable: fdate C:\xampp\htdocs\ria\application\views\bankreceivedsupp.php 243
+ERROR - 2019-01-09 10:16:53 --> Severity: Notice --> Undefined variable: tdate C:\xampp\htdocs\ria\application\views\bankreceivedsupp.php 243
+ERROR - 2019-01-09 10:16:53 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankreceivedsupp.php 244
+ERROR - 2019-01-09 10:16:53 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankreceivedsupp.php 250
+ERROR - 2019-01-09 10:17:18 --> Severity: Notice --> Use of undefined constant ST066 - assumed 'ST066' C:\xampp\htdocs\ria\application\models\cashbook_model.php 1851
+ERROR - 2019-01-09 10:17:26 --> Severity: Notice --> Use of undefined constant ST066 - assumed 'ST066' C:\xampp\htdocs\ria\application\models\cashbook_model.php 1868
+ERROR - 2019-01-09 10:17:54 --> Severity: Notice --> Undefined variable: openingbalancesupplier C:\xampp\htdocs\ria\application\views\banksupplierledger.php 6
+ERROR - 2019-01-09 10:17:54 --> Severity: Warning --> Invalid argument supplied for foreach() C:\xampp\htdocs\ria\application\views\banksupplierledger.php 6
+ERROR - 2019-01-09 10:17:54 --> Severity: Notice --> Undefined variable: financialyear C:\xampp\htdocs\ria\application\views\banksupplierledger.php 10
+ERROR - 2019-01-09 10:17:54 --> Severity: Warning --> Invalid argument supplied for foreach() C:\xampp\htdocs\ria\application\views\banksupplierledger.php 10
+ERROR - 2019-01-09 10:17:54 --> Severity: Notice --> Undefined variable: supplierledger C:\xampp\htdocs\ria\application\views\banksupplierledger.php 102
+ERROR - 2019-01-09 10:17:54 --> Severity: Warning --> Invalid argument supplied for foreach() C:\xampp\htdocs\ria\application\views\banksupplierledger.php 102
+ERROR - 2019-01-09 10:17:54 --> Severity: Notice --> Undefined variable: suppliername C:\xampp\htdocs\ria\application\views\banksupplierledger.php 107
+ERROR - 2019-01-09 10:17:54 --> Severity: Notice --> Undefined variable: tot_amount C:\xampp\htdocs\ria\application\views\banksupplierledger.php 108
+ERROR - 2019-01-09 10:17:54 --> Severity: Notice --> Undefined variable: supplierid C:\xampp\htdocs\ria\application\views\banksupplierledger.php 112
+ERROR - 2019-01-09 10:17:54 --> Severity: Notice --> Undefined variable: suppliername C:\xampp\htdocs\ria\application\views\banksupplierledger.php 113
+ERROR - 2019-01-09 10:18:00 --> Severity: Notice --> Undefined variable: customer C:\xampp\htdocs\ria\application\controllers\cashbook.php 1886
+ERROR - 2019-01-09 10:18:00 --> Severity: Notice --> Undefined variable: financialyear C:\xampp\htdocs\ria\application\views\banksupplierledger.php 10
+ERROR - 2019-01-09 10:18:00 --> Severity: Warning --> Invalid argument supplied for foreach() C:\xampp\htdocs\ria\application\views\banksupplierledger.php 10
+ERROR - 2019-01-09 10:18:00 --> Severity: Notice --> Undefined variable: tot_amount C:\xampp\htdocs\ria\application\views\banksupplierledger.php 108
+ERROR - 2019-01-09 10:18:00 --> Severity: Notice --> Undefined property: stdClass::$bankdate C:\xampp\htdocs\ria\application\views\banksupplierledger.php 278
+ERROR - 2019-01-09 10:18:00 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\banksupplierledger.php 286
+ERROR - 2019-01-09 10:18:00 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\banksupplierledger.php 286
+ERROR - 2019-01-09 10:18:00 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\banksupplierledger.php 287
+ERROR - 2019-01-09 10:18:00 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\banksupplierledger.php 287
+ERROR - 2019-01-09 10:18:00 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\banksupplierledger.php 288
+ERROR - 2019-01-09 10:18:00 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\banksupplierledger.php 288
+ERROR - 2019-01-09 10:18:00 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\banksupplierledger.php 289
+ERROR - 2019-01-09 10:18:00 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\banksupplierledger.php 289
+ERROR - 2019-01-09 10:18:00 --> Severity: Notice --> Undefined variable: tot_amount C:\xampp\htdocs\ria\application\views\banksupplierledger.php 306
+ERROR - 2019-01-09 10:18:00 --> Severity: Notice --> Undefined variable: record C:\xampp\htdocs\ria\application\views\banksupplierledger.php 320
+ERROR - 2019-01-09 10:18:00 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\banksupplierledger.php 320
+ERROR - 2019-01-09 10:18:00 --> Severity: Notice --> Undefined property: stdClass::$bankdate C:\xampp\htdocs\ria\application\views\banksupplierledger.php 278
+ERROR - 2019-01-09 10:18:01 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\banksupplierledger.php 286
+ERROR - 2019-01-09 10:18:01 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\banksupplierledger.php 286
+ERROR - 2019-01-09 10:18:01 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\banksupplierledger.php 287
+ERROR - 2019-01-09 10:18:01 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\banksupplierledger.php 287
+ERROR - 2019-01-09 10:18:01 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\banksupplierledger.php 288
+ERROR - 2019-01-09 10:18:01 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\banksupplierledger.php 288
+ERROR - 2019-01-09 10:18:01 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\banksupplierledger.php 289
+ERROR - 2019-01-09 10:18:01 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\banksupplierledger.php 289
+ERROR - 2019-01-09 10:18:01 --> Severity: Notice --> Undefined variable: record C:\xampp\htdocs\ria\application\views\banksupplierledger.php 320
+ERROR - 2019-01-09 10:18:01 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\banksupplierledger.php 320
+ERROR - 2019-01-09 10:18:01 --> Severity: Notice --> Undefined property: stdClass::$bankdate C:\xampp\htdocs\ria\application\views\banksupplierledger.php 278
+ERROR - 2019-01-09 10:18:01 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\banksupplierledger.php 286
+ERROR - 2019-01-09 10:18:01 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\banksupplierledger.php 286
+ERROR - 2019-01-09 10:18:01 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\banksupplierledger.php 287
+ERROR - 2019-01-09 10:18:01 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\banksupplierledger.php 287
+ERROR - 2019-01-09 10:18:01 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\banksupplierledger.php 288
+ERROR - 2019-01-09 10:18:01 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\banksupplierledger.php 288
+ERROR - 2019-01-09 10:18:01 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\banksupplierledger.php 289
+ERROR - 2019-01-09 10:18:01 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\banksupplierledger.php 289
+ERROR - 2019-01-09 10:18:01 --> Severity: Notice --> Undefined variable: record C:\xampp\htdocs\ria\application\views\banksupplierledger.php 320
+ERROR - 2019-01-09 10:18:01 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\banksupplierledger.php 320
+ERROR - 2019-01-09 10:18:01 --> Severity: Notice --> Undefined property: stdClass::$bankdate C:\xampp\htdocs\ria\application\views\banksupplierledger.php 278
+ERROR - 2019-01-09 10:18:01 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\banksupplierledger.php 286
+ERROR - 2019-01-09 10:18:01 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\banksupplierledger.php 286
+ERROR - 2019-01-09 10:18:01 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\banksupplierledger.php 287
+ERROR - 2019-01-09 10:18:01 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\banksupplierledger.php 287
+ERROR - 2019-01-09 10:18:01 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\banksupplierledger.php 288
+ERROR - 2019-01-09 10:18:01 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\banksupplierledger.php 288
+ERROR - 2019-01-09 10:18:01 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\banksupplierledger.php 289
+ERROR - 2019-01-09 10:18:01 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\banksupplierledger.php 289
+ERROR - 2019-01-09 10:18:01 --> Severity: Notice --> Undefined variable: record C:\xampp\htdocs\ria\application\views\banksupplierledger.php 320
+ERROR - 2019-01-09 10:18:01 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\banksupplierledger.php 320
+ERROR - 2019-01-09 10:18:02 --> Severity: Notice --> Undefined property: stdClass::$bankdate C:\xampp\htdocs\ria\application\views\banksupplierledger.php 278
+ERROR - 2019-01-09 10:18:02 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\banksupplierledger.php 286
+ERROR - 2019-01-09 10:18:02 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\banksupplierledger.php 286
+ERROR - 2019-01-09 10:18:02 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\banksupplierledger.php 287
+ERROR - 2019-01-09 10:18:02 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\banksupplierledger.php 287
+ERROR - 2019-01-09 10:18:02 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\banksupplierledger.php 288
+ERROR - 2019-01-09 10:18:02 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\banksupplierledger.php 288
+ERROR - 2019-01-09 10:18:02 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\banksupplierledger.php 289
+ERROR - 2019-01-09 10:18:02 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\banksupplierledger.php 289
+ERROR - 2019-01-09 10:18:02 --> Severity: Notice --> Undefined variable: record C:\xampp\htdocs\ria\application\views\banksupplierledger.php 320
+ERROR - 2019-01-09 10:18:02 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\banksupplierledger.php 320
+ERROR - 2019-01-09 10:18:02 --> Severity: Notice --> Undefined property: stdClass::$bankdate C:\xampp\htdocs\ria\application\views\banksupplierledger.php 278
+ERROR - 2019-01-09 10:18:02 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\banksupplierledger.php 286
+ERROR - 2019-01-09 10:18:02 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\banksupplierledger.php 286
+ERROR - 2019-01-09 10:18:02 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\banksupplierledger.php 287
+ERROR - 2019-01-09 10:18:02 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\banksupplierledger.php 287
+ERROR - 2019-01-09 10:18:02 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\banksupplierledger.php 288
+ERROR - 2019-01-09 10:18:02 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\banksupplierledger.php 288
+ERROR - 2019-01-09 10:18:02 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\banksupplierledger.php 289
+ERROR - 2019-01-09 10:18:02 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\banksupplierledger.php 289
+ERROR - 2019-01-09 10:18:02 --> Severity: Notice --> Undefined variable: record C:\xampp\htdocs\ria\application\views\banksupplierledger.php 320
+ERROR - 2019-01-09 10:18:02 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\banksupplierledger.php 320
+ERROR - 2019-01-09 10:18:02 --> Severity: Notice --> Undefined property: stdClass::$bankdate C:\xampp\htdocs\ria\application\views\banksupplierledger.php 278
+ERROR - 2019-01-09 10:18:02 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\banksupplierledger.php 286
+ERROR - 2019-01-09 10:18:02 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\banksupplierledger.php 286
+ERROR - 2019-01-09 10:18:02 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\banksupplierledger.php 287
+ERROR - 2019-01-09 10:18:02 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\banksupplierledger.php 287
+ERROR - 2019-01-09 10:18:02 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\banksupplierledger.php 288
+ERROR - 2019-01-09 10:18:02 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\banksupplierledger.php 288
+ERROR - 2019-01-09 10:18:03 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\banksupplierledger.php 289
+ERROR - 2019-01-09 10:18:03 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\banksupplierledger.php 289
+ERROR - 2019-01-09 10:18:03 --> Severity: Notice --> Undefined variable: record C:\xampp\htdocs\ria\application\views\banksupplierledger.php 320
+ERROR - 2019-01-09 10:18:03 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\banksupplierledger.php 320
+ERROR - 2019-01-09 10:18:03 --> Severity: Notice --> Undefined property: stdClass::$bankdate C:\xampp\htdocs\ria\application\views\banksupplierledger.php 278
+ERROR - 2019-01-09 10:18:03 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\banksupplierledger.php 286
+ERROR - 2019-01-09 10:18:03 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\banksupplierledger.php 286
+ERROR - 2019-01-09 10:18:03 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\banksupplierledger.php 287
+ERROR - 2019-01-09 10:18:03 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\banksupplierledger.php 287
+ERROR - 2019-01-09 10:18:03 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\banksupplierledger.php 288
+ERROR - 2019-01-09 10:18:03 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\banksupplierledger.php 288
+ERROR - 2019-01-09 10:18:03 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\banksupplierledger.php 289
+ERROR - 2019-01-09 10:18:03 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\banksupplierledger.php 289
+ERROR - 2019-01-09 10:18:03 --> Severity: Notice --> Undefined variable: record C:\xampp\htdocs\ria\application\views\banksupplierledger.php 320
+ERROR - 2019-01-09 10:18:03 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\banksupplierledger.php 320
+ERROR - 2019-01-09 10:18:03 --> Severity: Notice --> Undefined property: stdClass::$bankdate C:\xampp\htdocs\ria\application\views\banksupplierledger.php 278
+ERROR - 2019-01-09 10:18:03 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\banksupplierledger.php 286
+ERROR - 2019-01-09 10:18:03 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\banksupplierledger.php 286
+ERROR - 2019-01-09 10:18:03 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\banksupplierledger.php 287
+ERROR - 2019-01-09 10:18:03 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\banksupplierledger.php 287
+ERROR - 2019-01-09 10:18:03 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\banksupplierledger.php 288
+ERROR - 2019-01-09 10:18:03 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\banksupplierledger.php 288
+ERROR - 2019-01-09 10:18:03 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\banksupplierledger.php 289
+ERROR - 2019-01-09 10:18:03 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\banksupplierledger.php 289
+ERROR - 2019-01-09 10:18:03 --> Severity: Notice --> Undefined variable: record C:\xampp\htdocs\ria\application\views\banksupplierledger.php 320
+ERROR - 2019-01-09 10:18:03 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\banksupplierledger.php 320
+ERROR - 2019-01-09 10:18:03 --> Severity: Notice --> Undefined property: stdClass::$bankdate C:\xampp\htdocs\ria\application\views\banksupplierledger.php 278
+ERROR - 2019-01-09 10:18:03 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\banksupplierledger.php 286
+ERROR - 2019-01-09 10:18:03 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\banksupplierledger.php 286
+ERROR - 2019-01-09 10:18:03 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\banksupplierledger.php 287
+ERROR - 2019-01-09 10:18:04 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\banksupplierledger.php 287
+ERROR - 2019-01-09 10:18:04 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\banksupplierledger.php 288
+ERROR - 2019-01-09 10:18:04 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\banksupplierledger.php 288
+ERROR - 2019-01-09 10:18:04 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\banksupplierledger.php 289
+ERROR - 2019-01-09 10:18:04 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\banksupplierledger.php 289
+ERROR - 2019-01-09 10:18:04 --> Severity: Notice --> Undefined variable: record C:\xampp\htdocs\ria\application\views\banksupplierledger.php 320
+ERROR - 2019-01-09 10:18:04 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\banksupplierledger.php 320
+ERROR - 2019-01-09 10:18:04 --> Severity: Notice --> Undefined property: stdClass::$bankdate C:\xampp\htdocs\ria\application\views\banksupplierledger.php 278
+ERROR - 2019-01-09 10:18:04 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\banksupplierledger.php 286
+ERROR - 2019-01-09 10:18:04 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\banksupplierledger.php 286
+ERROR - 2019-01-09 10:18:04 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\banksupplierledger.php 287
+ERROR - 2019-01-09 10:18:04 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\banksupplierledger.php 287
+ERROR - 2019-01-09 10:18:04 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\banksupplierledger.php 288
+ERROR - 2019-01-09 10:18:04 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\banksupplierledger.php 288
+ERROR - 2019-01-09 10:18:04 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\banksupplierledger.php 289
+ERROR - 2019-01-09 10:18:04 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\banksupplierledger.php 289
+ERROR - 2019-01-09 10:18:04 --> Severity: Notice --> Undefined variable: record C:\xampp\htdocs\ria\application\views\banksupplierledger.php 320
+ERROR - 2019-01-09 10:18:04 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\banksupplierledger.php 320
+ERROR - 2019-01-09 10:18:04 --> Severity: Notice --> Undefined property: stdClass::$bankdate C:\xampp\htdocs\ria\application\views\banksupplierledger.php 278
+ERROR - 2019-01-09 10:18:04 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\banksupplierledger.php 286
+ERROR - 2019-01-09 10:18:04 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\banksupplierledger.php 286
+ERROR - 2019-01-09 10:18:04 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\banksupplierledger.php 287
+ERROR - 2019-01-09 10:18:04 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\banksupplierledger.php 287
+ERROR - 2019-01-09 10:18:04 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\banksupplierledger.php 288
+ERROR - 2019-01-09 10:18:04 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\banksupplierledger.php 288
+ERROR - 2019-01-09 10:18:04 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\banksupplierledger.php 289
+ERROR - 2019-01-09 10:18:04 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\banksupplierledger.php 289
+ERROR - 2019-01-09 10:18:04 --> Severity: Notice --> Undefined variable: record C:\xampp\htdocs\ria\application\views\banksupplierledger.php 320
+ERROR - 2019-01-09 10:18:04 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\banksupplierledger.php 320
+ERROR - 2019-01-09 10:18:04 --> Severity: Notice --> Undefined property: stdClass::$bankdate C:\xampp\htdocs\ria\application\views\banksupplierledger.php 278
+ERROR - 2019-01-09 10:18:05 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\banksupplierledger.php 286
+ERROR - 2019-01-09 10:18:05 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\banksupplierledger.php 286
+ERROR - 2019-01-09 10:18:05 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\banksupplierledger.php 287
+ERROR - 2019-01-09 10:18:05 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\banksupplierledger.php 287
+ERROR - 2019-01-09 10:18:05 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\banksupplierledger.php 288
+ERROR - 2019-01-09 10:18:05 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\banksupplierledger.php 288
+ERROR - 2019-01-09 10:18:05 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\banksupplierledger.php 289
+ERROR - 2019-01-09 10:18:05 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\banksupplierledger.php 289
+ERROR - 2019-01-09 10:18:05 --> Severity: Notice --> Undefined variable: record C:\xampp\htdocs\ria\application\views\banksupplierledger.php 320
+ERROR - 2019-01-09 10:18:05 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\banksupplierledger.php 320
+ERROR - 2019-01-09 10:18:05 --> Severity: Notice --> Undefined property: stdClass::$bankdate C:\xampp\htdocs\ria\application\views\banksupplierledger.php 278
+ERROR - 2019-01-09 10:18:05 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\banksupplierledger.php 286
+ERROR - 2019-01-09 10:18:05 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\banksupplierledger.php 286
+ERROR - 2019-01-09 10:18:05 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\banksupplierledger.php 287
+ERROR - 2019-01-09 10:18:05 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\banksupplierledger.php 287
+ERROR - 2019-01-09 10:18:05 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\banksupplierledger.php 288
+ERROR - 2019-01-09 10:18:05 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\banksupplierledger.php 288
+ERROR - 2019-01-09 10:18:05 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\banksupplierledger.php 289
+ERROR - 2019-01-09 10:18:05 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\banksupplierledger.php 289
+ERROR - 2019-01-09 10:18:05 --> Severity: Notice --> Undefined variable: record C:\xampp\htdocs\ria\application\views\banksupplierledger.php 320
+ERROR - 2019-01-09 10:18:05 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\banksupplierledger.php 320
+ERROR - 2019-01-09 10:18:05 --> Severity: Notice --> Undefined property: stdClass::$bankdate C:\xampp\htdocs\ria\application\views\banksupplierledger.php 278
+ERROR - 2019-01-09 10:18:05 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\banksupplierledger.php 286
+ERROR - 2019-01-09 10:18:05 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\banksupplierledger.php 286
+ERROR - 2019-01-09 10:18:05 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\banksupplierledger.php 287
+ERROR - 2019-01-09 10:18:05 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\banksupplierledger.php 287
+ERROR - 2019-01-09 10:18:05 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\banksupplierledger.php 288
+ERROR - 2019-01-09 10:18:05 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\banksupplierledger.php 288
+ERROR - 2019-01-09 10:18:05 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\banksupplierledger.php 289
+ERROR - 2019-01-09 10:18:06 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\banksupplierledger.php 289
+ERROR - 2019-01-09 10:18:06 --> Severity: Notice --> Undefined variable: record C:\xampp\htdocs\ria\application\views\banksupplierledger.php 320
+ERROR - 2019-01-09 10:18:06 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\banksupplierledger.php 320
+ERROR - 2019-01-09 10:18:06 --> Severity: Notice --> Undefined property: stdClass::$bankdate C:\xampp\htdocs\ria\application\views\banksupplierledger.php 278
+ERROR - 2019-01-09 10:18:06 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\banksupplierledger.php 286
+ERROR - 2019-01-09 10:18:06 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\banksupplierledger.php 286
+ERROR - 2019-01-09 10:18:06 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\banksupplierledger.php 287
+ERROR - 2019-01-09 10:18:06 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\banksupplierledger.php 287
+ERROR - 2019-01-09 10:18:06 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\banksupplierledger.php 288
+ERROR - 2019-01-09 10:18:06 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\banksupplierledger.php 288
+ERROR - 2019-01-09 10:18:06 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\banksupplierledger.php 289
+ERROR - 2019-01-09 10:18:06 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\banksupplierledger.php 289
+ERROR - 2019-01-09 10:18:06 --> Severity: Notice --> Undefined variable: record C:\xampp\htdocs\ria\application\views\banksupplierledger.php 320
+ERROR - 2019-01-09 10:18:06 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\banksupplierledger.php 320
+ERROR - 2019-01-09 10:18:06 --> Severity: Notice --> Undefined property: stdClass::$bankdate C:\xampp\htdocs\ria\application\views\banksupplierledger.php 278
+ERROR - 2019-01-09 10:18:06 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\banksupplierledger.php 286
+ERROR - 2019-01-09 10:18:06 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\banksupplierledger.php 286
+ERROR - 2019-01-09 10:18:06 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\banksupplierledger.php 287
+ERROR - 2019-01-09 10:18:06 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\banksupplierledger.php 287
+ERROR - 2019-01-09 10:18:06 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\banksupplierledger.php 288
+ERROR - 2019-01-09 10:18:06 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\banksupplierledger.php 288
+ERROR - 2019-01-09 10:18:06 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\banksupplierledger.php 289
+ERROR - 2019-01-09 10:18:06 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\banksupplierledger.php 289
+ERROR - 2019-01-09 10:18:06 --> Severity: Notice --> Undefined variable: record C:\xampp\htdocs\ria\application\views\banksupplierledger.php 320
+ERROR - 2019-01-09 10:18:06 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\banksupplierledger.php 320
+ERROR - 2019-01-09 10:18:06 --> Severity: Notice --> Undefined property: stdClass::$bankdate C:\xampp\htdocs\ria\application\views\banksupplierledger.php 278
+ERROR - 2019-01-09 10:18:06 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\banksupplierledger.php 286
+ERROR - 2019-01-09 10:18:06 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\banksupplierledger.php 286
+ERROR - 2019-01-09 10:18:06 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\banksupplierledger.php 287
+ERROR - 2019-01-09 10:18:07 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\banksupplierledger.php 287
+ERROR - 2019-01-09 10:18:07 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\banksupplierledger.php 288
+ERROR - 2019-01-09 10:18:07 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\banksupplierledger.php 288
+ERROR - 2019-01-09 10:18:07 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\banksupplierledger.php 289
+ERROR - 2019-01-09 10:18:07 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\banksupplierledger.php 289
+ERROR - 2019-01-09 10:18:07 --> Severity: Notice --> Undefined variable: record C:\xampp\htdocs\ria\application\views\banksupplierledger.php 320
+ERROR - 2019-01-09 10:18:07 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\banksupplierledger.php 320
+ERROR - 2019-01-09 10:18:07 --> Severity: Notice --> Undefined property: stdClass::$bankdate C:\xampp\htdocs\ria\application\views\banksupplierledger.php 278
+ERROR - 2019-01-09 10:18:07 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\banksupplierledger.php 286
+ERROR - 2019-01-09 10:18:07 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\banksupplierledger.php 286
+ERROR - 2019-01-09 10:18:07 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\banksupplierledger.php 287
+ERROR - 2019-01-09 10:18:07 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\banksupplierledger.php 287
+ERROR - 2019-01-09 10:18:07 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\banksupplierledger.php 288
+ERROR - 2019-01-09 10:18:07 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\banksupplierledger.php 288
+ERROR - 2019-01-09 10:18:07 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\banksupplierledger.php 289
+ERROR - 2019-01-09 10:18:07 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\banksupplierledger.php 289
+ERROR - 2019-01-09 10:18:07 --> Severity: Notice --> Undefined variable: record C:\xampp\htdocs\ria\application\views\banksupplierledger.php 320
+ERROR - 2019-01-09 10:18:07 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\banksupplierledger.php 320
+ERROR - 2019-01-09 10:18:07 --> Severity: Notice --> Undefined property: stdClass::$bankdate C:\xampp\htdocs\ria\application\views\banksupplierledger.php 278
+ERROR - 2019-01-09 10:18:07 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\banksupplierledger.php 286
+ERROR - 2019-01-09 10:18:07 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\banksupplierledger.php 286
+ERROR - 2019-01-09 10:18:07 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\banksupplierledger.php 287
+ERROR - 2019-01-09 10:18:07 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\banksupplierledger.php 287
+ERROR - 2019-01-09 10:18:07 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\banksupplierledger.php 288
+ERROR - 2019-01-09 10:18:07 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\banksupplierledger.php 288
+ERROR - 2019-01-09 10:18:07 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\banksupplierledger.php 289
+ERROR - 2019-01-09 10:18:07 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\banksupplierledger.php 289
+ERROR - 2019-01-09 10:18:08 --> Severity: Notice --> Undefined variable: record C:\xampp\htdocs\ria\application\views\banksupplierledger.php 320
+ERROR - 2019-01-09 10:18:08 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\banksupplierledger.php 320
+ERROR - 2019-01-09 10:18:08 --> Severity: Notice --> Undefined property: stdClass::$bankdate C:\xampp\htdocs\ria\application\views\banksupplierledger.php 278
+ERROR - 2019-01-09 10:18:08 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\banksupplierledger.php 286
+ERROR - 2019-01-09 10:18:08 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\banksupplierledger.php 286
+ERROR - 2019-01-09 10:18:08 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\banksupplierledger.php 287
+ERROR - 2019-01-09 10:18:08 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\banksupplierledger.php 287
+ERROR - 2019-01-09 10:18:08 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\banksupplierledger.php 288
+ERROR - 2019-01-09 10:18:08 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\banksupplierledger.php 288
+ERROR - 2019-01-09 10:18:08 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\banksupplierledger.php 289
+ERROR - 2019-01-09 10:18:08 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\banksupplierledger.php 289
+ERROR - 2019-01-09 10:18:08 --> Severity: Notice --> Undefined variable: record C:\xampp\htdocs\ria\application\views\banksupplierledger.php 320
+ERROR - 2019-01-09 10:18:08 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\banksupplierledger.php 320
+ERROR - 2019-01-09 10:18:08 --> Severity: Notice --> Undefined property: stdClass::$bankdate C:\xampp\htdocs\ria\application\views\banksupplierledger.php 278
+ERROR - 2019-01-09 10:18:08 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\banksupplierledger.php 286
+ERROR - 2019-01-09 10:18:08 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\banksupplierledger.php 286
+ERROR - 2019-01-09 10:18:08 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\banksupplierledger.php 287
+ERROR - 2019-01-09 10:18:08 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\banksupplierledger.php 287
+ERROR - 2019-01-09 10:18:08 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\banksupplierledger.php 288
+ERROR - 2019-01-09 10:18:08 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\banksupplierledger.php 288
+ERROR - 2019-01-09 10:18:08 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\banksupplierledger.php 289
+ERROR - 2019-01-09 10:18:08 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\banksupplierledger.php 289
+ERROR - 2019-01-09 10:18:08 --> Severity: Notice --> Undefined variable: record C:\xampp\htdocs\ria\application\views\banksupplierledger.php 320
+ERROR - 2019-01-09 10:18:08 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\banksupplierledger.php 320
+ERROR - 2019-01-09 10:18:08 --> Severity: Notice --> Undefined property: stdClass::$bankdate C:\xampp\htdocs\ria\application\views\banksupplierledger.php 278
+ERROR - 2019-01-09 10:18:08 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\banksupplierledger.php 286
+ERROR - 2019-01-09 10:18:08 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\banksupplierledger.php 286
+ERROR - 2019-01-09 10:18:08 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\banksupplierledger.php 287
+ERROR - 2019-01-09 10:18:09 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\banksupplierledger.php 287
+ERROR - 2019-01-09 10:18:09 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\banksupplierledger.php 288
+ERROR - 2019-01-09 10:18:09 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\banksupplierledger.php 288
+ERROR - 2019-01-09 10:18:09 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\banksupplierledger.php 289
+ERROR - 2019-01-09 10:18:09 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\banksupplierledger.php 289
+ERROR - 2019-01-09 10:18:09 --> Severity: Notice --> Undefined variable: record C:\xampp\htdocs\ria\application\views\banksupplierledger.php 320
+ERROR - 2019-01-09 10:18:09 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\banksupplierledger.php 320
+ERROR - 2019-01-09 10:18:09 --> Severity: Notice --> Undefined property: stdClass::$bankdate C:\xampp\htdocs\ria\application\views\banksupplierledger.php 278
+ERROR - 2019-01-09 10:18:09 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\banksupplierledger.php 286
+ERROR - 2019-01-09 10:18:09 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\banksupplierledger.php 286
+ERROR - 2019-01-09 10:18:09 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\banksupplierledger.php 287
+ERROR - 2019-01-09 10:18:09 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\banksupplierledger.php 287
+ERROR - 2019-01-09 10:18:09 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\banksupplierledger.php 288
+ERROR - 2019-01-09 10:18:09 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\banksupplierledger.php 288
+ERROR - 2019-01-09 10:18:09 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\banksupplierledger.php 289
+ERROR - 2019-01-09 10:18:09 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\banksupplierledger.php 289
+ERROR - 2019-01-09 10:18:09 --> Severity: Notice --> Undefined variable: record C:\xampp\htdocs\ria\application\views\banksupplierledger.php 320
+ERROR - 2019-01-09 10:18:09 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\banksupplierledger.php 320
+ERROR - 2019-01-09 10:18:09 --> Severity: Notice --> Undefined property: stdClass::$bankdate C:\xampp\htdocs\ria\application\views\banksupplierledger.php 278
+ERROR - 2019-01-09 10:18:09 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\banksupplierledger.php 286
+ERROR - 2019-01-09 10:18:09 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\banksupplierledger.php 286
+ERROR - 2019-01-09 10:18:09 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\banksupplierledger.php 287
+ERROR - 2019-01-09 10:18:09 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\banksupplierledger.php 287
+ERROR - 2019-01-09 10:18:09 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\banksupplierledger.php 288
+ERROR - 2019-01-09 10:18:09 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\banksupplierledger.php 288
+ERROR - 2019-01-09 10:18:09 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\banksupplierledger.php 289
+ERROR - 2019-01-09 10:18:09 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\banksupplierledger.php 289
+ERROR - 2019-01-09 10:18:09 --> Severity: Notice --> Undefined variable: record C:\xampp\htdocs\ria\application\views\banksupplierledger.php 320
+ERROR - 2019-01-09 10:18:09 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\banksupplierledger.php 320
+ERROR - 2019-01-09 10:18:10 --> Severity: Notice --> Undefined property: stdClass::$bankdate C:\xampp\htdocs\ria\application\views\banksupplierledger.php 278
+ERROR - 2019-01-09 10:18:10 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\banksupplierledger.php 286
+ERROR - 2019-01-09 10:18:10 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\banksupplierledger.php 286
+ERROR - 2019-01-09 10:18:10 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\banksupplierledger.php 287
+ERROR - 2019-01-09 10:18:10 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\banksupplierledger.php 287
+ERROR - 2019-01-09 10:18:10 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\banksupplierledger.php 288
+ERROR - 2019-01-09 10:18:10 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\banksupplierledger.php 288
+ERROR - 2019-01-09 10:18:10 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\banksupplierledger.php 289
+ERROR - 2019-01-09 10:18:10 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\banksupplierledger.php 289
+ERROR - 2019-01-09 10:18:10 --> Severity: Notice --> Undefined variable: record C:\xampp\htdocs\ria\application\views\banksupplierledger.php 320
+ERROR - 2019-01-09 10:18:10 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\banksupplierledger.php 320
+ERROR - 2019-01-09 10:18:10 --> Severity: Notice --> Undefined property: stdClass::$bankdate C:\xampp\htdocs\ria\application\views\banksupplierledger.php 278
+ERROR - 2019-01-09 10:18:10 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\banksupplierledger.php 286
+ERROR - 2019-01-09 10:18:10 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\banksupplierledger.php 286
+ERROR - 2019-01-09 10:18:10 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\banksupplierledger.php 287
+ERROR - 2019-01-09 10:18:10 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\banksupplierledger.php 287
+ERROR - 2019-01-09 10:18:10 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\banksupplierledger.php 288
+ERROR - 2019-01-09 10:18:10 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\banksupplierledger.php 288
+ERROR - 2019-01-09 10:18:10 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\banksupplierledger.php 289
+ERROR - 2019-01-09 10:18:10 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\banksupplierledger.php 289
+ERROR - 2019-01-09 10:18:10 --> Severity: Notice --> Undefined variable: record C:\xampp\htdocs\ria\application\views\banksupplierledger.php 320
+ERROR - 2019-01-09 10:18:10 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\banksupplierledger.php 320
+ERROR - 2019-01-09 10:18:10 --> Severity: Notice --> Undefined property: stdClass::$bankdate C:\xampp\htdocs\ria\application\views\banksupplierledger.php 278
+ERROR - 2019-01-09 10:18:10 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\banksupplierledger.php 286
+ERROR - 2019-01-09 10:18:10 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\banksupplierledger.php 286
+ERROR - 2019-01-09 10:18:10 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\banksupplierledger.php 287
+ERROR - 2019-01-09 10:18:10 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\banksupplierledger.php 287
+ERROR - 2019-01-09 10:18:11 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\banksupplierledger.php 288
+ERROR - 2019-01-09 10:18:11 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\banksupplierledger.php 288
+ERROR - 2019-01-09 10:18:11 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\banksupplierledger.php 289
+ERROR - 2019-01-09 10:18:11 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\banksupplierledger.php 289
+ERROR - 2019-01-09 10:18:11 --> Severity: Notice --> Undefined variable: record C:\xampp\htdocs\ria\application\views\banksupplierledger.php 320
+ERROR - 2019-01-09 10:18:11 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\banksupplierledger.php 320
+ERROR - 2019-01-09 10:18:11 --> Severity: Notice --> Undefined property: stdClass::$bankdate C:\xampp\htdocs\ria\application\views\banksupplierledger.php 278
+ERROR - 2019-01-09 10:18:11 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\banksupplierledger.php 286
+ERROR - 2019-01-09 10:18:11 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\banksupplierledger.php 286
+ERROR - 2019-01-09 10:18:11 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\banksupplierledger.php 287
+ERROR - 2019-01-09 10:18:11 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\banksupplierledger.php 287
+ERROR - 2019-01-09 10:18:11 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\banksupplierledger.php 288
+ERROR - 2019-01-09 10:18:11 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\banksupplierledger.php 288
+ERROR - 2019-01-09 10:18:11 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\banksupplierledger.php 289
+ERROR - 2019-01-09 10:18:11 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\banksupplierledger.php 289
+ERROR - 2019-01-09 10:18:11 --> Severity: Notice --> Undefined variable: record C:\xampp\htdocs\ria\application\views\banksupplierledger.php 320
+ERROR - 2019-01-09 10:18:12 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\banksupplierledger.php 320
+ERROR - 2019-01-09 10:18:12 --> Severity: Notice --> Undefined property: stdClass::$bankdate C:\xampp\htdocs\ria\application\views\banksupplierledger.php 278
+ERROR - 2019-01-09 10:18:12 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\banksupplierledger.php 286
+ERROR - 2019-01-09 10:18:12 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\banksupplierledger.php 286
+ERROR - 2019-01-09 10:18:12 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\banksupplierledger.php 287
+ERROR - 2019-01-09 10:18:12 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\banksupplierledger.php 287
+ERROR - 2019-01-09 10:18:12 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\banksupplierledger.php 288
+ERROR - 2019-01-09 10:18:12 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\banksupplierledger.php 288
+ERROR - 2019-01-09 10:18:12 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\banksupplierledger.php 289
+ERROR - 2019-01-09 10:18:12 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\banksupplierledger.php 289
+ERROR - 2019-01-09 10:18:12 --> Severity: Notice --> Undefined variable: record C:\xampp\htdocs\ria\application\views\banksupplierledger.php 320
+ERROR - 2019-01-09 10:18:12 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\banksupplierledger.php 320
+ERROR - 2019-01-09 10:18:12 --> Severity: Notice --> Undefined property: stdClass::$bankdate C:\xampp\htdocs\ria\application\views\banksupplierledger.php 278
+ERROR - 2019-01-09 10:18:12 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\banksupplierledger.php 286
+ERROR - 2019-01-09 10:18:12 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\banksupplierledger.php 286
+ERROR - 2019-01-09 10:18:12 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\banksupplierledger.php 287
+ERROR - 2019-01-09 10:18:12 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\banksupplierledger.php 287
+ERROR - 2019-01-09 10:18:12 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\banksupplierledger.php 288
+ERROR - 2019-01-09 10:18:12 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\banksupplierledger.php 288
+ERROR - 2019-01-09 10:18:12 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\banksupplierledger.php 289
+ERROR - 2019-01-09 10:18:12 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\banksupplierledger.php 289
+ERROR - 2019-01-09 10:18:12 --> Severity: Notice --> Undefined variable: record C:\xampp\htdocs\ria\application\views\banksupplierledger.php 320
+ERROR - 2019-01-09 10:18:12 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\banksupplierledger.php 320
+ERROR - 2019-01-09 10:27:56 --> Severity: Notice --> Undefined variable: creditdebit C:\xampp\htdocs\ria\application\views\bankingfile.php 132
+ERROR - 2019-01-09 10:27:56 --> Severity: Notice --> Undefined variable: creditdebit C:\xampp\htdocs\ria\application\views\bankingfile.php 132
+ERROR - 2019-01-09 10:28:13 --> Severity: Notice --> Undefined variable: fdate C:\xampp\htdocs\ria\application\controllers\cashbook.php 1172
+ERROR - 2019-01-09 10:28:13 --> Severity: Notice --> Undefined variable: tdate C:\xampp\htdocs\ria\application\controllers\cashbook.php 1172
+ERROR - 2019-01-09 10:28:13 --> Severity: Notice --> Undefined variable: fa C:\xampp\htdocs\ria\application\controllers\cashbook.php 1172
+ERROR - 2019-01-09 10:28:13 --> Severity: Notice --> Undefined variable: aa C:\xampp\htdocs\ria\application\controllers\cashbook.php 1172
+ERROR - 2019-01-09 10:28:14 --> Severity: Notice --> Undefined variable: financialyear C:\xampp\htdocs\ria\application\views\bankstatement.php 2
+ERROR - 2019-01-09 10:28:14 --> Severity: Warning --> Invalid argument supplied for foreach() C:\xampp\htdocs\ria\application\views\bankstatement.php 2
+ERROR - 2019-01-09 10:28:14 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 85
+ERROR - 2019-01-09 10:28:14 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 85
+ERROR - 2019-01-09 10:28:14 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 86
+ERROR - 2019-01-09 10:28:14 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 86
+ERROR - 2019-01-09 10:28:14 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 87
+ERROR - 2019-01-09 10:28:14 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 87
+ERROR - 2019-01-09 10:28:14 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 137
+ERROR - 2019-01-09 10:28:15 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 137
+ERROR - 2019-01-09 10:28:15 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 138
+ERROR - 2019-01-09 10:28:15 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 138
+ERROR - 2019-01-09 10:28:15 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 139
+ERROR - 2019-01-09 10:28:15 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 139
+ERROR - 2019-01-09 10:29:07 --> Severity: Notice --> Undefined variable: financialyear C:\xampp\htdocs\ria\application\views\banksettlement.php 11
+ERROR - 2019-01-09 10:29:08 --> Severity: Warning --> Invalid argument supplied for foreach() C:\xampp\htdocs\ria\application\views\banksettlement.php 11
+ERROR - 2019-01-09 10:29:08 --> Severity: Notice --> Undefined variable: t C:\xampp\htdocs\ria\application\views\banksettlement.php 289
+ERROR - 2019-01-09 10:29:08 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\banksettlement.php 289
+ERROR - 2019-01-09 10:29:08 --> Severity: Notice --> Undefined variable: t C:\xampp\htdocs\ria\application\views\banksettlement.php 289
+ERROR - 2019-01-09 10:29:08 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\banksettlement.php 289
+ERROR - 2019-01-09 10:29:08 --> Severity: Notice --> Undefined variable: rel C:\xampp\htdocs\ria\application\views\banksettlement.php 290
+ERROR - 2019-01-09 10:29:08 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\banksettlement.php 290
+ERROR - 2019-01-09 10:29:08 --> Severity: Notice --> Undefined variable: record C:\xampp\htdocs\ria\application\views\banksettlement.php 345
+ERROR - 2019-01-09 10:29:08 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\banksettlement.php 345
+ERROR - 2019-01-09 10:29:08 --> Severity: Notice --> Undefined variable: t C:\xampp\htdocs\ria\application\views\banksettlement.php 289
+ERROR - 2019-01-09 10:29:08 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\banksettlement.php 289
+ERROR - 2019-01-09 10:29:08 --> Severity: Notice --> Undefined variable: t C:\xampp\htdocs\ria\application\views\banksettlement.php 289
+ERROR - 2019-01-09 10:29:08 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\banksettlement.php 289
+ERROR - 2019-01-09 10:29:08 --> Severity: Notice --> Undefined variable: rel C:\xampp\htdocs\ria\application\views\banksettlement.php 290
+ERROR - 2019-01-09 10:29:08 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\banksettlement.php 290
+ERROR - 2019-01-09 10:29:08 --> Severity: Notice --> Undefined variable: record C:\xampp\htdocs\ria\application\views\banksettlement.php 345
+ERROR - 2019-01-09 10:29:08 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\banksettlement.php 345
+ERROR - 2019-01-09 10:29:29 --> Severity: Notice --> Undefined variable: financialyear C:\xampp\htdocs\ria\application\views\bankdebit.php 2
+ERROR - 2019-01-09 10:29:29 --> Severity: Warning --> Invalid argument supplied for foreach() C:\xampp\htdocs\ria\application\views\bankdebit.php 2
+ERROR - 2019-01-09 10:29:34 --> Severity: Notice --> Undefined variable: financialyear C:\xampp\htdocs\ria\application\views\bankdebit.php 2
+ERROR - 2019-01-09 10:29:34 --> Severity: Warning --> Invalid argument supplied for foreach() C:\xampp\htdocs\ria\application\views\bankdebit.php 2
+ERROR - 2019-01-09 10:29:34 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankdebit.php 177
+ERROR - 2019-01-09 10:29:34 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\ria\application\views\bankdebit.php 179
+ERROR - 2019-01-09 10:29:34 --> Severity: Notice --> Undefined property: stdClass::$IGRItemNo C:\xampp\htdocs\ria\application\views\bankdebit.php 193
+ERROR - 2019-01-09 10:29:34 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankdebit.php 177
+ERROR - 2019-01-09 10:29:34 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\ria\application\views\bankdebit.php 179
+ERROR - 2019-01-09 10:29:34 --> Severity: Notice --> Undefined property: stdClass::$IGRItemNo C:\xampp\htdocs\ria\application\views\bankdebit.php 193
+ERROR - 2019-01-09 10:29:34 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankdebit.php 177
+ERROR - 2019-01-09 10:29:34 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\ria\application\views\bankdebit.php 179
+ERROR - 2019-01-09 10:29:34 --> Severity: Notice --> Undefined property: stdClass::$IGRItemNo C:\xampp\htdocs\ria\application\views\bankdebit.php 193
+ERROR - 2019-01-09 10:29:34 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankdebit.php 177
+ERROR - 2019-01-09 10:29:34 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\ria\application\views\bankdebit.php 179
+ERROR - 2019-01-09 10:29:34 --> Severity: Notice --> Undefined property: stdClass::$IGRItemNo C:\xampp\htdocs\ria\application\views\bankdebit.php 193
+ERROR - 2019-01-09 10:29:34 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankdebit.php 177
+ERROR - 2019-01-09 10:29:35 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\ria\application\views\bankdebit.php 179
+ERROR - 2019-01-09 10:29:35 --> Severity: Notice --> Undefined property: stdClass::$IGRItemNo C:\xampp\htdocs\ria\application\views\bankdebit.php 193
+ERROR - 2019-01-09 10:29:35 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankdebit.php 177
+ERROR - 2019-01-09 10:29:35 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\ria\application\views\bankdebit.php 179
+ERROR - 2019-01-09 10:29:35 --> Severity: Notice --> Undefined property: stdClass::$IGRItemNo C:\xampp\htdocs\ria\application\views\bankdebit.php 193
+ERROR - 2019-01-09 10:29:35 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankdebit.php 177
+ERROR - 2019-01-09 10:29:35 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\ria\application\views\bankdebit.php 179
+ERROR - 2019-01-09 10:29:35 --> Severity: Notice --> Undefined property: stdClass::$IGRItemNo C:\xampp\htdocs\ria\application\views\bankdebit.php 193
+ERROR - 2019-01-09 10:29:35 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankdebit.php 177
+ERROR - 2019-01-09 10:29:35 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\ria\application\views\bankdebit.php 179
+ERROR - 2019-01-09 10:29:35 --> Severity: Notice --> Undefined property: stdClass::$IGRItemNo C:\xampp\htdocs\ria\application\views\bankdebit.php 193
+ERROR - 2019-01-09 10:29:35 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankdebit.php 177
+ERROR - 2019-01-09 10:29:35 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\ria\application\views\bankdebit.php 179
+ERROR - 2019-01-09 10:29:35 --> Severity: Notice --> Undefined property: stdClass::$IGRItemNo C:\xampp\htdocs\ria\application\views\bankdebit.php 193
+ERROR - 2019-01-09 10:29:35 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankdebit.php 177
+ERROR - 2019-01-09 10:29:35 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\ria\application\views\bankdebit.php 179
+ERROR - 2019-01-09 10:29:35 --> Severity: Notice --> Undefined property: stdClass::$IGRItemNo C:\xampp\htdocs\ria\application\views\bankdebit.php 193
+ERROR - 2019-01-09 10:29:35 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankdebit.php 177
+ERROR - 2019-01-09 10:29:35 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\ria\application\views\bankdebit.php 179
+ERROR - 2019-01-09 10:29:35 --> Severity: Notice --> Undefined property: stdClass::$IGRItemNo C:\xampp\htdocs\ria\application\views\bankdebit.php 193
+ERROR - 2019-01-09 10:29:35 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankdebit.php 177
+ERROR - 2019-01-09 10:29:35 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\ria\application\views\bankdebit.php 179
+ERROR - 2019-01-09 10:29:35 --> Severity: Notice --> Undefined property: stdClass::$IGRItemNo C:\xampp\htdocs\ria\application\views\bankdebit.php 193
+ERROR - 2019-01-09 10:29:35 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankdebit.php 177
+ERROR - 2019-01-09 10:29:35 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\ria\application\views\bankdebit.php 179
+ERROR - 2019-01-09 10:29:35 --> Severity: Notice --> Undefined property: stdClass::$IGRItemNo C:\xampp\htdocs\ria\application\views\bankdebit.php 193
+ERROR - 2019-01-09 10:29:35 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankdebit.php 177
+ERROR - 2019-01-09 10:29:35 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\ria\application\views\bankdebit.php 179
+ERROR - 2019-01-09 10:29:36 --> Severity: Notice --> Undefined property: stdClass::$IGRItemNo C:\xampp\htdocs\ria\application\views\bankdebit.php 193
+ERROR - 2019-01-09 10:29:36 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankdebit.php 177
+ERROR - 2019-01-09 10:29:36 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\ria\application\views\bankdebit.php 179
+ERROR - 2019-01-09 10:29:36 --> Severity: Notice --> Undefined property: stdClass::$IGRItemNo C:\xampp\htdocs\ria\application\views\bankdebit.php 193
+ERROR - 2019-01-09 10:30:11 --> Severity: Notice --> Undefined variable: balancetocleared C:\xampp\htdocs\ria\application\controllers\cashbook.php 1375
+ERROR - 2019-01-09 10:30:11 --> Severity: Notice --> Undefined variable: balancetocleared C:\xampp\htdocs\ria\application\controllers\cashbook.php 1375
+ERROR - 2019-01-09 10:30:11 --> Severity: Notice --> Undefined variable: clearedblnce C:\xampp\htdocs\ria\application\controllers\cashbook.php 1384
+ERROR - 2019-01-09 10:30:11 --> Severity: Notice --> Undefined variable: balancetocleared C:\xampp\htdocs\ria\application\controllers\cashbook.php 1384
+ERROR - 2019-01-09 10:30:11 --> Severity: Notice --> Undefined variable: clearedblnce C:\xampp\htdocs\ria\application\controllers\cashbook.php 1384
+ERROR - 2019-01-09 10:30:11 --> Severity: Notice --> Undefined variable: data C:\xampp\htdocs\ria\application\controllers\cashbook.php 1456
+ERROR - 2019-01-09 10:30:11 --> Severity: Notice --> Undefined variable: balancetocleared C:\xampp\htdocs\ria\application\controllers\cashbook.php 1384
+ERROR - 2019-01-09 10:30:12 --> Severity: Notice --> Undefined variable: data C:\xampp\htdocs\ria\application\controllers\cashbook.php 1456
+ERROR - 2019-01-09 10:30:12 --> Severity: Notice --> Undefined variable: financialyear C:\xampp\htdocs\ria\application\views\bankstatement.php 2
+ERROR - 2019-01-09 10:30:12 --> Severity: Notice --> Undefined variable: data C:\xampp\htdocs\ria\application\controllers\cashbook.php 1456
+ERROR - 2019-01-09 10:30:12 --> Severity: Warning --> Invalid argument supplied for foreach() C:\xampp\htdocs\ria\application\views\bankstatement.php 2
+ERROR - 2019-01-09 10:30:12 --> Severity: Notice --> Undefined variable: bankreport C:\xampp\htdocs\ria\application\views\bankstatement.php 8
+ERROR - 2019-01-09 10:30:12 --> Severity: Warning --> Invalid argument supplied for foreach() C:\xampp\htdocs\ria\application\views\bankstatement.php 8
+ERROR - 2019-01-09 10:30:12 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 85
+ERROR - 2019-01-09 10:30:12 --> Severity: Notice --> Undefined variable: financialyear C:\xampp\htdocs\ria\application\views\bankstatement.php 2
+ERROR - 2019-01-09 10:30:12 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 85
+ERROR - 2019-01-09 10:30:12 --> Severity: Notice --> Undefined variable: financialyear C:\xampp\htdocs\ria\application\views\bankstatement.php 2
+ERROR - 2019-01-09 10:30:12 --> Severity: Warning --> Invalid argument supplied for foreach() C:\xampp\htdocs\ria\application\views\bankstatement.php 2
+ERROR - 2019-01-09 10:30:12 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 86
+ERROR - 2019-01-09 10:30:12 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 86
+ERROR - 2019-01-09 10:30:12 --> Severity: Warning --> Invalid argument supplied for foreach() C:\xampp\htdocs\ria\application\views\bankstatement.php 2
+ERROR - 2019-01-09 10:30:12 --> Severity: Notice --> Undefined variable: bankreport C:\xampp\htdocs\ria\application\views\bankstatement.php 8
+ERROR - 2019-01-09 10:30:12 --> Severity: Warning --> Invalid argument supplied for foreach() C:\xampp\htdocs\ria\application\views\bankstatement.php 8
+ERROR - 2019-01-09 10:30:12 --> Severity: Notice --> Undefined variable: bankreport C:\xampp\htdocs\ria\application\views\bankstatement.php 8
+ERROR - 2019-01-09 10:30:12 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 87
+ERROR - 2019-01-09 10:30:12 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 85
+ERROR - 2019-01-09 10:30:12 --> Severity: Warning --> Invalid argument supplied for foreach() C:\xampp\htdocs\ria\application\views\bankstatement.php 8
+ERROR - 2019-01-09 10:30:12 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 87
+ERROR - 2019-01-09 10:30:12 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 137
+ERROR - 2019-01-09 10:30:12 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 85
+ERROR - 2019-01-09 10:30:12 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 85
+ERROR - 2019-01-09 10:30:12 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 86
+ERROR - 2019-01-09 10:30:12 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 137
+ERROR - 2019-01-09 10:30:12 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 85
+ERROR - 2019-01-09 10:30:12 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 138
+ERROR - 2019-01-09 10:30:12 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 86
+ERROR - 2019-01-09 10:30:12 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 86
+ERROR - 2019-01-09 10:30:12 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 87
+ERROR - 2019-01-09 10:30:12 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 138
+ERROR - 2019-01-09 10:30:12 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 86
+ERROR - 2019-01-09 10:30:12 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 139
+ERROR - 2019-01-09 10:30:12 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 87
+ERROR - 2019-01-09 10:30:12 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 87
+ERROR - 2019-01-09 10:30:12 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 137
+ERROR - 2019-01-09 10:30:12 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 87
+ERROR - 2019-01-09 10:30:12 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 139
+ERROR - 2019-01-09 10:30:12 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 137
+ERROR - 2019-01-09 10:30:12 --> Severity: Notice --> Undefined variable: finyear C:\xampp\htdocs\ria\application\views\bankstatement.php 197
+ERROR - 2019-01-09 10:30:12 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 137
+ERROR - 2019-01-09 10:30:12 --> Severity: Warning --> Invalid argument supplied for foreach() C:\xampp\htdocs\ria\application\views\bankstatement.php 197
+ERROR - 2019-01-09 10:30:12 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 137
+ERROR - 2019-01-09 10:30:12 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 138
+ERROR - 2019-01-09 10:30:12 --> Severity: Notice --> Undefined variable: Bankname C:\xampp\htdocs\ria\application\views\bankstatement.php 235
+ERROR - 2019-01-09 10:30:12 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 138
+ERROR - 2019-01-09 10:30:12 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 138
+ERROR - 2019-01-09 10:30:12 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 139
+ERROR - 2019-01-09 10:30:12 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 138
+ERROR - 2019-01-09 10:30:12 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 139
+ERROR - 2019-01-09 10:30:12 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 139
+ERROR - 2019-01-09 10:30:12 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 139
+ERROR - 2019-01-09 10:30:12 --> Severity: Notice --> Undefined variable: finyear C:\xampp\htdocs\ria\application\views\bankstatement.php 197
+ERROR - 2019-01-09 10:30:13 --> Severity: Notice --> Undefined variable: finyear C:\xampp\htdocs\ria\application\views\bankstatement.php 197
+ERROR - 2019-01-09 10:30:13 --> Severity: Warning --> Invalid argument supplied for foreach() C:\xampp\htdocs\ria\application\views\bankstatement.php 197
+ERROR - 2019-01-09 10:30:13 --> Severity: Notice --> Undefined variable: Bankname C:\xampp\htdocs\ria\application\views\bankstatement.php 235
+ERROR - 2019-01-09 10:30:13 --> Severity: Warning --> Invalid argument supplied for foreach() C:\xampp\htdocs\ria\application\views\bankstatement.php 197
+ERROR - 2019-01-09 10:30:13 --> Severity: Notice --> Undefined variable: Bankname C:\xampp\htdocs\ria\application\views\bankstatement.php 235
+ERROR - 2019-01-09 10:30:13 --> Severity: Notice --> Undefined variable: fdate C:\xampp\htdocs\ria\application\controllers\cashbook.php 1172
+ERROR - 2019-01-09 10:30:13 --> Severity: Notice --> Undefined variable: tdate C:\xampp\htdocs\ria\application\controllers\cashbook.php 1172
+ERROR - 2019-01-09 10:30:13 --> Severity: Notice --> Undefined variable: fa C:\xampp\htdocs\ria\application\controllers\cashbook.php 1172
+ERROR - 2019-01-09 10:30:13 --> Severity: Notice --> Undefined variable: aa C:\xampp\htdocs\ria\application\controllers\cashbook.php 1172
+ERROR - 2019-01-09 10:30:14 --> Severity: Notice --> Undefined variable: fdate C:\xampp\htdocs\ria\application\controllers\cashbook.php 1172
+ERROR - 2019-01-09 10:30:14 --> Severity: Notice --> Undefined variable: fdate C:\xampp\htdocs\ria\application\controllers\cashbook.php 1172
+ERROR - 2019-01-09 10:30:14 --> Severity: Notice --> Undefined variable: tdate C:\xampp\htdocs\ria\application\controllers\cashbook.php 1172
+ERROR - 2019-01-09 10:30:14 --> Severity: Notice --> Undefined variable: tdate C:\xampp\htdocs\ria\application\controllers\cashbook.php 1172
+ERROR - 2019-01-09 10:30:14 --> Severity: Notice --> Undefined variable: fa C:\xampp\htdocs\ria\application\controllers\cashbook.php 1172
+ERROR - 2019-01-09 10:30:14 --> Severity: Notice --> Undefined variable: financialyear C:\xampp\htdocs\ria\application\views\bankstatement.php 2
+ERROR - 2019-01-09 10:30:14 --> Severity: Notice --> Undefined variable: fa C:\xampp\htdocs\ria\application\controllers\cashbook.php 1172
+ERROR - 2019-01-09 10:30:14 --> Severity: Notice --> Undefined variable: aa C:\xampp\htdocs\ria\application\controllers\cashbook.php 1172
+ERROR - 2019-01-09 10:30:14 --> Severity: Warning --> Invalid argument supplied for foreach() C:\xampp\htdocs\ria\application\views\bankstatement.php 2
+ERROR - 2019-01-09 10:30:14 --> Severity: Notice --> Undefined variable: aa C:\xampp\htdocs\ria\application\controllers\cashbook.php 1172
+ERROR - 2019-01-09 10:30:14 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 85
+ERROR - 2019-01-09 10:30:14 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 85
+ERROR - 2019-01-09 10:30:14 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 86
+ERROR - 2019-01-09 10:30:14 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 86
+ERROR - 2019-01-09 10:30:14 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 87
+ERROR - 2019-01-09 10:30:14 --> Severity: Notice --> Undefined variable: financialyear C:\xampp\htdocs\ria\application\views\bankstatement.php 2
+ERROR - 2019-01-09 10:30:14 --> Severity: Notice --> Undefined variable: financialyear C:\xampp\htdocs\ria\application\views\bankstatement.php 2
+ERROR - 2019-01-09 10:30:14 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 87
+ERROR - 2019-01-09 10:30:14 --> Severity: Warning --> Invalid argument supplied for foreach() C:\xampp\htdocs\ria\application\views\bankstatement.php 2
+ERROR - 2019-01-09 10:30:14 --> Severity: Warning --> Invalid argument supplied for foreach() C:\xampp\htdocs\ria\application\views\bankstatement.php 2
+ERROR - 2019-01-09 10:30:14 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 137
+ERROR - 2019-01-09 10:30:14 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 137
+ERROR - 2019-01-09 10:30:14 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 85
+ERROR - 2019-01-09 10:30:14 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 85
+ERROR - 2019-01-09 10:30:14 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 85
+ERROR - 2019-01-09 10:30:14 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 138
+ERROR - 2019-01-09 10:30:14 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 85
+ERROR - 2019-01-09 10:30:14 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 86
+ERROR - 2019-01-09 10:30:14 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 138
+ERROR - 2019-01-09 10:30:14 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 139
+ERROR - 2019-01-09 10:30:14 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 86
+ERROR - 2019-01-09 10:30:14 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 86
+ERROR - 2019-01-09 10:30:14 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 87
+ERROR - 2019-01-09 10:30:14 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 139
+ERROR - 2019-01-09 10:30:14 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 86
+ERROR - 2019-01-09 10:30:14 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 87
+ERROR - 2019-01-09 10:30:14 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 87
+ERROR - 2019-01-09 10:30:14 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 87
+ERROR - 2019-01-09 10:30:14 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 137
+ERROR - 2019-01-09 10:30:14 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 137
+ERROR - 2019-01-09 10:30:14 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 137
+ERROR - 2019-01-09 10:30:14 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 138
+ERROR - 2019-01-09 10:30:14 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 137
+ERROR - 2019-01-09 10:30:14 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 138
+ERROR - 2019-01-09 10:30:14 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 138
+ERROR - 2019-01-09 10:30:14 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 138
+ERROR - 2019-01-09 10:30:14 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 139
+ERROR - 2019-01-09 10:30:14 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 139
+ERROR - 2019-01-09 10:30:14 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 139
+ERROR - 2019-01-09 10:30:15 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 139
+ERROR - 2019-01-09 10:30:25 --> Severity: Notice --> Undefined variable: financialyear C:\xampp\htdocs\ria\application\views\bankdebit.php 2
+ERROR - 2019-01-09 10:30:25 --> Severity: Warning --> Invalid argument supplied for foreach() C:\xampp\htdocs\ria\application\views\bankdebit.php 2
+ERROR - 2019-01-09 10:30:30 --> Severity: Notice --> Undefined variable: financialyear C:\xampp\htdocs\ria\application\views\bankdebit.php 2
+ERROR - 2019-01-09 10:30:30 --> Severity: Warning --> Invalid argument supplied for foreach() C:\xampp\htdocs\ria\application\views\bankdebit.php 2
+ERROR - 2019-01-09 10:30:30 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankdebit.php 177
+ERROR - 2019-01-09 10:30:30 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\ria\application\views\bankdebit.php 179
+ERROR - 2019-01-09 10:30:30 --> Severity: Notice --> Undefined property: stdClass::$IGRItemNo C:\xampp\htdocs\ria\application\views\bankdebit.php 193
+ERROR - 2019-01-09 10:30:30 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankdebit.php 177
+ERROR - 2019-01-09 10:30:30 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\ria\application\views\bankdebit.php 179
+ERROR - 2019-01-09 10:30:30 --> Severity: Notice --> Undefined property: stdClass::$IGRItemNo C:\xampp\htdocs\ria\application\views\bankdebit.php 193
+ERROR - 2019-01-09 10:30:30 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankdebit.php 177
+ERROR - 2019-01-09 10:30:30 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\ria\application\views\bankdebit.php 179
+ERROR - 2019-01-09 10:30:31 --> Severity: Notice --> Undefined property: stdClass::$IGRItemNo C:\xampp\htdocs\ria\application\views\bankdebit.php 193
+ERROR - 2019-01-09 10:30:31 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankdebit.php 177
+ERROR - 2019-01-09 10:30:31 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\ria\application\views\bankdebit.php 179
+ERROR - 2019-01-09 10:30:31 --> Severity: Notice --> Undefined property: stdClass::$IGRItemNo C:\xampp\htdocs\ria\application\views\bankdebit.php 193
+ERROR - 2019-01-09 10:30:31 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankdebit.php 177
+ERROR - 2019-01-09 10:30:31 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\ria\application\views\bankdebit.php 179
+ERROR - 2019-01-09 10:30:31 --> Severity: Notice --> Undefined property: stdClass::$IGRItemNo C:\xampp\htdocs\ria\application\views\bankdebit.php 193
+ERROR - 2019-01-09 10:30:31 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankdebit.php 177
+ERROR - 2019-01-09 10:30:31 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\ria\application\views\bankdebit.php 179
+ERROR - 2019-01-09 10:30:31 --> Severity: Notice --> Undefined property: stdClass::$IGRItemNo C:\xampp\htdocs\ria\application\views\bankdebit.php 193
+ERROR - 2019-01-09 10:30:31 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankdebit.php 177
+ERROR - 2019-01-09 10:30:31 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\ria\application\views\bankdebit.php 179
+ERROR - 2019-01-09 10:30:31 --> Severity: Notice --> Undefined property: stdClass::$IGRItemNo C:\xampp\htdocs\ria\application\views\bankdebit.php 193
+ERROR - 2019-01-09 10:30:31 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankdebit.php 177
+ERROR - 2019-01-09 10:30:31 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\ria\application\views\bankdebit.php 179
+ERROR - 2019-01-09 10:30:31 --> Severity: Notice --> Undefined property: stdClass::$IGRItemNo C:\xampp\htdocs\ria\application\views\bankdebit.php 193
+ERROR - 2019-01-09 10:30:31 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankdebit.php 177
+ERROR - 2019-01-09 10:30:31 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\ria\application\views\bankdebit.php 179
+ERROR - 2019-01-09 10:30:31 --> Severity: Notice --> Undefined property: stdClass::$IGRItemNo C:\xampp\htdocs\ria\application\views\bankdebit.php 193
+ERROR - 2019-01-09 10:30:31 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankdebit.php 177
+ERROR - 2019-01-09 10:30:31 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\ria\application\views\bankdebit.php 179
+ERROR - 2019-01-09 10:30:32 --> Severity: Notice --> Undefined property: stdClass::$IGRItemNo C:\xampp\htdocs\ria\application\views\bankdebit.php 193
+ERROR - 2019-01-09 10:30:32 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankdebit.php 177
+ERROR - 2019-01-09 10:30:32 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\ria\application\views\bankdebit.php 179
+ERROR - 2019-01-09 10:30:32 --> Severity: Notice --> Undefined property: stdClass::$IGRItemNo C:\xampp\htdocs\ria\application\views\bankdebit.php 193
+ERROR - 2019-01-09 10:30:32 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankdebit.php 177
+ERROR - 2019-01-09 10:30:32 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\ria\application\views\bankdebit.php 179
+ERROR - 2019-01-09 10:30:32 --> Severity: Notice --> Undefined property: stdClass::$IGRItemNo C:\xampp\htdocs\ria\application\views\bankdebit.php 193
+ERROR - 2019-01-09 10:30:32 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankdebit.php 177
+ERROR - 2019-01-09 10:30:32 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\ria\application\views\bankdebit.php 179
+ERROR - 2019-01-09 10:30:32 --> Severity: Notice --> Undefined property: stdClass::$IGRItemNo C:\xampp\htdocs\ria\application\views\bankdebit.php 193
+ERROR - 2019-01-09 10:30:32 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankdebit.php 177
+ERROR - 2019-01-09 10:30:32 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\ria\application\views\bankdebit.php 179
+ERROR - 2019-01-09 10:30:32 --> Severity: Notice --> Undefined property: stdClass::$IGRItemNo C:\xampp\htdocs\ria\application\views\bankdebit.php 193
+ERROR - 2019-01-09 10:30:32 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankdebit.php 177
+ERROR - 2019-01-09 10:30:32 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\ria\application\views\bankdebit.php 179
+ERROR - 2019-01-09 10:30:32 --> Severity: Notice --> Undefined property: stdClass::$IGRItemNo C:\xampp\htdocs\ria\application\views\bankdebit.php 193
+ERROR - 2019-01-09 10:36:10 --> Severity: Notice --> Undefined variable: financialyear C:\xampp\htdocs\ria\application\views\bankdebit.php 2
+ERROR - 2019-01-09 10:36:10 --> Severity: Warning --> Invalid argument supplied for foreach() C:\xampp\htdocs\ria\application\views\bankdebit.php 2
+ERROR - 2019-01-09 10:36:23 --> Severity: Notice --> Undefined variable: fdate C:\xampp\htdocs\ria\application\controllers\cashbook.php 1172
+ERROR - 2019-01-09 10:36:23 --> Severity: Notice --> Undefined variable: tdate C:\xampp\htdocs\ria\application\controllers\cashbook.php 1172
+ERROR - 2019-01-09 10:36:23 --> Severity: Notice --> Undefined variable: fa C:\xampp\htdocs\ria\application\controllers\cashbook.php 1172
+ERROR - 2019-01-09 10:36:23 --> Severity: Notice --> Undefined variable: aa C:\xampp\htdocs\ria\application\controllers\cashbook.php 1172
+ERROR - 2019-01-09 10:36:24 --> Severity: Notice --> Undefined variable: financialyear C:\xampp\htdocs\ria\application\views\bankstatement.php 2
+ERROR - 2019-01-09 10:36:24 --> Severity: Warning --> Invalid argument supplied for foreach() C:\xampp\htdocs\ria\application\views\bankstatement.php 2
+ERROR - 2019-01-09 10:36:24 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 85
+ERROR - 2019-01-09 10:36:24 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 85
+ERROR - 2019-01-09 10:36:24 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 86
+ERROR - 2019-01-09 10:36:24 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 86
+ERROR - 2019-01-09 10:36:24 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 87
+ERROR - 2019-01-09 10:36:24 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 87
+ERROR - 2019-01-09 10:36:24 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 137
+ERROR - 2019-01-09 10:36:24 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 137
+ERROR - 2019-01-09 10:36:24 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 138
+ERROR - 2019-01-09 10:36:24 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 138
+ERROR - 2019-01-09 10:36:24 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 139
+ERROR - 2019-01-09 10:36:24 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 139
+ERROR - 2019-01-09 10:36:24 --> Severity: Notice --> Undefined variable: Bankname C:\xampp\htdocs\ria\application\views\bankstatement.php 235
+ERROR - 2019-01-09 10:43:28 --> Severity: Notice --> Undefined variable: fdate C:\xampp\htdocs\ria\application\controllers\cashbook.php 1172
+ERROR - 2019-01-09 10:43:28 --> Severity: Notice --> Undefined variable: tdate C:\xampp\htdocs\ria\application\controllers\cashbook.php 1172
+ERROR - 2019-01-09 10:43:29 --> Severity: Notice --> Undefined variable: fa C:\xampp\htdocs\ria\application\controllers\cashbook.php 1172
+ERROR - 2019-01-09 10:43:29 --> Severity: Notice --> Undefined variable: aa C:\xampp\htdocs\ria\application\controllers\cashbook.php 1172
+ERROR - 2019-01-09 10:43:29 --> Severity: Notice --> Undefined variable: financialyear C:\xampp\htdocs\ria\application\views\bankstatement.php 2
+ERROR - 2019-01-09 10:43:29 --> Severity: Warning --> Invalid argument supplied for foreach() C:\xampp\htdocs\ria\application\views\bankstatement.php 2
+ERROR - 2019-01-09 10:43:29 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 85
+ERROR - 2019-01-09 10:43:29 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 85
+ERROR - 2019-01-09 10:43:29 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 86
+ERROR - 2019-01-09 10:43:29 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 86
+ERROR - 2019-01-09 10:43:29 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 87
+ERROR - 2019-01-09 10:43:29 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 87
+ERROR - 2019-01-09 10:43:29 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 137
+ERROR - 2019-01-09 10:43:29 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 137
+ERROR - 2019-01-09 10:43:30 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 138
+ERROR - 2019-01-09 10:43:30 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 138
+ERROR - 2019-01-09 10:43:30 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 139
+ERROR - 2019-01-09 10:43:30 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 139
+ERROR - 2019-01-09 10:43:30 --> Severity: Notice --> Undefined variable: Bankname C:\xampp\htdocs\ria\application\views\bankstatement.php 235
+ERROR - 2019-01-09 10:46:38 --> Severity: Notice --> Undefined variable: fdate C:\xampp\htdocs\ria\application\controllers\cashbook.php 1172
+ERROR - 2019-01-09 10:46:38 --> Severity: Notice --> Undefined variable: tdate C:\xampp\htdocs\ria\application\controllers\cashbook.php 1172
+ERROR - 2019-01-09 10:46:38 --> Severity: Notice --> Undefined variable: fa C:\xampp\htdocs\ria\application\controllers\cashbook.php 1172
+ERROR - 2019-01-09 10:46:38 --> Severity: Notice --> Undefined variable: aa C:\xampp\htdocs\ria\application\controllers\cashbook.php 1172
+ERROR - 2019-01-09 10:46:39 --> Severity: Notice --> Undefined variable: financialyear C:\xampp\htdocs\ria\application\views\bankstatement.php 2
+ERROR - 2019-01-09 10:46:39 --> Severity: Warning --> Invalid argument supplied for foreach() C:\xampp\htdocs\ria\application\views\bankstatement.php 2
+ERROR - 2019-01-09 10:46:39 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 85
+ERROR - 2019-01-09 10:46:39 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 85
+ERROR - 2019-01-09 10:46:39 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 86
+ERROR - 2019-01-09 10:46:39 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 86
+ERROR - 2019-01-09 10:46:39 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 87
+ERROR - 2019-01-09 10:46:39 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 87
+ERROR - 2019-01-09 10:46:39 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 137
+ERROR - 2019-01-09 10:46:39 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 137
+ERROR - 2019-01-09 10:46:39 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 138
+ERROR - 2019-01-09 10:46:39 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 138
+ERROR - 2019-01-09 10:46:39 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 139
+ERROR - 2019-01-09 10:46:39 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 139
+ERROR - 2019-01-09 10:46:39 --> Severity: Notice --> Undefined variable: Bankname C:\xampp\htdocs\ria\application\views\bankstatement.php 235
+ERROR - 2019-01-09 10:46:47 --> Severity: Notice --> Undefined variable: financialyear C:\xampp\htdocs\ria\application\views\bankstatement.php 2
+ERROR - 2019-01-09 10:46:47 --> Severity: Warning --> Invalid argument supplied for foreach() C:\xampp\htdocs\ria\application\views\bankstatement.php 2
+ERROR - 2019-01-09 10:46:47 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 85
+ERROR - 2019-01-09 10:46:47 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 85
+ERROR - 2019-01-09 10:46:47 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 86
+ERROR - 2019-01-09 10:46:47 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 86
+ERROR - 2019-01-09 10:46:47 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 87
+ERROR - 2019-01-09 10:46:47 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 87
+ERROR - 2019-01-09 10:46:47 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 137
+ERROR - 2019-01-09 10:46:47 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 137
+ERROR - 2019-01-09 10:46:47 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 138
+ERROR - 2019-01-09 10:46:47 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 138
+ERROR - 2019-01-09 10:46:47 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 139
+ERROR - 2019-01-09 10:46:47 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 139
+ERROR - 2019-01-09 10:46:47 --> Severity: Notice --> Undefined variable: Bankname C:\xampp\htdocs\ria\application\views\bankstatement.php 235
+ERROR - 2019-01-09 10:46:59 --> Severity: Notice --> Undefined variable: creditdebit C:\xampp\htdocs\ria\application\views\bankingfile.php 132
+ERROR - 2019-01-09 10:48:17 --> Severity: Notice --> Undefined variable: filename C:\xampp\htdocs\ria\application\controllers\cashbook.php 236
+ERROR - 2019-01-09 10:48:17 --> The upload path does not appear to be valid.
+ERROR - 2019-01-09 10:48:22 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 517
+ERROR - 2019-01-09 10:48:22 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 517
+ERROR - 2019-01-09 10:48:23 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 517
+ERROR - 2019-01-09 10:48:23 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 517
+ERROR - 2019-01-09 10:48:23 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 517
+ERROR - 2019-01-09 10:48:23 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 517
+ERROR - 2019-01-09 10:48:23 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 517
+ERROR - 2019-01-09 10:48:23 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 517
+ERROR - 2019-01-09 10:48:24 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 517
+ERROR - 2019-01-09 10:48:24 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 517
+ERROR - 2019-01-09 10:48:24 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 517
+ERROR - 2019-01-09 10:48:24 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 517
+ERROR - 2019-01-09 10:48:24 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 517
+ERROR - 2019-01-09 10:48:24 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 517
+ERROR - 2019-01-09 10:48:24 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 517
+ERROR - 2019-01-09 10:48:24 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 517
+ERROR - 2019-01-09 10:48:25 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 517
+ERROR - 2019-01-09 10:48:25 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 517
+ERROR - 2019-01-09 10:48:25 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 517
+ERROR - 2019-01-09 10:48:25 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 517
+ERROR - 2019-01-09 10:48:25 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 517
+ERROR - 2019-01-09 10:48:25 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 517
+ERROR - 2019-01-09 10:48:25 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 517
+ERROR - 2019-01-09 10:48:25 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 517
+ERROR - 2019-01-09 10:48:25 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 517
+ERROR - 2019-01-09 10:48:25 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 517
+ERROR - 2019-01-09 10:48:25 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 517
+ERROR - 2019-01-09 10:48:25 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 517
+ERROR - 2019-01-09 10:48:25 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 517
+ERROR - 2019-01-09 10:48:25 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 517
+ERROR - 2019-01-09 10:48:26 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 517
+ERROR - 2019-01-09 10:48:26 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 517
+ERROR - 2019-01-09 10:48:26 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 517
+ERROR - 2019-01-09 10:48:26 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 517
+ERROR - 2019-01-09 10:48:26 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 517
+ERROR - 2019-01-09 10:48:26 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 517
+ERROR - 2019-01-09 10:48:26 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 517
+ERROR - 2019-01-09 10:48:26 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 517
+ERROR - 2019-01-09 10:48:26 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 517
+ERROR - 2019-01-09 10:48:26 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 517
+ERROR - 2019-01-09 10:48:26 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 517
+ERROR - 2019-01-09 10:48:26 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 517
+ERROR - 2019-01-09 10:48:27 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 517
+ERROR - 2019-01-09 10:48:27 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 517
+ERROR - 2019-01-09 10:48:27 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 517
+ERROR - 2019-01-09 10:48:27 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 517
+ERROR - 2019-01-09 10:48:27 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 517
+ERROR - 2019-01-09 10:48:27 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 517
+ERROR - 2019-01-09 10:48:27 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 517
+ERROR - 2019-01-09 10:48:27 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 517
+ERROR - 2019-01-09 10:48:27 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 517
+ERROR - 2019-01-09 10:48:27 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 517
+ERROR - 2019-01-09 10:48:27 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 517
+ERROR - 2019-01-09 10:48:27 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 517
+ERROR - 2019-01-09 10:48:27 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 517
+ERROR - 2019-01-09 10:48:27 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 517
+ERROR - 2019-01-09 10:48:28 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 517
+ERROR - 2019-01-09 10:48:28 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 517
+ERROR - 2019-01-09 10:48:28 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 517
+ERROR - 2019-01-09 10:48:28 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 517
+ERROR - 2019-01-09 10:48:28 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 517
+ERROR - 2019-01-09 10:48:28 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 517
+ERROR - 2019-01-09 10:48:28 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 517
+ERROR - 2019-01-09 10:48:28 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 517
+ERROR - 2019-01-09 10:48:28 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 517
+ERROR - 2019-01-09 10:48:28 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 517
+ERROR - 2019-01-09 10:48:28 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 517
+ERROR - 2019-01-09 10:48:28 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 517
+ERROR - 2019-01-09 10:48:29 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 517
+ERROR - 2019-01-09 10:48:29 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 517
+ERROR - 2019-01-09 10:48:29 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 517
+ERROR - 2019-01-09 10:48:29 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 517
+ERROR - 2019-01-09 10:48:29 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 517
+ERROR - 2019-01-09 10:48:29 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 517
+ERROR - 2019-01-09 10:48:29 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 517
+ERROR - 2019-01-09 10:48:29 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 517
+ERROR - 2019-01-09 10:48:29 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 517
+ERROR - 2019-01-09 10:48:29 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 517
+ERROR - 2019-01-09 10:48:29 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 517
+ERROR - 2019-01-09 10:48:29 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 517
+ERROR - 2019-01-09 10:48:29 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 517
+ERROR - 2019-01-09 10:48:29 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 517
+ERROR - 2019-01-09 10:48:30 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 517
+ERROR - 2019-01-09 10:48:30 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 517
+ERROR - 2019-01-09 10:48:30 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 517
+ERROR - 2019-01-09 10:48:30 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 517
+ERROR - 2019-01-09 10:48:30 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 517
+ERROR - 2019-01-09 10:48:30 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 517
+ERROR - 2019-01-09 10:48:30 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 517
+ERROR - 2019-01-09 10:48:30 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 517
+ERROR - 2019-01-09 10:48:30 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 517
+ERROR - 2019-01-09 10:48:30 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 517
+ERROR - 2019-01-09 10:48:30 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 517
+ERROR - 2019-01-09 10:48:30 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 517
+ERROR - 2019-01-09 10:48:30 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 517
+ERROR - 2019-01-09 10:48:31 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 517
+ERROR - 2019-01-09 10:48:31 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 517
+ERROR - 2019-01-09 10:48:31 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 517
+ERROR - 2019-01-09 10:48:31 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 517
+ERROR - 2019-01-09 10:48:31 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 517
+ERROR - 2019-01-09 10:48:31 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 517
+ERROR - 2019-01-09 10:48:31 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 517
+ERROR - 2019-01-09 10:48:31 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 517
+ERROR - 2019-01-09 10:48:31 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 517
+ERROR - 2019-01-09 10:48:31 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 517
+ERROR - 2019-01-09 10:48:31 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 517
+ERROR - 2019-01-09 10:48:31 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 517
+ERROR - 2019-01-09 10:48:32 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 517
+ERROR - 2019-01-09 10:48:32 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 517
+ERROR - 2019-01-09 10:48:32 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 517
+ERROR - 2019-01-09 10:48:32 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 517
+ERROR - 2019-01-09 10:48:32 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 517
+ERROR - 2019-01-09 10:48:32 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 517
+ERROR - 2019-01-09 10:48:32 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 517
+ERROR - 2019-01-09 10:48:32 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 517
+ERROR - 2019-01-09 10:48:32 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 517
+ERROR - 2019-01-09 10:48:32 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 517
+ERROR - 2019-01-09 10:48:32 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 517
+ERROR - 2019-01-09 10:48:32 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 517
+ERROR - 2019-01-09 10:48:32 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 517
+ERROR - 2019-01-09 10:48:33 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 517
+ERROR - 2019-01-09 10:48:33 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 517
+ERROR - 2019-01-09 10:48:33 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 517
+ERROR - 2019-01-09 10:48:33 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 517
+ERROR - 2019-01-09 10:48:33 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 517
+ERROR - 2019-01-09 10:48:33 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 517
+ERROR - 2019-01-09 10:48:33 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 517
+ERROR - 2019-01-09 10:48:33 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 517
+ERROR - 2019-01-09 10:48:33 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 517
+ERROR - 2019-01-09 10:48:33 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 517
+ERROR - 2019-01-09 10:48:33 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 517
+ERROR - 2019-01-09 10:48:33 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 517
+ERROR - 2019-01-09 10:48:33 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 517
+ERROR - 2019-01-09 10:48:34 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 517
+ERROR - 2019-01-09 10:48:34 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 517
+ERROR - 2019-01-09 10:48:34 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 517
+ERROR - 2019-01-09 10:48:34 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 517
+ERROR - 2019-01-09 10:48:34 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 517
+ERROR - 2019-01-09 10:48:34 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 517
+ERROR - 2019-01-09 10:48:34 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 517
+ERROR - 2019-01-09 10:48:34 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 517
+ERROR - 2019-01-09 10:48:34 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 517
+ERROR - 2019-01-09 10:48:34 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 517
+ERROR - 2019-01-09 10:48:34 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 517
+ERROR - 2019-01-09 10:48:34 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 517
+ERROR - 2019-01-09 10:48:34 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 517
+ERROR - 2019-01-09 10:48:35 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 517
+ERROR - 2019-01-09 10:48:35 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 517
+ERROR - 2019-01-09 10:48:35 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 517
+ERROR - 2019-01-09 10:48:35 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 517
+ERROR - 2019-01-09 10:48:35 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 517
+ERROR - 2019-01-09 10:48:35 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 517
+ERROR - 2019-01-09 10:48:35 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 517
+ERROR - 2019-01-09 10:48:35 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 517
+ERROR - 2019-01-09 10:48:35 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 517
+ERROR - 2019-01-09 10:48:35 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 517
+ERROR - 2019-01-09 10:48:35 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 517
+ERROR - 2019-01-09 10:48:35 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 517
+ERROR - 2019-01-09 10:48:35 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 517
+ERROR - 2019-01-09 10:48:36 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 517
+ERROR - 2019-01-09 10:48:36 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 517
+ERROR - 2019-01-09 10:48:36 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 517
+ERROR - 2019-01-09 10:48:36 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 517
+ERROR - 2019-01-09 10:48:36 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 517
+ERROR - 2019-01-09 10:48:36 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 517
+ERROR - 2019-01-09 10:48:36 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 517
+ERROR - 2019-01-09 10:48:36 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 517
+ERROR - 2019-01-09 10:48:36 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 517
+ERROR - 2019-01-09 10:48:36 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 517
+ERROR - 2019-01-09 10:48:36 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 517
+ERROR - 2019-01-09 10:48:36 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 517
+ERROR - 2019-01-09 10:48:36 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 517
+ERROR - 2019-01-09 10:48:37 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 517
+ERROR - 2019-01-09 10:48:37 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 517
+ERROR - 2019-01-09 10:48:37 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 517
+ERROR - 2019-01-09 10:48:37 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 517
+ERROR - 2019-01-09 10:48:37 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 517
+ERROR - 2019-01-09 10:48:37 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 517
+ERROR - 2019-01-09 10:48:37 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 517
+ERROR - 2019-01-09 10:48:37 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 517
+ERROR - 2019-01-09 10:48:37 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 517
+ERROR - 2019-01-09 10:48:37 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 517
+ERROR - 2019-01-09 10:48:37 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 517
+ERROR - 2019-01-09 10:48:37 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 517
+ERROR - 2019-01-09 10:48:37 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 517
+ERROR - 2019-01-09 10:48:38 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 517
+ERROR - 2019-01-09 10:48:38 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 517
+ERROR - 2019-01-09 10:48:38 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 517
+ERROR - 2019-01-09 10:48:38 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 517
+ERROR - 2019-01-09 10:48:38 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 517
+ERROR - 2019-01-09 10:48:38 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 517
+ERROR - 2019-01-09 10:48:38 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 517
+ERROR - 2019-01-09 10:48:38 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 517
+ERROR - 2019-01-09 10:48:38 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 517
+ERROR - 2019-01-09 10:48:38 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 517
+ERROR - 2019-01-09 10:48:38 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 517
+ERROR - 2019-01-09 10:48:38 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 517
+ERROR - 2019-01-09 10:48:38 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 517
+ERROR - 2019-01-09 10:48:39 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 517
+ERROR - 2019-01-09 10:48:39 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 517
+ERROR - 2019-01-09 10:48:39 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 517
+ERROR - 2019-01-09 10:48:39 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 517
+ERROR - 2019-01-09 10:48:39 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 517
+ERROR - 2019-01-09 10:48:39 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 517
+ERROR - 2019-01-09 10:48:39 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 517
+ERROR - 2019-01-09 10:48:39 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 517
+ERROR - 2019-01-09 10:48:39 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 517
+ERROR - 2019-01-09 10:48:39 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 517
+ERROR - 2019-01-09 10:48:39 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 517
+ERROR - 2019-01-09 10:48:39 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 517
+ERROR - 2019-01-09 10:48:39 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 517
+ERROR - 2019-01-09 10:48:39 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 517
+ERROR - 2019-01-09 10:48:40 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 517
+ERROR - 2019-01-09 10:48:40 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 517
+ERROR - 2019-01-09 10:48:40 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 517
+ERROR - 2019-01-09 10:48:40 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 517
+ERROR - 2019-01-09 10:48:40 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 517
+ERROR - 2019-01-09 10:48:40 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 517
+ERROR - 2019-01-09 10:48:40 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 517
+ERROR - 2019-01-09 10:48:40 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 517
+ERROR - 2019-01-09 10:48:40 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 517
+ERROR - 2019-01-09 10:48:40 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 517
+ERROR - 2019-01-09 10:48:40 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 517
+ERROR - 2019-01-09 10:48:40 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 517
+ERROR - 2019-01-09 10:48:41 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 517
+ERROR - 2019-01-09 10:48:41 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 517
+ERROR - 2019-01-09 10:48:41 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 517
+ERROR - 2019-01-09 10:48:41 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 517
+ERROR - 2019-01-09 10:48:41 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 517
+ERROR - 2019-01-09 10:48:41 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 517
+ERROR - 2019-01-09 10:48:41 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 517
+ERROR - 2019-01-09 10:48:41 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 517
+ERROR - 2019-01-09 10:48:41 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 517
+ERROR - 2019-01-09 10:48:41 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 517
+ERROR - 2019-01-09 10:48:41 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 517
+ERROR - 2019-01-09 10:48:41 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 517
+ERROR - 2019-01-09 10:48:41 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 517
+ERROR - 2019-01-09 10:48:41 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 517
+ERROR - 2019-01-09 10:48:42 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 517
+ERROR - 2019-01-09 10:48:42 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 517
+ERROR - 2019-01-09 10:48:42 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 517
+ERROR - 2019-01-09 10:48:42 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 517
+ERROR - 2019-01-09 10:48:42 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 517
+ERROR - 2019-01-09 10:48:42 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 517
+ERROR - 2019-01-09 10:48:42 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 517
+ERROR - 2019-01-09 10:48:42 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 517
+ERROR - 2019-01-09 10:48:42 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 517
+ERROR - 2019-01-09 10:48:42 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 517
+ERROR - 2019-01-09 10:48:42 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 517
+ERROR - 2019-01-09 10:48:42 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 517
+ERROR - 2019-01-09 10:48:43 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 517
+ERROR - 2019-01-09 10:48:43 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 517
+ERROR - 2019-01-09 10:48:43 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 517
+ERROR - 2019-01-09 10:48:43 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 517
+ERROR - 2019-01-09 10:48:43 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 517
+ERROR - 2019-01-09 10:48:43 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 517
+ERROR - 2019-01-09 10:48:43 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 517
+ERROR - 2019-01-09 10:48:43 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 517
+ERROR - 2019-01-09 10:48:43 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 517
+ERROR - 2019-01-09 10:48:43 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 517
+ERROR - 2019-01-09 10:48:43 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 517
+ERROR - 2019-01-09 10:48:43 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 517
+ERROR - 2019-01-09 10:48:43 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 517
+ERROR - 2019-01-09 10:48:43 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 517
+ERROR - 2019-01-09 10:48:44 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 517
+ERROR - 2019-01-09 10:48:44 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 517
+ERROR - 2019-01-09 10:48:44 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 517
+ERROR - 2019-01-09 10:48:44 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 517
+ERROR - 2019-01-09 10:48:44 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 517
+ERROR - 2019-01-09 10:48:44 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 517
+ERROR - 2019-01-09 10:48:48 --> Severity: Notice --> Undefined variable: fdate C:\xampp\htdocs\ria\application\controllers\cashbook.php 1172
+ERROR - 2019-01-09 10:48:48 --> Severity: Notice --> Undefined variable: tdate C:\xampp\htdocs\ria\application\controllers\cashbook.php 1172
+ERROR - 2019-01-09 10:48:48 --> Severity: Notice --> Undefined variable: fa C:\xampp\htdocs\ria\application\controllers\cashbook.php 1172
+ERROR - 2019-01-09 10:48:48 --> Severity: Notice --> Undefined variable: aa C:\xampp\htdocs\ria\application\controllers\cashbook.php 1172
+ERROR - 2019-01-09 10:48:49 --> Severity: Notice --> Undefined variable: financialyear C:\xampp\htdocs\ria\application\views\bankstatement.php 2
+ERROR - 2019-01-09 10:48:49 --> Severity: Warning --> Invalid argument supplied for foreach() C:\xampp\htdocs\ria\application\views\bankstatement.php 2
+ERROR - 2019-01-09 10:48:49 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 85
+ERROR - 2019-01-09 10:48:49 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 85
+ERROR - 2019-01-09 10:48:49 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 86
+ERROR - 2019-01-09 10:48:49 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 86
+ERROR - 2019-01-09 10:48:49 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 87
+ERROR - 2019-01-09 10:48:49 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 87
+ERROR - 2019-01-09 10:48:49 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 137
+ERROR - 2019-01-09 10:48:49 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 137
+ERROR - 2019-01-09 10:48:49 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 138
+ERROR - 2019-01-09 10:48:49 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 138
+ERROR - 2019-01-09 10:48:49 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 139
+ERROR - 2019-01-09 10:48:49 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 139
+ERROR - 2019-01-09 10:49:03 --> Severity: Notice --> Undefined variable: financialyear C:\xampp\htdocs\ria\application\views\bankdebit.php 2
+ERROR - 2019-01-09 10:49:04 --> Severity: Warning --> Invalid argument supplied for foreach() C:\xampp\htdocs\ria\application\views\bankdebit.php 2
+ERROR - 2019-01-09 10:49:13 --> Severity: Notice --> Undefined variable: financialyear C:\xampp\htdocs\ria\application\views\bankdebit.php 2
+ERROR - 2019-01-09 10:49:14 --> Severity: Warning --> Invalid argument supplied for foreach() C:\xampp\htdocs\ria\application\views\bankdebit.php 2
+ERROR - 2019-01-09 10:49:14 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankdebit.php 177
+ERROR - 2019-01-09 10:49:14 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\ria\application\views\bankdebit.php 179
+ERROR - 2019-01-09 10:49:14 --> Severity: Notice --> Undefined property: stdClass::$IGRItemNo C:\xampp\htdocs\ria\application\views\bankdebit.php 193
+ERROR - 2019-01-09 10:49:14 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankdebit.php 177
+ERROR - 2019-01-09 10:49:14 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\ria\application\views\bankdebit.php 179
+ERROR - 2019-01-09 10:49:14 --> Severity: Notice --> Undefined property: stdClass::$IGRItemNo C:\xampp\htdocs\ria\application\views\bankdebit.php 193
+ERROR - 2019-01-09 10:49:14 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankdebit.php 177
+ERROR - 2019-01-09 10:49:14 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\ria\application\views\bankdebit.php 179
+ERROR - 2019-01-09 10:49:14 --> Severity: Notice --> Undefined property: stdClass::$IGRItemNo C:\xampp\htdocs\ria\application\views\bankdebit.php 193
+ERROR - 2019-01-09 10:49:14 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankdebit.php 177
+ERROR - 2019-01-09 10:49:14 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\ria\application\views\bankdebit.php 179
+ERROR - 2019-01-09 10:49:14 --> Severity: Notice --> Undefined property: stdClass::$IGRItemNo C:\xampp\htdocs\ria\application\views\bankdebit.php 193
+ERROR - 2019-01-09 10:49:14 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankdebit.php 177
+ERROR - 2019-01-09 10:49:14 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\ria\application\views\bankdebit.php 179
+ERROR - 2019-01-09 10:49:14 --> Severity: Notice --> Undefined property: stdClass::$IGRItemNo C:\xampp\htdocs\ria\application\views\bankdebit.php 193
+ERROR - 2019-01-09 10:49:14 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankdebit.php 177
+ERROR - 2019-01-09 10:49:14 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\ria\application\views\bankdebit.php 179
+ERROR - 2019-01-09 10:49:14 --> Severity: Notice --> Undefined property: stdClass::$IGRItemNo C:\xampp\htdocs\ria\application\views\bankdebit.php 193
+ERROR - 2019-01-09 10:49:14 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankdebit.php 177
+ERROR - 2019-01-09 10:49:14 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\ria\application\views\bankdebit.php 179
+ERROR - 2019-01-09 10:49:14 --> Severity: Notice --> Undefined property: stdClass::$IGRItemNo C:\xampp\htdocs\ria\application\views\bankdebit.php 193
+ERROR - 2019-01-09 10:49:14 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankdebit.php 177
+ERROR - 2019-01-09 10:49:14 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\ria\application\views\bankdebit.php 179
+ERROR - 2019-01-09 10:49:15 --> Severity: Notice --> Undefined property: stdClass::$IGRItemNo C:\xampp\htdocs\ria\application\views\bankdebit.php 193
+ERROR - 2019-01-09 10:49:15 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankdebit.php 177
+ERROR - 2019-01-09 10:49:15 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\ria\application\views\bankdebit.php 179
+ERROR - 2019-01-09 10:49:15 --> Severity: Notice --> Undefined property: stdClass::$IGRItemNo C:\xampp\htdocs\ria\application\views\bankdebit.php 193
+ERROR - 2019-01-09 10:49:15 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankdebit.php 177
+ERROR - 2019-01-09 10:49:15 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\ria\application\views\bankdebit.php 179
+ERROR - 2019-01-09 10:49:15 --> Severity: Notice --> Undefined property: stdClass::$IGRItemNo C:\xampp\htdocs\ria\application\views\bankdebit.php 193
+ERROR - 2019-01-09 10:49:15 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankdebit.php 177
+ERROR - 2019-01-09 10:49:15 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\ria\application\views\bankdebit.php 179
+ERROR - 2019-01-09 10:49:15 --> Severity: Notice --> Undefined property: stdClass::$IGRItemNo C:\xampp\htdocs\ria\application\views\bankdebit.php 193
+ERROR - 2019-01-09 10:49:15 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankdebit.php 177
+ERROR - 2019-01-09 10:49:15 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\ria\application\views\bankdebit.php 179
+ERROR - 2019-01-09 10:49:15 --> Severity: Notice --> Undefined property: stdClass::$IGRItemNo C:\xampp\htdocs\ria\application\views\bankdebit.php 193
+ERROR - 2019-01-09 10:49:15 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankdebit.php 177
+ERROR - 2019-01-09 10:49:15 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\ria\application\views\bankdebit.php 179
+ERROR - 2019-01-09 10:49:15 --> Severity: Notice --> Undefined property: stdClass::$IGRItemNo C:\xampp\htdocs\ria\application\views\bankdebit.php 193
+ERROR - 2019-01-09 10:49:15 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankdebit.php 177
+ERROR - 2019-01-09 10:49:15 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\ria\application\views\bankdebit.php 179
+ERROR - 2019-01-09 10:49:15 --> Severity: Notice --> Undefined property: stdClass::$IGRItemNo C:\xampp\htdocs\ria\application\views\bankdebit.php 193
+ERROR - 2019-01-09 10:49:15 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankdebit.php 177
+ERROR - 2019-01-09 10:49:15 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\ria\application\views\bankdebit.php 179
+ERROR - 2019-01-09 10:49:15 --> Severity: Notice --> Undefined property: stdClass::$IGRItemNo C:\xampp\htdocs\ria\application\views\bankdebit.php 193
+ERROR - 2019-01-09 10:49:41 --> Severity: Notice --> Undefined variable: balancetocleared C:\xampp\htdocs\ria\application\controllers\cashbook.php 1375
+ERROR - 2019-01-09 10:49:41 --> Severity: Notice --> Undefined variable: clearedblnce C:\xampp\htdocs\ria\application\controllers\cashbook.php 1384
+ERROR - 2019-01-09 10:49:41 --> Severity: Notice --> Undefined variable: balancetocleared C:\xampp\htdocs\ria\application\controllers\cashbook.php 1384
+ERROR - 2019-01-09 10:49:41 --> Severity: Notice --> Undefined variable: data C:\xampp\htdocs\ria\application\controllers\cashbook.php 1456
+ERROR - 2019-01-09 10:49:42 --> Severity: Notice --> Undefined variable: data C:\xampp\htdocs\ria\application\controllers\cashbook.php 1456
+ERROR - 2019-01-09 10:49:42 --> Severity: Notice --> Undefined variable: financialyear C:\xampp\htdocs\ria\application\views\bankstatement.php 2
+ERROR - 2019-01-09 10:49:42 --> Severity: Warning --> Invalid argument supplied for foreach() C:\xampp\htdocs\ria\application\views\bankstatement.php 2
+ERROR - 2019-01-09 10:49:42 --> Severity: Notice --> Undefined variable: bankreport C:\xampp\htdocs\ria\application\views\bankstatement.php 8
+ERROR - 2019-01-09 10:49:42 --> Severity: Warning --> Invalid argument supplied for foreach() C:\xampp\htdocs\ria\application\views\bankstatement.php 8
+ERROR - 2019-01-09 10:49:42 --> Severity: Notice --> Undefined variable: financialyear C:\xampp\htdocs\ria\application\views\bankstatement.php 2
+ERROR - 2019-01-09 10:49:42 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 85
+ERROR - 2019-01-09 10:49:42 --> Severity: Warning --> Invalid argument supplied for foreach() C:\xampp\htdocs\ria\application\views\bankstatement.php 2
+ERROR - 2019-01-09 10:49:42 --> Severity: Notice --> Undefined variable: bankreport C:\xampp\htdocs\ria\application\views\bankstatement.php 8
+ERROR - 2019-01-09 10:49:42 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 85
+ERROR - 2019-01-09 10:49:42 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 86
+ERROR - 2019-01-09 10:49:42 --> Severity: Warning --> Invalid argument supplied for foreach() C:\xampp\htdocs\ria\application\views\bankstatement.php 8
+ERROR - 2019-01-09 10:49:42 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 85
+ERROR - 2019-01-09 10:49:42 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 86
+ERROR - 2019-01-09 10:49:42 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 87
+ERROR - 2019-01-09 10:49:42 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 85
+ERROR - 2019-01-09 10:49:42 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 87
+ERROR - 2019-01-09 10:49:42 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 86
+ERROR - 2019-01-09 10:49:42 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 86
+ERROR - 2019-01-09 10:49:42 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 137
+ERROR - 2019-01-09 10:49:42 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 137
+ERROR - 2019-01-09 10:49:42 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 87
+ERROR - 2019-01-09 10:49:42 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 87
+ERROR - 2019-01-09 10:49:42 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 138
+ERROR - 2019-01-09 10:49:42 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 137
+ERROR - 2019-01-09 10:49:42 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 138
+ERROR - 2019-01-09 10:49:42 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 139
+ERROR - 2019-01-09 10:49:42 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 137
+ERROR - 2019-01-09 10:49:42 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 139
+ERROR - 2019-01-09 10:49:42 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 138
+ERROR - 2019-01-09 10:49:42 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 138
+ERROR - 2019-01-09 10:49:42 --> Severity: Notice --> Undefined variable: finyear C:\xampp\htdocs\ria\application\views\bankstatement.php 197
+ERROR - 2019-01-09 10:49:42 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 139
+ERROR - 2019-01-09 10:49:42 --> Severity: Warning --> Invalid argument supplied for foreach() C:\xampp\htdocs\ria\application\views\bankstatement.php 197
+ERROR - 2019-01-09 10:49:42 --> Severity: Notice --> Undefined variable: Bankname C:\xampp\htdocs\ria\application\views\bankstatement.php 235
+ERROR - 2019-01-09 10:49:42 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 139
+ERROR - 2019-01-09 10:49:42 --> Severity: Notice --> Undefined variable: finyear C:\xampp\htdocs\ria\application\views\bankstatement.php 197
+ERROR - 2019-01-09 10:49:42 --> Severity: Warning --> Invalid argument supplied for foreach() C:\xampp\htdocs\ria\application\views\bankstatement.php 197
+ERROR - 2019-01-09 10:49:43 --> Severity: Notice --> Undefined variable: Bankname C:\xampp\htdocs\ria\application\views\bankstatement.php 235
+ERROR - 2019-01-09 10:49:43 --> Severity: Notice --> Undefined variable: fdate C:\xampp\htdocs\ria\application\controllers\cashbook.php 1172
+ERROR - 2019-01-09 10:49:43 --> Severity: Notice --> Undefined variable: tdate C:\xampp\htdocs\ria\application\controllers\cashbook.php 1172
+ERROR - 2019-01-09 10:49:43 --> Severity: Notice --> Undefined variable: fa C:\xampp\htdocs\ria\application\controllers\cashbook.php 1172
+ERROR - 2019-01-09 10:49:43 --> Severity: Notice --> Undefined variable: fdate C:\xampp\htdocs\ria\application\controllers\cashbook.php 1172
+ERROR - 2019-01-09 10:49:43 --> Severity: Notice --> Undefined variable: aa C:\xampp\htdocs\ria\application\controllers\cashbook.php 1172
+ERROR - 2019-01-09 10:49:43 --> Severity: Notice --> Undefined variable: tdate C:\xampp\htdocs\ria\application\controllers\cashbook.php 1172
+ERROR - 2019-01-09 10:49:43 --> Severity: Notice --> Undefined variable: fa C:\xampp\htdocs\ria\application\controllers\cashbook.php 1172
+ERROR - 2019-01-09 10:49:43 --> Severity: Notice --> Undefined variable: aa C:\xampp\htdocs\ria\application\controllers\cashbook.php 1172
+ERROR - 2019-01-09 10:49:44 --> Severity: Notice --> Undefined variable: financialyear C:\xampp\htdocs\ria\application\views\bankstatement.php 2
+ERROR - 2019-01-09 10:49:44 --> Severity: Warning --> Invalid argument supplied for foreach() C:\xampp\htdocs\ria\application\views\bankstatement.php 2
+ERROR - 2019-01-09 10:49:44 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 85
+ERROR - 2019-01-09 10:49:44 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 85
+ERROR - 2019-01-09 10:49:44 --> Severity: Notice --> Undefined variable: financialyear C:\xampp\htdocs\ria\application\views\bankstatement.php 2
+ERROR - 2019-01-09 10:49:44 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 86
+ERROR - 2019-01-09 10:49:44 --> Severity: Warning --> Invalid argument supplied for foreach() C:\xampp\htdocs\ria\application\views\bankstatement.php 2
+ERROR - 2019-01-09 10:49:44 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 86
+ERROR - 2019-01-09 10:49:44 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 85
+ERROR - 2019-01-09 10:49:44 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 87
+ERROR - 2019-01-09 10:49:44 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 85
+ERROR - 2019-01-09 10:49:44 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 86
+ERROR - 2019-01-09 10:49:44 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 87
+ERROR - 2019-01-09 10:49:44 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 86
+ERROR - 2019-01-09 10:49:44 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 137
+ERROR - 2019-01-09 10:49:44 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 87
+ERROR - 2019-01-09 10:49:44 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 137
+ERROR - 2019-01-09 10:49:44 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 87
+ERROR - 2019-01-09 10:49:44 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 138
+ERROR - 2019-01-09 10:49:44 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 138
+ERROR - 2019-01-09 10:49:44 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 137
+ERROR - 2019-01-09 10:49:44 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 137
+ERROR - 2019-01-09 10:49:44 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 139
+ERROR - 2019-01-09 10:49:44 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 138
+ERROR - 2019-01-09 10:49:44 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 139
+ERROR - 2019-01-09 10:49:44 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 138
+ERROR - 2019-01-09 10:49:44 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 139
+ERROR - 2019-01-09 10:49:44 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 139
+ERROR - 2019-01-09 10:49:52 --> Severity: Notice --> Undefined variable: financialyear C:\xampp\htdocs\ria\application\views\banksettlement.php 11
+ERROR - 2019-01-09 10:49:52 --> Severity: Warning --> Invalid argument supplied for foreach() C:\xampp\htdocs\ria\application\views\banksettlement.php 11
+ERROR - 2019-01-09 10:49:52 --> Severity: Notice --> Undefined variable: t C:\xampp\htdocs\ria\application\views\banksettlement.php 289
+ERROR - 2019-01-09 10:49:52 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\banksettlement.php 289
+ERROR - 2019-01-09 10:49:52 --> Severity: Notice --> Undefined variable: t C:\xampp\htdocs\ria\application\views\banksettlement.php 289
+ERROR - 2019-01-09 10:49:52 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\banksettlement.php 289
+ERROR - 2019-01-09 10:49:52 --> Severity: Notice --> Undefined variable: rel C:\xampp\htdocs\ria\application\views\banksettlement.php 290
+ERROR - 2019-01-09 10:49:52 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\banksettlement.php 290
+ERROR - 2019-01-09 10:49:52 --> Severity: Notice --> Undefined variable: record C:\xampp\htdocs\ria\application\views\banksettlement.php 345
+ERROR - 2019-01-09 10:49:52 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\banksettlement.php 345
+ERROR - 2019-01-09 10:49:52 --> Severity: Notice --> Undefined variable: t C:\xampp\htdocs\ria\application\views\banksettlement.php 289
+ERROR - 2019-01-09 10:49:52 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\banksettlement.php 289
+ERROR - 2019-01-09 10:49:52 --> Severity: Notice --> Undefined variable: t C:\xampp\htdocs\ria\application\views\banksettlement.php 289
+ERROR - 2019-01-09 10:49:52 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\banksettlement.php 289
+ERROR - 2019-01-09 10:49:52 --> Severity: Notice --> Undefined variable: rel C:\xampp\htdocs\ria\application\views\banksettlement.php 290
+ERROR - 2019-01-09 10:49:52 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\banksettlement.php 290
+ERROR - 2019-01-09 10:49:52 --> Severity: Notice --> Undefined variable: record C:\xampp\htdocs\ria\application\views\banksettlement.php 345
+ERROR - 2019-01-09 10:49:52 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\banksettlement.php 345
+ERROR - 2019-01-09 10:50:11 --> Severity: Notice --> Undefined variable: fdate C:\xampp\htdocs\ria\application\controllers\cashbook.php 1172
+ERROR - 2019-01-09 10:50:11 --> Severity: Notice --> Undefined variable: tdate C:\xampp\htdocs\ria\application\controllers\cashbook.php 1172
+ERROR - 2019-01-09 10:50:11 --> Severity: Notice --> Undefined variable: fa C:\xampp\htdocs\ria\application\controllers\cashbook.php 1172
+ERROR - 2019-01-09 10:50:11 --> Severity: Notice --> Undefined variable: aa C:\xampp\htdocs\ria\application\controllers\cashbook.php 1172
+ERROR - 2019-01-09 10:50:11 --> Severity: Notice --> Undefined variable: financialyear C:\xampp\htdocs\ria\application\views\bankstatement.php 2
+ERROR - 2019-01-09 10:50:11 --> Severity: Warning --> Invalid argument supplied for foreach() C:\xampp\htdocs\ria\application\views\bankstatement.php 2
+ERROR - 2019-01-09 10:50:11 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 85
+ERROR - 2019-01-09 10:50:11 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 85
+ERROR - 2019-01-09 10:50:11 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 86
+ERROR - 2019-01-09 10:50:11 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 86
+ERROR - 2019-01-09 10:50:12 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 87
+ERROR - 2019-01-09 10:50:12 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 87
+ERROR - 2019-01-09 10:50:12 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 137
+ERROR - 2019-01-09 10:50:12 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 137
+ERROR - 2019-01-09 10:50:12 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 138
+ERROR - 2019-01-09 10:50:12 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 138
+ERROR - 2019-01-09 10:50:12 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 139
+ERROR - 2019-01-09 10:50:12 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 139
+ERROR - 2019-01-09 10:52:59 --> Severity: Notice --> Undefined variable: financialyear C:\xampp\htdocs\ria\application\views\banksettlement.php 11
+ERROR - 2019-01-09 10:52:59 --> Severity: Warning --> Invalid argument supplied for foreach() C:\xampp\htdocs\ria\application\views\banksettlement.php 11
+ERROR - 2019-01-09 10:52:59 --> Severity: Notice --> Undefined variable: t C:\xampp\htdocs\ria\application\views\banksettlement.php 289
+ERROR - 2019-01-09 10:52:59 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\banksettlement.php 289
+ERROR - 2019-01-09 10:52:59 --> Severity: Notice --> Undefined variable: t C:\xampp\htdocs\ria\application\views\banksettlement.php 289
+ERROR - 2019-01-09 10:52:59 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\banksettlement.php 289
+ERROR - 2019-01-09 10:52:59 --> Severity: Notice --> Undefined variable: rel C:\xampp\htdocs\ria\application\views\banksettlement.php 290
+ERROR - 2019-01-09 10:52:59 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\banksettlement.php 290
+ERROR - 2019-01-09 10:52:59 --> Severity: Notice --> Undefined variable: record C:\xampp\htdocs\ria\application\views\banksettlement.php 345
+ERROR - 2019-01-09 10:52:59 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\banksettlement.php 345
+ERROR - 2019-01-09 10:52:59 --> Severity: Notice --> Undefined variable: t C:\xampp\htdocs\ria\application\views\banksettlement.php 289
+ERROR - 2019-01-09 10:52:59 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\banksettlement.php 289
+ERROR - 2019-01-09 10:52:59 --> Severity: Notice --> Undefined variable: t C:\xampp\htdocs\ria\application\views\banksettlement.php 289
+ERROR - 2019-01-09 10:52:59 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\banksettlement.php 289
+ERROR - 2019-01-09 10:53:00 --> Severity: Notice --> Undefined variable: rel C:\xampp\htdocs\ria\application\views\banksettlement.php 290
+ERROR - 2019-01-09 10:53:00 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\banksettlement.php 290
+ERROR - 2019-01-09 10:53:00 --> Severity: Notice --> Undefined variable: record C:\xampp\htdocs\ria\application\views\banksettlement.php 345
+ERROR - 2019-01-09 10:53:00 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\banksettlement.php 345
+ERROR - 2019-01-09 10:55:10 --> Severity: Notice --> Undefined variable: financialyear C:\xampp\htdocs\ria\application\views\banksettlement.php 11
+ERROR - 2019-01-09 10:55:10 --> Severity: Warning --> Invalid argument supplied for foreach() C:\xampp\htdocs\ria\application\views\banksettlement.php 11
+ERROR - 2019-01-09 10:55:11 --> Severity: Notice --> Undefined variable: t C:\xampp\htdocs\ria\application\views\banksettlement.php 289
+ERROR - 2019-01-09 10:55:11 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\banksettlement.php 289
+ERROR - 2019-01-09 10:55:11 --> Severity: Notice --> Undefined variable: t C:\xampp\htdocs\ria\application\views\banksettlement.php 289
+ERROR - 2019-01-09 10:55:11 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\banksettlement.php 289
+ERROR - 2019-01-09 10:55:11 --> Severity: Notice --> Undefined variable: rel C:\xampp\htdocs\ria\application\views\banksettlement.php 290
+ERROR - 2019-01-09 10:55:11 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\banksettlement.php 290
+ERROR - 2019-01-09 10:55:11 --> Severity: Notice --> Undefined variable: record C:\xampp\htdocs\ria\application\views\banksettlement.php 345
+ERROR - 2019-01-09 10:55:11 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\banksettlement.php 345
+ERROR - 2019-01-09 10:55:11 --> Severity: Notice --> Undefined variable: t C:\xampp\htdocs\ria\application\views\banksettlement.php 289
+ERROR - 2019-01-09 10:55:11 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\banksettlement.php 289
+ERROR - 2019-01-09 10:55:11 --> Severity: Notice --> Undefined variable: t C:\xampp\htdocs\ria\application\views\banksettlement.php 289
+ERROR - 2019-01-09 10:55:11 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\banksettlement.php 289
+ERROR - 2019-01-09 10:55:11 --> Severity: Notice --> Undefined variable: rel C:\xampp\htdocs\ria\application\views\banksettlement.php 290
+ERROR - 2019-01-09 10:55:11 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\banksettlement.php 290
+ERROR - 2019-01-09 10:55:11 --> Severity: Notice --> Undefined variable: record C:\xampp\htdocs\ria\application\views\banksettlement.php 345
+ERROR - 2019-01-09 10:55:11 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\banksettlement.php 345
+ERROR - 2019-01-09 10:55:55 --> Severity: Notice --> Undefined index: fa C:\xampp\htdocs\ria\application\controllers\cashbook.php 1636
+ERROR - 2019-01-09 10:55:55 --> Severity: Notice --> Undefined index: aa C:\xampp\htdocs\ria\application\controllers\cashbook.php 1637
+ERROR - 2019-01-09 10:55:55 --> Severity: Notice --> Undefined index: m C:\xampp\htdocs\ria\application\controllers\cashbook.php 1638
+ERROR - 2019-01-09 10:55:55 --> Severity: Notice --> Undefined index: fdate C:\xampp\htdocs\ria\application\controllers\cashbook.php 1639
+ERROR - 2019-01-09 10:55:55 --> Severity: Notice --> Undefined index: tdate C:\xampp\htdocs\ria\application\controllers\cashbook.php 1640
+ERROR - 2019-01-09 10:55:55 --> Severity: Notice --> Undefined index: sid C:\xampp\htdocs\ria\application\controllers\cashbook.php 1646
+ERROR - 2019-01-09 10:55:55 --> Severity: Notice --> Undefined index: sn C:\xampp\htdocs\ria\application\controllers\cashbook.php 1648
+ERROR - 2019-01-09 10:55:56 --> Severity: Notice --> Undefined variable: financialyear C:\xampp\htdocs\ria\application\views\bankamountpaid.php 10
+ERROR - 2019-01-09 10:55:56 --> Severity: Warning --> Invalid argument supplied for foreach() C:\xampp\htdocs\ria\application\views\bankamountpaid.php 10
+ERROR - 2019-01-09 10:56:04 --> Severity: Notice --> Undefined variable: financialyear C:\xampp\htdocs\ria\application\views\bankamountpaid.php 10
+ERROR - 2019-01-09 10:56:04 --> Severity: Warning --> Invalid argument supplied for foreach() C:\xampp\htdocs\ria\application\views\bankamountpaid.php 10
+ERROR - 2019-01-09 10:56:08 --> Severity: Notice --> Undefined variable: financialyear C:\xampp\htdocs\ria\application\views\bankamountpaid.php 10
+ERROR - 2019-01-09 10:56:08 --> Severity: Warning --> Invalid argument supplied for foreach() C:\xampp\htdocs\ria\application\views\bankamountpaid.php 10
+ERROR - 2019-01-09 11:05:21 --> Severity: Notice --> Undefined variable: financialyear C:\xampp\htdocs\ria\application\views\bankamountpaid.php 10
+ERROR - 2019-01-09 11:05:21 --> Severity: Warning --> Invalid argument supplied for foreach() C:\xampp\htdocs\ria\application\views\bankamountpaid.php 10
+ERROR - 2019-01-09 11:05:30 --> Severity: Notice --> Undefined variable: financialyear C:\xampp\htdocs\ria\application\views\bankamountpaid.php 10
+ERROR - 2019-01-09 11:05:30 --> Severity: Warning --> Invalid argument supplied for foreach() C:\xampp\htdocs\ria\application\views\bankamountpaid.php 10
+ERROR - 2019-01-09 11:08:20 --> Severity: Notice --> Undefined index: fa C:\xampp\htdocs\ria\application\controllers\cashbook.php 1636
+ERROR - 2019-01-09 11:08:20 --> Severity: Notice --> Undefined index: aa C:\xampp\htdocs\ria\application\controllers\cashbook.php 1637
+ERROR - 2019-01-09 11:08:20 --> Severity: Notice --> Undefined index: m C:\xampp\htdocs\ria\application\controllers\cashbook.php 1638
+ERROR - 2019-01-09 11:08:20 --> Severity: Notice --> Undefined index: fdate C:\xampp\htdocs\ria\application\controllers\cashbook.php 1639
+ERROR - 2019-01-09 11:08:20 --> Severity: Notice --> Undefined index: tdate C:\xampp\htdocs\ria\application\controllers\cashbook.php 1640
+ERROR - 2019-01-09 11:08:20 --> Severity: Notice --> Undefined index: sid C:\xampp\htdocs\ria\application\controllers\cashbook.php 1646
+ERROR - 2019-01-09 11:08:20 --> Severity: Notice --> Undefined index: sn C:\xampp\htdocs\ria\application\controllers\cashbook.php 1648
+ERROR - 2019-01-09 11:08:20 --> Severity: Notice --> Undefined variable: financialyear C:\xampp\htdocs\ria\application\views\bankamountpaid.php 10
+ERROR - 2019-01-09 11:08:20 --> Severity: Warning --> Invalid argument supplied for foreach() C:\xampp\htdocs\ria\application\views\bankamountpaid.php 10
+ERROR - 2019-01-09 11:08:34 --> Severity: Notice --> Undefined variable: financialyear C:\xampp\htdocs\ria\application\views\banksettlement.php 11
+ERROR - 2019-01-09 11:08:34 --> Severity: Warning --> Invalid argument supplied for foreach() C:\xampp\htdocs\ria\application\views\banksettlement.php 11
+ERROR - 2019-01-09 11:08:34 --> Severity: Notice --> Undefined variable: t C:\xampp\htdocs\ria\application\views\banksettlement.php 289
+ERROR - 2019-01-09 11:08:34 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\banksettlement.php 289
+ERROR - 2019-01-09 11:08:34 --> Severity: Notice --> Undefined variable: t C:\xampp\htdocs\ria\application\views\banksettlement.php 289
+ERROR - 2019-01-09 11:08:34 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\banksettlement.php 289
+ERROR - 2019-01-09 11:08:34 --> Severity: Notice --> Undefined variable: rel C:\xampp\htdocs\ria\application\views\banksettlement.php 290
+ERROR - 2019-01-09 11:08:34 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\banksettlement.php 290
+ERROR - 2019-01-09 11:08:34 --> Severity: Notice --> Undefined variable: record C:\xampp\htdocs\ria\application\views\banksettlement.php 345
+ERROR - 2019-01-09 11:08:34 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\banksettlement.php 345
+ERROR - 2019-01-09 11:08:34 --> Severity: Notice --> Undefined variable: t C:\xampp\htdocs\ria\application\views\banksettlement.php 289
+ERROR - 2019-01-09 11:08:34 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\banksettlement.php 289
+ERROR - 2019-01-09 11:08:34 --> Severity: Notice --> Undefined variable: t C:\xampp\htdocs\ria\application\views\banksettlement.php 289
+ERROR - 2019-01-09 11:08:35 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\banksettlement.php 289
+ERROR - 2019-01-09 11:08:35 --> Severity: Notice --> Undefined variable: rel C:\xampp\htdocs\ria\application\views\banksettlement.php 290
+ERROR - 2019-01-09 11:08:35 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\banksettlement.php 290
+ERROR - 2019-01-09 11:08:35 --> Severity: Notice --> Undefined variable: record C:\xampp\htdocs\ria\application\views\banksettlement.php 345
+ERROR - 2019-01-09 11:08:35 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\banksettlement.php 345
+ERROR - 2019-01-09 11:09:16 --> Severity: Notice --> Undefined variable: financialyear C:\xampp\htdocs\ria\application\views\bankunpaidsupp.php 2
+ERROR - 2019-01-09 11:09:16 --> Severity: Warning --> Invalid argument supplied for foreach() C:\xampp\htdocs\ria\application\views\bankunpaidsupp.php 2
+ERROR - 2019-01-09 11:09:16 --> Severity: Notice --> Undefined variable: t C:\xampp\htdocs\ria\application\views\bankunpaidsupp.php 110
+ERROR - 2019-01-09 11:09:16 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankunpaidsupp.php 110
+ERROR - 2019-01-09 11:09:16 --> Severity: Notice --> Undefined variable: fa C:\xampp\htdocs\ria\application\views\bankunpaidsupp.php 111
+ERROR - 2019-01-09 11:09:16 --> Severity: Notice --> Undefined variable: ta C:\xampp\htdocs\ria\application\views\bankunpaidsupp.php 112
+ERROR - 2019-01-09 11:09:16 --> Severity: Notice --> Undefined variable: m C:\xampp\htdocs\ria\application\views\bankunpaidsupp.php 113
+ERROR - 2019-01-09 11:09:16 --> Severity: Notice --> Undefined variable: fdate C:\xampp\htdocs\ria\application\views\bankunpaidsupp.php 114
+ERROR - 2019-01-09 11:09:16 --> Severity: Notice --> Undefined variable: tdate C:\xampp\htdocs\ria\application\views\bankunpaidsupp.php 115
+ERROR - 2019-01-09 11:15:00 --> Severity: Notice --> Undefined variable: financialyear C:\xampp\htdocs\ria\application\views\bankunpaidsupp.php 2
+ERROR - 2019-01-09 11:15:00 --> Severity: Warning --> Invalid argument supplied for foreach() C:\xampp\htdocs\ria\application\views\bankunpaidsupp.php 2
+ERROR - 2019-01-09 11:15:00 --> Severity: Notice --> Undefined variable: t C:\xampp\htdocs\ria\application\views\bankunpaidsupp.php 110
+ERROR - 2019-01-09 11:15:00 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankunpaidsupp.php 110
+ERROR - 2019-01-09 11:15:00 --> Severity: Notice --> Undefined variable: fa C:\xampp\htdocs\ria\application\views\bankunpaidsupp.php 111
+ERROR - 2019-01-09 11:15:00 --> Severity: Notice --> Undefined variable: ta C:\xampp\htdocs\ria\application\views\bankunpaidsupp.php 112
+ERROR - 2019-01-09 11:15:00 --> Severity: Notice --> Undefined variable: m C:\xampp\htdocs\ria\application\views\bankunpaidsupp.php 113
+ERROR - 2019-01-09 11:15:00 --> Severity: Notice --> Undefined variable: fdate C:\xampp\htdocs\ria\application\views\bankunpaidsupp.php 114
+ERROR - 2019-01-09 11:15:00 --> Severity: Notice --> Undefined variable: tdate C:\xampp\htdocs\ria\application\views\bankunpaidsupp.php 115
+ERROR - 2019-01-09 11:15:11 --> Severity: Notice --> Undefined variable: financialyear C:\xampp\htdocs\ria\application\views\bankunpaidsupp.php 2
+ERROR - 2019-01-09 11:15:11 --> Severity: Warning --> Invalid argument supplied for foreach() C:\xampp\htdocs\ria\application\views\bankunpaidsupp.php 2
+ERROR - 2019-01-09 11:15:11 --> Severity: Notice --> Undefined variable: t C:\xampp\htdocs\ria\application\views\bankunpaidsupp.php 110
+ERROR - 2019-01-09 11:15:11 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankunpaidsupp.php 110
+ERROR - 2019-01-09 11:15:11 --> Severity: Notice --> Undefined variable: ta C:\xampp\htdocs\ria\application\views\bankunpaidsupp.php 112
+ERROR - 2019-01-09 11:15:11 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankunpaidsupp.php 200
+ERROR - 2019-01-09 11:15:11 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankunpaidsupp.php 201
+ERROR - 2019-01-09 11:15:12 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\ria\application\views\bankunpaidsupp.php 202
+ERROR - 2019-01-09 11:15:12 --> Severity: Notice --> Undefined property: stdClass::$SupplierID C:\xampp\htdocs\ria\application\views\bankunpaidsupp.php 204
+ERROR - 2019-01-09 11:15:12 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankunpaidsupp.php 214
+ERROR - 2019-01-09 11:15:12 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankunpaidsupp.php 215
+ERROR - 2019-01-09 11:15:12 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankunpaidsupp.php 221
+ERROR - 2019-01-09 11:15:12 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankunpaidsupp.php 200
+ERROR - 2019-01-09 11:15:12 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankunpaidsupp.php 201
+ERROR - 2019-01-09 11:15:12 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\ria\application\views\bankunpaidsupp.php 202
+ERROR - 2019-01-09 11:15:12 --> Severity: Notice --> Undefined property: stdClass::$SupplierID C:\xampp\htdocs\ria\application\views\bankunpaidsupp.php 204
+ERROR - 2019-01-09 11:15:12 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankunpaidsupp.php 200
+ERROR - 2019-01-09 11:15:12 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankunpaidsupp.php 201
+ERROR - 2019-01-09 11:15:12 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\ria\application\views\bankunpaidsupp.php 202
+ERROR - 2019-01-09 11:15:12 --> Severity: Notice --> Undefined property: stdClass::$SupplierID C:\xampp\htdocs\ria\application\views\bankunpaidsupp.php 204
+ERROR - 2019-01-09 11:15:52 --> Severity: Notice --> Undefined variable: financialyear C:\xampp\htdocs\ria\application\views\bankunpaidsupp.php 2
+ERROR - 2019-01-09 11:15:52 --> Severity: Warning --> Invalid argument supplied for foreach() C:\xampp\htdocs\ria\application\views\bankunpaidsupp.php 2
+ERROR - 2019-01-09 11:15:52 --> Severity: Notice --> Undefined variable: t C:\xampp\htdocs\ria\application\views\bankunpaidsupp.php 110
+ERROR - 2019-01-09 11:15:52 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankunpaidsupp.php 110
+ERROR - 2019-01-09 11:15:52 --> Severity: Notice --> Undefined variable: ta C:\xampp\htdocs\ria\application\views\bankunpaidsupp.php 112
+ERROR - 2019-01-09 11:16:04 --> Severity: Notice --> Undefined variable: financialyear C:\xampp\htdocs\ria\application\views\bankunpaidsupp.php 2
+ERROR - 2019-01-09 11:16:04 --> Severity: Warning --> Invalid argument supplied for foreach() C:\xampp\htdocs\ria\application\views\bankunpaidsupp.php 2
+ERROR - 2019-01-09 11:16:04 --> Severity: Notice --> Undefined variable: t C:\xampp\htdocs\ria\application\views\bankunpaidsupp.php 110
+ERROR - 2019-01-09 11:16:04 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankunpaidsupp.php 110
+ERROR - 2019-01-09 11:16:04 --> Severity: Notice --> Undefined variable: ta C:\xampp\htdocs\ria\application\views\bankunpaidsupp.php 112
+ERROR - 2019-01-09 11:16:33 --> Severity: Notice --> Undefined variable: financialyear C:\xampp\htdocs\ria\application\views\bankunpaidsupp.php 2
+ERROR - 2019-01-09 11:16:33 --> Severity: Warning --> Invalid argument supplied for foreach() C:\xampp\htdocs\ria\application\views\bankunpaidsupp.php 2
+ERROR - 2019-01-09 11:16:33 --> Severity: Notice --> Undefined variable: t C:\xampp\htdocs\ria\application\views\bankunpaidsupp.php 110
+ERROR - 2019-01-09 11:16:33 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankunpaidsupp.php 110
+ERROR - 2019-01-09 11:16:33 --> Severity: Notice --> Undefined variable: ta C:\xampp\htdocs\ria\application\views\bankunpaidsupp.php 112
+ERROR - 2019-01-09 11:16:45 --> Severity: Notice --> Undefined variable: financialyear C:\xampp\htdocs\ria\application\views\bankunpaidsupp.php 2
+ERROR - 2019-01-09 11:16:45 --> Severity: Warning --> Invalid argument supplied for foreach() C:\xampp\htdocs\ria\application\views\bankunpaidsupp.php 2
+ERROR - 2019-01-09 11:16:45 --> Severity: Notice --> Undefined variable: t C:\xampp\htdocs\ria\application\views\bankunpaidsupp.php 110
+ERROR - 2019-01-09 11:16:46 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankunpaidsupp.php 110
+ERROR - 2019-01-09 11:16:46 --> Severity: Notice --> Undefined variable: ta C:\xampp\htdocs\ria\application\views\bankunpaidsupp.php 112
+ERROR - 2019-01-09 11:16:46 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankunpaidsupp.php 200
+ERROR - 2019-01-09 11:16:46 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankunpaidsupp.php 201
+ERROR - 2019-01-09 11:16:46 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\ria\application\views\bankunpaidsupp.php 202
+ERROR - 2019-01-09 11:16:46 --> Severity: Notice --> Undefined property: stdClass::$SupplierID C:\xampp\htdocs\ria\application\views\bankunpaidsupp.php 204
+ERROR - 2019-01-09 11:16:46 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankunpaidsupp.php 214
+ERROR - 2019-01-09 11:16:46 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankunpaidsupp.php 215
+ERROR - 2019-01-09 11:16:46 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankunpaidsupp.php 221
+ERROR - 2019-01-09 11:16:46 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankunpaidsupp.php 200
+ERROR - 2019-01-09 11:16:46 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankunpaidsupp.php 201
+ERROR - 2019-01-09 11:16:46 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\ria\application\views\bankunpaidsupp.php 202
+ERROR - 2019-01-09 11:16:46 --> Severity: Notice --> Undefined property: stdClass::$SupplierID C:\xampp\htdocs\ria\application\views\bankunpaidsupp.php 204
+ERROR - 2019-01-09 11:16:46 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankunpaidsupp.php 200
+ERROR - 2019-01-09 11:16:46 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankunpaidsupp.php 201
+ERROR - 2019-01-09 11:16:46 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\ria\application\views\bankunpaidsupp.php 202
+ERROR - 2019-01-09 11:16:46 --> Severity: Notice --> Undefined property: stdClass::$SupplierID C:\xampp\htdocs\ria\application\views\bankunpaidsupp.php 204
+ERROR - 2019-01-09 11:16:56 --> Severity: Notice --> Undefined variable: financialyear C:\xampp\htdocs\ria\application\views\bankamountunpaid.php 2
+ERROR - 2019-01-09 11:16:56 --> Severity: Warning --> Invalid argument supplied for foreach() C:\xampp\htdocs\ria\application\views\bankamountunpaid.php 2
+ERROR - 2019-01-09 11:16:56 --> Severity: Notice --> Undefined variable: t C:\xampp\htdocs\ria\application\views\bankamountunpaid.php 103
+ERROR - 2019-01-09 11:16:56 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankamountunpaid.php 103
+ERROR - 2019-01-09 11:16:56 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankamountunpaid.php 268
+ERROR - 2019-01-09 11:16:56 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankamountunpaid.php 269
+ERROR - 2019-01-09 11:16:56 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\ria\application\views\bankamountunpaid.php 270
+ERROR - 2019-01-09 11:16:56 --> Severity: Notice --> Undefined property: stdClass::$DeliveryChellanOrInvoiceNo C:\xampp\htdocs\ria\application\views\bankamountunpaid.php 279
+ERROR - 2019-01-09 11:16:56 --> Severity: Notice --> Undefined property: stdClass::$IGRItemNo C:\xampp\htdocs\ria\application\views\bankamountunpaid.php 300
+ERROR - 2019-01-09 11:16:56 --> Severity: Notice --> Undefined property: stdClass::$iwFpath C:\xampp\htdocs\ria\application\views\bankamountunpaid.php 304
+ERROR - 2019-01-09 11:16:56 --> Severity: Notice --> Undefined property: stdClass::$poFilePath C:\xampp\htdocs\ria\application\views\bankamountunpaid.php 319
+ERROR - 2019-01-09 11:16:56 --> Severity: Notice --> Undefined property: stdClass::$days C:\xampp\htdocs\ria\application\views\bankamountunpaid.php 342
+ERROR - 2019-01-09 11:24:43 --> Severity: Notice --> Undefined variable: financialyear C:\xampp\htdocs\ria\application\views\bankamountunpaid.php 2
+ERROR - 2019-01-09 11:24:43 --> Severity: Warning --> Invalid argument supplied for foreach() C:\xampp\htdocs\ria\application\views\bankamountunpaid.php 2
+ERROR - 2019-01-09 11:24:43 --> Severity: Notice --> Undefined variable: t C:\xampp\htdocs\ria\application\views\bankamountunpaid.php 103
+ERROR - 2019-01-09 11:24:43 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankamountunpaid.php 103
+ERROR - 2019-01-09 11:24:43 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankamountunpaid.php 268
+ERROR - 2019-01-09 11:24:43 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankamountunpaid.php 269
+ERROR - 2019-01-09 11:24:44 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\ria\application\views\bankamountunpaid.php 270
+ERROR - 2019-01-09 11:24:44 --> Severity: Notice --> Undefined property: stdClass::$DeliveryChellanOrInvoiceNo C:\xampp\htdocs\ria\application\views\bankamountunpaid.php 279
+ERROR - 2019-01-09 11:24:44 --> Severity: Notice --> Undefined property: stdClass::$IGRItemNo C:\xampp\htdocs\ria\application\views\bankamountunpaid.php 300
+ERROR - 2019-01-09 11:24:44 --> Severity: Notice --> Undefined property: stdClass::$iwFpath C:\xampp\htdocs\ria\application\views\bankamountunpaid.php 304
+ERROR - 2019-01-09 11:24:44 --> Severity: Notice --> Undefined property: stdClass::$poFilePath C:\xampp\htdocs\ria\application\views\bankamountunpaid.php 319
+ERROR - 2019-01-09 11:24:44 --> Severity: Notice --> Undefined property: stdClass::$days C:\xampp\htdocs\ria\application\views\bankamountunpaid.php 342
+ERROR - 2019-01-09 11:25:30 --> Severity: Notice --> Undefined variable: financialyear C:\xampp\htdocs\ria\application\views\bankamountunpaid.php 2
+ERROR - 2019-01-09 11:25:30 --> Severity: Warning --> Invalid argument supplied for foreach() C:\xampp\htdocs\ria\application\views\bankamountunpaid.php 2
+ERROR - 2019-01-09 11:25:30 --> Severity: Notice --> Undefined variable: t C:\xampp\htdocs\ria\application\views\bankamountunpaid.php 103
+ERROR - 2019-01-09 11:25:30 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankamountunpaid.php 103
+ERROR - 2019-01-09 11:25:30 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankamountunpaid.php 268
+ERROR - 2019-01-09 11:25:30 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankamountunpaid.php 269
+ERROR - 2019-01-09 11:25:30 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\ria\application\views\bankamountunpaid.php 270
+ERROR - 2019-01-09 11:25:30 --> Severity: Notice --> Undefined property: stdClass::$DeliveryChellanOrInvoiceNo C:\xampp\htdocs\ria\application\views\bankamountunpaid.php 279
+ERROR - 2019-01-09 11:25:30 --> Severity: Notice --> Undefined property: stdClass::$IGRItemNo C:\xampp\htdocs\ria\application\views\bankamountunpaid.php 300
+ERROR - 2019-01-09 11:25:30 --> Severity: Notice --> Undefined property: stdClass::$iwFpath C:\xampp\htdocs\ria\application\views\bankamountunpaid.php 304
+ERROR - 2019-01-09 11:25:30 --> Severity: Notice --> Undefined property: stdClass::$poFilePath C:\xampp\htdocs\ria\application\views\bankamountunpaid.php 319
+ERROR - 2019-01-09 11:25:30 --> Severity: Notice --> Undefined property: stdClass::$days C:\xampp\htdocs\ria\application\views\bankamountunpaid.php 342
+ERROR - 2019-01-09 11:27:29 --> Severity: Notice --> Undefined variable: financialyear C:\xampp\htdocs\ria\application\views\bankamountunpaid.php 2
+ERROR - 2019-01-09 11:27:29 --> Severity: Warning --> Invalid argument supplied for foreach() C:\xampp\htdocs\ria\application\views\bankamountunpaid.php 2
+ERROR - 2019-01-09 11:27:29 --> Severity: Notice --> Undefined variable: t C:\xampp\htdocs\ria\application\views\bankamountunpaid.php 103
+ERROR - 2019-01-09 11:27:29 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankamountunpaid.php 103
+ERROR - 2019-01-09 11:27:29 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankamountunpaid.php 268
+ERROR - 2019-01-09 11:27:29 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankamountunpaid.php 269
+ERROR - 2019-01-09 11:27:29 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\ria\application\views\bankamountunpaid.php 270
+ERROR - 2019-01-09 11:27:29 --> Severity: Notice --> Undefined property: stdClass::$DeliveryChellanOrInvoiceNo C:\xampp\htdocs\ria\application\views\bankamountunpaid.php 279
+ERROR - 2019-01-09 11:27:29 --> Severity: Notice --> Undefined property: stdClass::$IGRItemNo C:\xampp\htdocs\ria\application\views\bankamountunpaid.php 300
+ERROR - 2019-01-09 11:27:29 --> Severity: Notice --> Undefined property: stdClass::$iwFpath C:\xampp\htdocs\ria\application\views\bankamountunpaid.php 304
+ERROR - 2019-01-09 11:27:29 --> Severity: Notice --> Undefined property: stdClass::$poFilePath C:\xampp\htdocs\ria\application\views\bankamountunpaid.php 319
+ERROR - 2019-01-09 11:27:29 --> Severity: Notice --> Undefined property: stdClass::$days C:\xampp\htdocs\ria\application\views\bankamountunpaid.php 342
+ERROR - 2019-01-09 11:27:43 --> Severity: Notice --> Undefined variable: financialyear C:\xampp\htdocs\ria\application\views\bankunpaidsupp.php 2
+ERROR - 2019-01-09 11:27:43 --> Severity: Warning --> Invalid argument supplied for foreach() C:\xampp\htdocs\ria\application\views\bankunpaidsupp.php 2
+ERROR - 2019-01-09 11:27:43 --> Severity: Notice --> Undefined variable: t C:\xampp\htdocs\ria\application\views\bankunpaidsupp.php 110
+ERROR - 2019-01-09 11:27:43 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankunpaidsupp.php 110
+ERROR - 2019-01-09 11:27:43 --> Severity: Notice --> Undefined variable: fa C:\xampp\htdocs\ria\application\views\bankunpaidsupp.php 111
+ERROR - 2019-01-09 11:27:43 --> Severity: Notice --> Undefined variable: ta C:\xampp\htdocs\ria\application\views\bankunpaidsupp.php 112
+ERROR - 2019-01-09 11:27:43 --> Severity: Notice --> Undefined variable: m C:\xampp\htdocs\ria\application\views\bankunpaidsupp.php 113
+ERROR - 2019-01-09 11:27:43 --> Severity: Notice --> Undefined variable: fdate C:\xampp\htdocs\ria\application\views\bankunpaidsupp.php 114
+ERROR - 2019-01-09 11:27:43 --> Severity: Notice --> Undefined variable: tdate C:\xampp\htdocs\ria\application\views\bankunpaidsupp.php 115
+ERROR - 2019-01-09 11:28:17 --> Severity: Notice --> Use of undefined constant ST066 - assumed 'ST066' C:\xampp\htdocs\ria\application\models\cashbook_model.php 1766
+ERROR - 2019-01-09 11:28:18 --> Severity: Notice --> Undefined variable: financialyear C:\xampp\htdocs\ria\application\views\bankreceivedsupp.php 2
+ERROR - 2019-01-09 11:28:18 --> Severity: Warning --> Invalid argument supplied for foreach() C:\xampp\htdocs\ria\application\views\bankreceivedsupp.php 2
+ERROR - 2019-01-09 11:31:38 --> Severity: Notice --> Use of undefined constant ST066 - assumed 'ST066' C:\xampp\htdocs\ria\application\models\cashbook_model.php 1766
+ERROR - 2019-01-09 11:31:38 --> Severity: Notice --> Undefined variable: financialyear C:\xampp\htdocs\ria\application\views\bankreceivedsupp.php 2
+ERROR - 2019-01-09 11:31:38 --> Severity: Warning --> Invalid argument supplied for foreach() C:\xampp\htdocs\ria\application\views\bankreceivedsupp.php 2
+ERROR - 2019-01-09 11:37:21 --> Severity: Notice --> Undefined variable: fdate C:\xampp\htdocs\ria\application\controllers\cashbook.php 1172
+ERROR - 2019-01-09 11:37:22 --> Severity: Notice --> Undefined variable: tdate C:\xampp\htdocs\ria\application\controllers\cashbook.php 1172
+ERROR - 2019-01-09 11:37:22 --> Severity: Notice --> Undefined variable: fa C:\xampp\htdocs\ria\application\controllers\cashbook.php 1172
+ERROR - 2019-01-09 11:37:22 --> Severity: Notice --> Undefined variable: aa C:\xampp\htdocs\ria\application\controllers\cashbook.php 1172
+ERROR - 2019-01-09 11:37:22 --> Severity: Notice --> Undefined variable: financialyear C:\xampp\htdocs\ria\application\views\bankstatement.php 2
+ERROR - 2019-01-09 11:37:22 --> Severity: Warning --> Invalid argument supplied for foreach() C:\xampp\htdocs\ria\application\views\bankstatement.php 2
+ERROR - 2019-01-09 11:37:22 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 85
+ERROR - 2019-01-09 11:37:22 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 85
+ERROR - 2019-01-09 11:37:22 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 86
+ERROR - 2019-01-09 11:37:22 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 86
+ERROR - 2019-01-09 11:37:22 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 87
+ERROR - 2019-01-09 11:37:22 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 87
+ERROR - 2019-01-09 11:37:22 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 137
+ERROR - 2019-01-09 11:37:22 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 137
+ERROR - 2019-01-09 11:37:22 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 138
+ERROR - 2019-01-09 11:37:22 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 138
+ERROR - 2019-01-09 11:37:22 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 139
+ERROR - 2019-01-09 11:37:22 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 139
+ERROR - 2019-01-09 11:37:58 --> Severity: Notice --> Undefined variable: fdate C:\xampp\htdocs\ria\application\controllers\cashbook.php 1172
+ERROR - 2019-01-09 11:37:58 --> Severity: Notice --> Undefined variable: tdate C:\xampp\htdocs\ria\application\controllers\cashbook.php 1172
+ERROR - 2019-01-09 11:37:58 --> Severity: Notice --> Undefined variable: fa C:\xampp\htdocs\ria\application\controllers\cashbook.php 1172
+ERROR - 2019-01-09 11:37:58 --> Severity: Notice --> Undefined variable: aa C:\xampp\htdocs\ria\application\controllers\cashbook.php 1172
+ERROR - 2019-01-09 11:37:59 --> Severity: Notice --> Undefined variable: financialyear C:\xampp\htdocs\ria\application\views\bankstatement.php 2
+ERROR - 2019-01-09 11:37:59 --> Severity: Warning --> Invalid argument supplied for foreach() C:\xampp\htdocs\ria\application\views\bankstatement.php 2
+ERROR - 2019-01-09 11:37:59 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 85
+ERROR - 2019-01-09 11:37:59 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 85
+ERROR - 2019-01-09 11:37:59 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 86
+ERROR - 2019-01-09 11:37:59 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 86
+ERROR - 2019-01-09 11:37:59 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 87
+ERROR - 2019-01-09 11:37:59 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 87
+ERROR - 2019-01-09 11:37:59 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 137
+ERROR - 2019-01-09 11:37:59 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 137
+ERROR - 2019-01-09 11:37:59 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 138
+ERROR - 2019-01-09 11:38:00 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 138
+ERROR - 2019-01-09 11:38:00 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 139
+ERROR - 2019-01-09 11:38:00 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 139
+ERROR - 2019-01-09 11:38:19 --> Severity: Notice --> Undefined variable: financialyear C:\xampp\htdocs\ria\application\views\bankunpaidsupp.php 2
+ERROR - 2019-01-09 11:38:19 --> Severity: Warning --> Invalid argument supplied for foreach() C:\xampp\htdocs\ria\application\views\bankunpaidsupp.php 2
+ERROR - 2019-01-09 11:38:19 --> Severity: Notice --> Undefined variable: t C:\xampp\htdocs\ria\application\views\bankunpaidsupp.php 110
+ERROR - 2019-01-09 11:38:19 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankunpaidsupp.php 110
+ERROR - 2019-01-09 11:38:19 --> Severity: Notice --> Undefined variable: fa C:\xampp\htdocs\ria\application\views\bankunpaidsupp.php 111
+ERROR - 2019-01-09 11:38:19 --> Severity: Notice --> Undefined variable: ta C:\xampp\htdocs\ria\application\views\bankunpaidsupp.php 112
+ERROR - 2019-01-09 11:38:19 --> Severity: Notice --> Undefined variable: m C:\xampp\htdocs\ria\application\views\bankunpaidsupp.php 113
+ERROR - 2019-01-09 11:38:20 --> Severity: Notice --> Undefined variable: fdate C:\xampp\htdocs\ria\application\views\bankunpaidsupp.php 114
+ERROR - 2019-01-09 11:38:20 --> Severity: Notice --> Undefined variable: tdate C:\xampp\htdocs\ria\application\views\bankunpaidsupp.php 115
+ERROR - 2019-01-09 11:38:29 --> Severity: Notice --> Undefined variable: financialyear C:\xampp\htdocs\ria\application\views\bankunpaidsupp.php 2
+ERROR - 2019-01-09 11:38:29 --> Severity: Warning --> Invalid argument supplied for foreach() C:\xampp\htdocs\ria\application\views\bankunpaidsupp.php 2
+ERROR - 2019-01-09 11:38:29 --> Severity: Notice --> Undefined variable: t C:\xampp\htdocs\ria\application\views\bankunpaidsupp.php 110
+ERROR - 2019-01-09 11:38:29 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankunpaidsupp.php 110
+ERROR - 2019-01-09 11:38:29 --> Severity: Notice --> Undefined variable: ta C:\xampp\htdocs\ria\application\views\bankunpaidsupp.php 112
+ERROR - 2019-01-09 11:38:29 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankunpaidsupp.php 200
+ERROR - 2019-01-09 11:38:29 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankunpaidsupp.php 201
+ERROR - 2019-01-09 11:38:29 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\ria\application\views\bankunpaidsupp.php 202
+ERROR - 2019-01-09 11:38:29 --> Severity: Notice --> Undefined property: stdClass::$SupplierID C:\xampp\htdocs\ria\application\views\bankunpaidsupp.php 204
+ERROR - 2019-01-09 11:38:29 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankunpaidsupp.php 214
+ERROR - 2019-01-09 11:38:29 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankunpaidsupp.php 215
+ERROR - 2019-01-09 11:38:29 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankunpaidsupp.php 221
+ERROR - 2019-01-09 11:38:29 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankunpaidsupp.php 200
+ERROR - 2019-01-09 11:38:29 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankunpaidsupp.php 201
+ERROR - 2019-01-09 11:38:30 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\ria\application\views\bankunpaidsupp.php 202
+ERROR - 2019-01-09 11:38:30 --> Severity: Notice --> Undefined property: stdClass::$SupplierID C:\xampp\htdocs\ria\application\views\bankunpaidsupp.php 204
+ERROR - 2019-01-09 11:38:30 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankunpaidsupp.php 200
+ERROR - 2019-01-09 11:38:30 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankunpaidsupp.php 201
+ERROR - 2019-01-09 11:38:30 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\ria\application\views\bankunpaidsupp.php 202
+ERROR - 2019-01-09 11:38:30 --> Severity: Notice --> Undefined property: stdClass::$SupplierID C:\xampp\htdocs\ria\application\views\bankunpaidsupp.php 204
+ERROR - 2019-01-09 11:38:53 --> Severity: Notice --> Use of undefined constant ST066 - assumed 'ST066' C:\xampp\htdocs\ria\application\models\cashbook_model.php 1766
+ERROR - 2019-01-09 11:38:54 --> Severity: Notice --> Undefined variable: financialyear C:\xampp\htdocs\ria\application\views\bankreceivedsupp.php 2
+ERROR - 2019-01-09 11:38:54 --> Severity: Warning --> Invalid argument supplied for foreach() C:\xampp\htdocs\ria\application\views\bankreceivedsupp.php 2
+ERROR - 2019-01-09 11:39:03 --> Severity: Notice --> Use of undefined constant ST066 - assumed 'ST066' C:\xampp\htdocs\ria\application\models\cashbook_model.php 1766
+ERROR - 2019-01-09 11:39:04 --> Severity: Notice --> Undefined variable: financialyear C:\xampp\htdocs\ria\application\views\bankreceivedsupp.php 2
+ERROR - 2019-01-09 11:39:04 --> Severity: Warning --> Invalid argument supplied for foreach() C:\xampp\htdocs\ria\application\views\bankreceivedsupp.php 2
+ERROR - 2019-01-09 11:39:04 --> Severity: Notice --> Use of undefined constant ST066 - assumed 'ST066' C:\xampp\htdocs\ria\application\models\cashbook_model.php 1766
+ERROR - 2019-01-09 11:39:04 --> Severity: Notice --> Use of undefined constant ST066 - assumed 'ST066' C:\xampp\htdocs\ria\application\models\cashbook_model.php 1766
+ERROR - 2019-01-09 11:39:04 --> Severity: Notice --> Use of undefined constant ST066 - assumed 'ST066' C:\xampp\htdocs\ria\application\models\cashbook_model.php 1766
+ERROR - 2019-01-09 11:39:04 --> Severity: Notice --> Undefined variable: financialyear C:\xampp\htdocs\ria\application\views\bankreceivedsupp.php 2
+ERROR - 2019-01-09 11:39:04 --> Severity: Notice --> Undefined variable: financialyear C:\xampp\htdocs\ria\application\views\bankreceivedsupp.php 2
+ERROR - 2019-01-09 11:39:04 --> Severity: Warning --> Invalid argument supplied for foreach() C:\xampp\htdocs\ria\application\views\bankreceivedsupp.php 2
+ERROR - 2019-01-09 11:39:04 --> Severity: Warning --> Invalid argument supplied for foreach() C:\xampp\htdocs\ria\application\views\bankreceivedsupp.php 2
+ERROR - 2019-01-09 11:39:05 --> Severity: Notice --> Use of undefined constant ST066 - assumed 'ST066' C:\xampp\htdocs\ria\application\models\cashbook_model.php 1766
+ERROR - 2019-01-09 11:39:05 --> Severity: Notice --> Undefined variable: financialyear C:\xampp\htdocs\ria\application\views\bankreceivedsupp.php 2
+ERROR - 2019-01-09 11:39:05 --> Severity: Warning --> Invalid argument supplied for foreach() C:\xampp\htdocs\ria\application\views\bankreceivedsupp.php 2
+ERROR - 2019-01-09 11:39:05 --> Severity: Notice --> Use of undefined constant ST066 - assumed 'ST066' C:\xampp\htdocs\ria\application\models\cashbook_model.php 1766
+ERROR - 2019-01-09 11:39:05 --> Severity: Notice --> Use of undefined constant ST066 - assumed 'ST066' C:\xampp\htdocs\ria\application\models\cashbook_model.php 1766
+ERROR - 2019-01-09 11:39:05 --> Severity: Notice --> Undefined variable: financialyear C:\xampp\htdocs\ria\application\views\bankreceivedsupp.php 2
+ERROR - 2019-01-09 11:39:05 --> Severity: Warning --> Invalid argument supplied for foreach() C:\xampp\htdocs\ria\application\views\bankreceivedsupp.php 2
+ERROR - 2019-01-09 11:39:05 --> Severity: Notice --> Undefined variable: financialyear C:\xampp\htdocs\ria\application\views\bankreceivedsupp.php 2
+ERROR - 2019-01-09 11:39:05 --> Severity: Warning --> Invalid argument supplied for foreach() C:\xampp\htdocs\ria\application\views\bankreceivedsupp.php 2
+ERROR - 2019-01-09 11:39:05 --> Severity: Notice --> Undefined variable: financialyear C:\xampp\htdocs\ria\application\views\bankreceivedsupp.php 2
+ERROR - 2019-01-09 11:39:05 --> Severity: Warning --> Invalid argument supplied for foreach() C:\xampp\htdocs\ria\application\views\bankreceivedsupp.php 2
+ERROR - 2019-01-09 11:39:57 --> Severity: Notice --> Use of undefined constant ST066 - assumed 'ST066' C:\xampp\htdocs\ria\application\models\cashbook_model.php 1766
+ERROR - 2019-01-09 11:39:58 --> Severity: Notice --> Undefined variable: financialyear C:\xampp\htdocs\ria\application\views\bankreceivedsupp.php 2
+ERROR - 2019-01-09 11:39:58 --> Severity: Warning --> Invalid argument supplied for foreach() C:\xampp\htdocs\ria\application\views\bankreceivedsupp.php 2
+ERROR - 2019-01-09 11:40:33 --> Severity: Notice --> Use of undefined constant ST066 - assumed 'ST066' C:\xampp\htdocs\ria\application\models\cashbook_model.php 1766
+ERROR - 2019-01-09 11:40:33 --> Severity: Notice --> Undefined variable: financialyear C:\xampp\htdocs\ria\application\views\bankreceivedsupp.php 2
+ERROR - 2019-01-09 11:40:33 --> Severity: Warning --> Invalid argument supplied for foreach() C:\xampp\htdocs\ria\application\views\bankreceivedsupp.php 2
+ERROR - 2019-01-09 11:40:42 --> Severity: Notice --> Use of undefined constant ST066 - assumed 'ST066' C:\xampp\htdocs\ria\application\models\cashbook_model.php 1779
+ERROR - 2019-01-09 11:40:43 --> Severity: Notice --> Undefined variable: financialyear C:\xampp\htdocs\ria\application\views\bankreceivedsupp.php 2
+ERROR - 2019-01-09 11:40:43 --> Severity: Warning --> Invalid argument supplied for foreach() C:\xampp\htdocs\ria\application\views\bankreceivedsupp.php 2
+ERROR - 2019-01-09 11:41:16 --> Severity: Notice --> Use of undefined constant ST066 - assumed 'ST066' C:\xampp\htdocs\ria\application\models\cashbook_model.php 1851
+ERROR - 2019-01-09 11:43:45 --> Severity: Notice --> Use of undefined constant ST066 - assumed 'ST066' C:\xampp\htdocs\ria\application\models\cashbook_model.php 1851
+ERROR - 2019-01-09 11:44:00 --> Severity: Notice --> Use of undefined constant ST066 - assumed 'ST066' C:\xampp\htdocs\ria\application\models\cashbook_model.php 1868
+ERROR - 2019-01-09 11:44:21 --> Severity: Notice --> Undefined variable: openingbalance C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 6
+ERROR - 2019-01-09 11:44:21 --> Severity: Warning --> Invalid argument supplied for foreach() C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 6
+ERROR - 2019-01-09 11:44:21 --> Severity: Notice --> Undefined variable: financialyear C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 10
+ERROR - 2019-01-09 11:44:21 --> Severity: Warning --> Invalid argument supplied for foreach() C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 10
+ERROR - 2019-01-09 11:44:21 --> Severity: Notice --> Undefined variable: customerledger C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 138
+ERROR - 2019-01-09 11:44:21 --> Severity: Warning --> Invalid argument supplied for foreach() C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 138
+ERROR - 2019-01-09 11:44:21 --> Severity: Notice --> Undefined variable: clientname C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 143
+ERROR - 2019-01-09 11:44:21 --> Severity: Notice --> Undefined variable: tot_amount C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 144
+ERROR - 2019-01-09 11:44:21 --> Severity: Notice --> Undefined variable: supplierid C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 148
+ERROR - 2019-01-09 11:44:21 --> Severity: Notice --> Undefined variable: suppliername C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 149
+ERROR - 2019-01-09 11:44:27 --> Severity: Notice --> Undefined variable: suppliername C:\xampp\htdocs\ria\application\controllers\cashbook.php 1910
+ERROR - 2019-01-09 11:44:27 --> Severity: Notice --> Undefined variable: Customer C:\xampp\htdocs\ria\application\controllers\cashbook.php 1916
+ERROR - 2019-01-09 11:44:28 --> Severity: Notice --> Undefined variable: financialyear C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 10
+ERROR - 2019-01-09 11:44:28 --> Severity: Warning --> Invalid argument supplied for foreach() C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 10
+ERROR - 2019-01-09 11:44:28 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:44:28 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:44:28 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:44:28 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:44:28 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:44:28 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:44:28 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:44:28 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:44:29 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:44:29 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:44:29 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:44:29 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:44:29 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:44:29 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:44:29 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:44:29 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:44:29 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:44:29 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:44:29 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:44:29 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:44:29 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:44:29 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:44:29 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:44:29 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:44:29 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:44:29 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:44:29 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:44:29 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:44:29 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:44:29 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:44:30 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:44:30 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:44:30 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:44:30 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:44:30 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:44:30 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:44:30 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:44:30 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:44:30 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:44:30 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:44:30 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:44:30 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:44:30 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:44:30 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:44:30 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:44:30 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:44:30 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:44:30 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:44:30 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:44:30 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:44:30 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:44:30 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:44:31 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:44:31 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:44:31 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:44:31 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:44:31 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:44:31 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:44:31 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:44:31 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:44:31 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:44:31 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:44:31 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:44:31 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:44:31 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:44:31 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:44:31 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:44:31 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:44:31 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:44:31 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:44:31 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:44:31 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:44:31 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:44:31 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:44:32 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:44:32 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:44:32 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:44:32 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:44:32 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:44:32 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:44:32 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:44:32 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:44:32 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:44:32 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:44:32 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:44:32 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:44:32 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:44:32 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:44:32 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:44:32 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:44:32 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:44:32 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:44:32 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:44:32 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:44:32 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:44:32 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:44:33 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:44:33 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:44:33 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:44:33 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:44:33 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:44:33 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:44:33 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:44:33 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:44:33 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:44:33 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:44:33 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:44:33 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:44:33 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:44:33 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:44:33 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:44:33 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:44:33 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:44:33 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:44:33 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:44:33 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:44:33 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:44:33 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:44:34 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:44:34 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:44:34 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:44:34 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:44:34 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:44:34 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:44:34 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:44:34 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:44:34 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:44:34 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:44:34 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:44:34 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:44:34 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:44:34 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:44:34 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:44:34 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:44:34 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:44:34 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:44:35 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:44:35 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:44:35 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:44:35 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:44:35 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:44:35 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:44:35 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:44:35 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:44:35 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:44:35 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:44:35 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:44:35 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:44:35 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:44:35 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:44:35 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:44:35 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:44:35 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:44:35 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:44:35 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:44:35 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:44:35 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:44:35 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:44:36 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:44:36 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:44:36 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:44:36 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:44:36 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:44:36 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:44:36 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:44:36 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:44:36 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:44:36 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:44:36 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:44:36 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:44:36 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:44:36 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:44:36 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:44:36 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:44:36 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:44:36 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:44:36 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:44:36 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:44:36 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:44:37 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:44:37 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:44:37 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:44:37 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:44:37 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:44:37 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:44:37 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:44:37 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:44:37 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:44:37 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:44:37 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:44:37 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:44:37 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:44:37 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:44:37 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:44:37 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:44:37 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:44:37 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:44:37 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:44:37 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:44:37 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:44:38 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:44:38 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:44:38 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:44:38 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:44:38 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:44:38 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:44:38 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:44:38 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:44:38 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:44:38 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:44:38 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:44:38 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:44:38 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:44:38 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:44:38 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:44:38 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:44:38 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:44:38 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:44:38 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:44:38 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:44:38 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:44:38 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:44:39 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:44:39 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:44:39 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:44:39 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:44:39 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:44:39 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:44:39 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:44:39 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:44:39 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:44:39 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:44:39 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:44:39 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:44:39 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:44:39 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:44:39 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:44:39 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:44:39 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:44:39 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:44:39 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:44:39 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:44:39 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:44:39 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:44:40 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:44:40 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:44:40 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:44:40 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:44:40 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:44:40 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:44:40 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:44:40 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:44:40 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:44:40 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:44:40 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:44:40 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:44:40 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:44:40 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:44:40 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:44:40 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:44:40 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:44:40 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:44:40 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:44:40 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:44:40 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:44:40 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:44:41 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:44:41 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:44:41 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:44:41 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:44:41 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:44:41 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:44:41 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:44:41 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:44:41 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:44:41 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:44:41 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:44:41 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:44:41 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:44:41 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:44:41 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:44:41 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:44:41 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:44:41 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:44:41 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:44:41 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:44:41 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:44:42 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:44:42 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:44:42 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:44:42 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:44:42 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:44:42 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:44:42 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:44:42 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:44:42 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:44:42 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:44:42 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:44:42 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:44:42 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:44:42 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:44:42 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:44:42 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:44:42 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:44:42 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:44:42 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:44:42 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:44:42 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:44:43 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:44:43 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:44:43 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:44:43 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:44:43 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:44:43 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:44:43 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:44:43 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:44:43 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:44:43 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:44:43 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:44:43 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:44:43 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:44:43 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:44:43 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:44:44 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:44:44 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:44:44 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:44:44 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:44:44 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:44:44 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:44:44 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:44:44 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:44:44 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:44:44 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:44:44 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:44:44 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:44:45 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:44:45 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:44:45 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:44:45 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:44:45 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:44:45 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:44:45 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:44:45 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:44:45 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:44:45 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:44:45 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:44:45 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:44:45 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:44:46 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:44:46 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:44:46 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:44:46 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:44:46 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:44:46 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:44:46 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:44:46 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:44:46 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:44:46 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:44:46 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:44:46 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:44:46 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:44:46 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:44:46 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:44:46 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:44:47 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:44:47 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:44:47 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:44:47 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:44:47 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:44:47 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:44:47 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:44:47 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:44:47 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:44:47 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:44:47 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:44:48 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:44:48 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:44:48 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:44:48 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:44:48 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:44:48 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:44:48 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:44:48 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:44:48 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:44:48 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:44:48 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:44:48 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:44:48 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:44:48 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:44:48 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:44:49 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:44:49 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:44:49 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:44:49 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:44:49 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:44:49 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:44:49 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:44:49 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:44:49 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:44:49 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:44:49 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:44:49 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:44:49 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:44:49 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:44:49 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:44:50 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:44:50 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:44:50 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:44:50 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:44:50 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:44:50 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:44:50 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:44:50 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:44:50 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:44:50 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:44:50 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:44:50 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:44:50 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:44:50 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:44:50 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:44:51 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:44:51 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:44:51 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:44:51 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:44:51 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:44:51 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:44:51 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:44:51 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:44:51 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:44:51 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:44:51 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:44:51 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:44:51 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:44:51 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:44:51 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:44:51 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:44:52 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:44:52 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:44:52 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:44:52 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:44:52 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:44:52 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:44:52 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:44:52 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:44:52 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:44:52 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:44:52 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:44:52 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:44:52 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:44:52 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:44:52 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:44:52 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:44:52 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:44:53 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:44:53 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:44:53 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:44:53 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:44:53 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:44:53 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:44:53 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:44:53 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:44:53 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:44:53 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:44:53 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:44:53 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:44:54 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:44:54 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:44:54 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:44:54 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:44:54 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:44:54 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:44:55 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:44:55 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:44:55 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:44:55 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:44:55 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:44:55 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:44:55 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:44:55 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:44:55 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:44:55 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:44:55 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:44:55 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:44:55 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:44:55 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:44:55 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:44:55 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:44:55 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:44:56 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:44:56 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:44:56 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:44:56 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:44:56 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:44:56 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:44:56 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:44:56 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:44:56 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:44:56 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:44:56 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:44:56 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:44:56 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:44:56 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:44:56 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:44:56 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:44:57 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:44:57 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:44:57 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:44:57 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:44:57 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:44:57 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:44:57 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:44:57 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:44:57 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:44:57 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:44:57 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:44:57 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:44:57 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:44:57 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:44:57 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:44:58 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:44:58 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:44:58 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:44:58 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:44:58 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:44:58 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:44:58 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:44:58 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:44:58 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:44:58 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:44:58 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:44:58 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:44:58 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:44:58 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:44:58 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:44:58 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:44:59 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:44:59 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:44:59 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:44:59 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:44:59 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:44:59 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:44:59 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:44:59 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:44:59 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:44:59 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:44:59 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:44:59 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:44:59 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:44:59 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:44:59 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:44:59 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:45:00 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:45:00 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:45:00 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:45:00 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:45:00 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:45:00 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:45:00 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:45:00 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:45:00 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:45:00 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:45:00 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:45:00 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:45:00 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:45:01 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:45:01 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:45:01 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:45:01 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:45:01 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:45:01 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:45:01 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:45:01 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:45:01 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:45:01 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:45:01 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:45:01 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:45:01 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:45:01 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:45:01 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:45:02 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:45:02 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:45:02 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:45:02 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:45:02 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:45:02 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:45:02 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:45:02 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:45:02 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:45:02 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:45:02 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:45:02 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:45:02 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:45:02 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:45:03 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:45:03 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:45:03 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:45:03 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:45:03 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:45:03 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:45:03 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:45:03 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:45:03 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:45:03 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:45:03 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:45:03 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:45:03 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:45:03 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:45:03 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:45:03 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:45:03 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:45:04 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:45:04 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:45:04 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:45:04 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:45:04 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:45:04 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:45:04 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:45:04 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:45:04 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:45:04 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:45:04 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:45:04 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:45:04 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:45:04 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:45:04 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:45:04 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:45:04 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:45:04 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:45:05 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:45:05 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:45:05 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:45:05 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:45:05 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:45:05 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:45:05 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:45:05 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:45:05 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:45:05 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:45:05 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:45:05 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:45:05 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:45:05 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:45:05 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:45:05 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:45:05 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:45:05 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:45:05 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:45:05 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:45:05 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:45:06 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:45:06 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:45:06 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:45:06 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:45:06 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:45:06 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:45:06 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:45:06 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:45:06 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:45:06 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:45:06 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:45:06 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:45:06 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:45:06 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:45:06 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:45:06 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:45:06 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:45:06 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:45:06 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:45:07 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:45:07 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:45:07 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:45:07 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:45:07 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:45:07 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:45:07 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:45:07 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:45:07 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:45:07 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:45:07 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:45:07 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:45:07 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:45:07 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:45:07 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:45:07 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:45:07 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:45:07 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:45:07 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:45:07 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:45:07 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:45:07 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:45:07 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:45:07 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:45:08 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:45:08 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:45:08 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:45:08 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:45:08 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:45:08 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:45:08 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:45:08 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:45:08 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:45:08 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:45:08 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:45:08 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:45:08 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:45:08 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:45:08 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:45:08 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:45:08 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:45:09 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:45:09 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:45:09 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:45:10 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:45:10 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:45:10 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:45:10 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:45:10 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:45:10 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:45:10 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:45:10 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:45:10 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:45:10 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:45:11 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:45:11 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:45:11 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:45:11 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:45:11 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:45:11 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:45:12 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:45:12 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:45:12 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:45:12 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:45:12 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:45:12 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:45:12 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:45:12 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:45:12 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:45:13 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:45:13 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:45:13 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:45:13 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:45:13 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:45:13 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:45:13 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:45:13 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:45:13 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:45:13 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:45:13 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:45:13 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:45:13 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:45:13 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:45:13 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:45:13 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:45:13 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:45:13 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:45:13 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:45:14 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:45:14 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:45:14 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:45:14 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:45:14 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:45:14 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:45:14 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:45:14 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:45:14 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:45:14 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:45:14 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:45:14 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:45:14 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:45:14 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:45:14 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:45:14 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:45:14 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:45:14 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:45:14 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:45:14 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:45:14 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:45:14 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:45:14 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:45:14 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:45:14 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:45:15 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:45:15 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:45:15 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:45:15 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:45:15 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:45:15 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:45:15 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:45:15 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:45:15 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:45:15 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:45:15 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:45:15 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:45:15 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:45:15 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:45:15 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:45:15 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:45:15 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:45:15 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:45:15 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:45:15 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:45:15 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:45:15 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:45:15 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:45:15 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:45:15 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:45:15 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:45:15 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:45:15 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:45:15 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:45:16 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:45:16 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:45:16 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:45:16 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:45:16 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:45:16 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:45:16 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:45:16 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:45:16 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:45:16 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:45:16 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:45:16 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:45:16 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:45:16 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:45:16 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:45:16 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:45:16 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:45:16 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:45:16 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:45:16 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:45:16 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:45:16 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:45:16 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:45:16 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:45:16 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:45:16 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:45:16 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:45:16 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:45:16 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:45:16 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:45:16 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:45:17 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:45:17 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:45:17 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:45:17 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:45:17 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:45:17 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:45:17 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:45:17 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:45:17 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:45:17 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:45:17 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:45:17 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:45:17 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:45:17 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:45:17 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:45:17 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:45:17 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:45:17 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:45:17 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:45:17 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:45:17 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:45:17 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:45:18 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:45:18 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:45:18 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:45:18 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:45:18 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:45:18 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:45:18 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:45:18 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:45:18 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:45:18 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:45:18 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:45:18 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:45:18 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:45:18 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:45:19 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:45:19 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:45:19 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:45:19 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:45:19 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:45:19 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:45:19 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:45:19 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:45:19 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:45:19 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:45:19 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:45:20 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:45:20 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:45:20 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:45:20 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:45:20 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:45:20 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:45:20 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:45:20 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:45:20 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:45:20 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:45:20 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:45:20 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:45:20 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:45:20 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:45:20 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:45:21 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:45:21 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:45:21 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:45:21 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:45:21 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:45:21 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:45:21 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:45:21 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:45:21 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:45:21 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:45:21 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:45:22 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:45:22 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:45:22 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:45:22 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:45:22 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:45:22 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:45:22 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:45:22 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:45:22 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:45:22 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:45:22 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:45:22 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:45:22 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:45:22 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:45:23 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:45:23 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:45:23 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:45:23 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:45:23 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:45:23 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:45:23 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:45:23 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:45:23 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:45:23 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:45:23 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:45:24 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:45:24 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:45:24 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:45:24 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:45:24 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:45:24 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:45:24 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:45:24 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:45:24 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:45:24 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:45:25 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:45:25 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:45:25 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:45:25 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:45:25 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:45:25 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:45:25 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:45:25 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:45:25 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:45:25 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:45:25 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:45:25 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:45:25 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:45:25 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:45:25 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:45:25 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:45:25 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:45:26 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:45:26 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:45:26 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:45:26 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:45:26 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:45:26 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:45:26 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:45:26 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:45:26 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:45:26 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:45:26 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:45:26 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:45:26 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:45:26 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:45:26 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:45:26 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:45:26 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:45:27 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:45:27 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:45:27 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:45:27 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:45:27 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:45:27 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:45:27 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:45:27 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:45:27 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:45:27 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:45:27 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:45:27 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:45:27 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:45:27 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:45:27 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:45:27 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:45:28 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:45:28 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:45:28 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:45:28 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:45:28 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:45:28 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:45:28 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:45:28 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:45:28 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:45:28 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:45:28 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:45:28 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:45:28 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:45:28 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:45:28 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:45:28 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:45:29 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:45:29 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:45:29 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:45:29 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:45:29 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:45:29 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:45:29 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:45:29 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:45:29 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:45:29 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:45:29 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:45:29 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:45:29 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:45:29 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:45:30 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:45:30 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:45:30 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:45:30 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:45:30 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:45:30 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:45:30 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:45:30 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:45:30 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:45:30 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:45:30 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:45:30 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:45:30 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:45:30 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:45:30 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:45:30 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:45:30 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:45:30 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:45:31 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:45:31 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:45:31 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:45:31 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:45:31 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:45:31 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:45:31 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:45:31 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:45:31 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:45:31 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:45:31 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:45:31 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:45:31 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:45:31 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:45:31 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:45:31 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:45:32 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:45:32 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:45:32 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:45:32 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:45:32 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:45:32 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:45:32 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:45:32 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:45:32 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:45:32 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:45:32 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:45:32 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:45:33 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:45:33 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:45:33 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:45:33 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:45:33 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:45:33 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:45:33 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:45:33 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:45:33 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:45:33 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:45:33 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:45:33 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:45:33 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:45:33 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:45:33 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:45:33 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:45:33 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:45:34 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:45:34 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:45:34 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:45:34 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:45:34 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:45:34 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:45:34 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:45:34 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:45:34 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:45:34 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:45:34 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:45:34 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:45:34 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:45:34 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:45:34 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:45:34 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:45:34 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:45:35 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:45:35 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:45:35 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:45:35 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:45:35 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:45:35 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:45:35 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:45:35 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:45:35 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:45:35 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:45:35 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:45:35 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:45:35 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:45:35 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:45:35 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:45:35 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:45:35 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:45:35 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:45:36 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:45:36 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:45:36 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:45:36 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:45:36 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:45:36 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:45:36 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:45:36 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:45:36 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:45:36 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:45:37 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:45:37 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:45:37 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:45:37 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:45:37 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:45:37 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:45:37 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:45:37 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:45:37 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:45:37 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:45:37 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:45:37 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:45:38 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:45:38 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:45:38 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:45:38 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:45:38 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:45:38 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:45:38 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:45:38 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:45:38 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:45:38 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:45:38 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:45:38 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:45:38 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:45:38 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:45:39 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:45:39 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:45:39 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:45:39 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:45:39 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:45:39 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:45:39 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:45:39 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:45:39 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:45:39 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:45:39 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:45:39 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:45:39 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:45:39 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:45:39 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:45:40 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:45:40 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:45:40 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:45:40 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:45:40 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:45:40 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:45:40 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:45:40 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:45:40 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:45:40 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:45:40 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:45:40 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:45:41 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:45:41 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:45:41 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:45:41 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:45:41 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:45:41 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:45:41 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:45:41 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:45:41 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:45:41 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:45:41 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:45:41 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:45:41 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:45:41 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:45:42 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:45:42 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:45:42 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:45:42 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:45:42 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:45:42 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:45:42 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:45:42 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:45:42 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:45:42 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:45:42 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:45:42 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:45:42 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:45:42 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:45:42 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:45:43 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:45:43 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:45:43 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:45:43 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:45:43 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:45:43 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:45:43 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:45:43 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:45:43 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:45:43 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:45:43 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:45:43 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:45:43 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:45:43 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:45:43 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:45:43 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:45:44 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:45:44 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:45:44 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:45:44 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:45:44 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:45:44 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:45:44 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:45:44 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:45:44 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:45:44 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:45:44 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:45:44 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:45:45 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:45:45 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:45:45 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:45:45 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:45:45 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:45:45 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:45:45 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:45:45 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:45:45 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:45:45 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:45:45 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:45:46 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:45:46 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:45:46 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:45:46 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:45:46 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:45:46 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:45:46 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:45:46 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:45:46 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:45:46 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:45:46 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:45:46 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:45:46 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:45:46 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:45:46 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:45:46 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:45:47 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:45:47 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:45:47 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:45:47 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:45:47 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:45:47 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:45:47 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:45:47 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:45:47 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:45:47 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:45:47 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:45:47 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:45:47 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:45:47 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:45:47 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:45:48 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:45:48 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:45:48 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:45:48 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:45:48 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:45:48 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:45:48 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:45:48 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:45:48 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:45:48 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:45:48 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:45:48 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:45:48 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:45:48 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:45:49 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:45:49 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:45:49 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:45:49 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:45:49 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:45:49 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:45:49 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:45:49 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:45:49 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:45:49 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:45:49 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:45:49 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:45:49 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:45:49 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:45:50 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:45:50 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:45:50 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:45:50 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:45:50 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:45:50 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:45:50 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:45:50 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:45:50 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:45:50 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:45:50 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:45:50 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:45:50 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:45:50 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:45:50 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:45:50 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:45:50 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:45:51 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:45:51 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:45:51 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:45:51 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:45:51 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:45:51 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:45:51 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:45:51 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:45:51 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:45:51 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:45:51 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:45:51 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:45:51 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:45:51 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:45:51 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:45:51 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:45:51 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:45:52 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:45:52 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:45:52 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:45:52 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:45:52 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:45:52 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:45:52 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:45:52 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:45:52 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:45:52 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:45:52 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:45:52 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:45:52 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:45:52 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:45:52 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:45:52 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:45:52 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:45:53 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:45:53 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:45:53 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:45:53 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:45:53 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:45:53 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:45:53 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:45:53 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:45:53 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:45:53 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:45:53 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:45:53 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:45:53 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:45:53 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:45:53 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:45:53 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:45:53 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:45:54 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:45:54 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:45:54 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:45:54 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:45:54 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:45:54 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:45:54 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:45:54 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:45:54 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:45:54 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:45:54 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:45:54 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:45:54 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:45:54 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:45:54 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:45:54 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:45:54 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:45:55 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:45:55 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:45:55 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:45:55 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:45:55 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:45:55 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:45:55 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:45:55 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:45:55 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:45:55 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:45:55 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:45:55 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:45:55 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:45:55 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:45:55 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:45:56 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:45:56 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:45:56 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:45:56 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:45:56 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:45:56 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:45:56 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:45:56 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:45:56 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:45:56 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:45:56 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:45:56 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:45:56 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:45:56 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:45:56 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:45:56 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:45:57 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:45:57 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:45:57 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:45:57 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:45:57 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:45:57 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:45:57 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:45:57 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:45:57 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:45:57 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:45:57 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:45:57 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:45:57 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:45:57 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:45:58 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:45:58 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:45:58 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:45:58 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:45:58 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:45:58 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:45:58 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:45:58 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:45:58 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:45:58 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:45:58 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:45:58 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:45:58 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:45:58 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:45:58 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:45:59 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:45:59 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:45:59 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:45:59 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:45:59 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:45:59 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:45:59 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:45:59 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:45:59 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:45:59 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:45:59 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:45:59 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:45:59 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:45:59 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:45:59 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:45:59 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:45:59 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:46:00 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:46:00 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:46:00 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:46:00 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:46:00 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:46:00 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:46:00 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:46:00 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:46:00 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:46:00 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:46:00 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:46:00 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:46:00 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:46:00 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:46:00 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:46:00 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:46:01 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:46:01 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:46:01 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:46:01 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:46:01 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:46:01 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:46:01 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:46:01 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:46:01 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:46:01 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:46:01 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:46:01 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:46:01 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:46:01 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:46:01 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:46:01 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:46:02 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:46:02 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:46:02 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:46:02 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:46:02 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:46:02 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:46:02 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:46:02 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:46:02 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:46:02 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:46:02 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:46:02 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:46:02 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:46:02 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:46:02 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:46:02 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:46:02 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:46:03 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:46:03 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:46:03 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:46:03 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:46:03 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:46:03 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:46:03 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:46:03 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:46:03 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:46:03 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:46:03 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:46:03 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:46:03 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:46:03 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:46:03 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:46:03 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:46:03 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:46:04 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:46:04 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:46:04 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:46:04 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:46:04 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:46:04 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:46:04 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:46:04 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:46:04 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:46:04 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:46:04 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:46:04 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:46:05 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:46:05 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:46:05 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:46:05 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:46:05 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:46:05 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:46:05 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:46:05 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:46:05 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:46:05 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:46:05 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:46:05 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:46:05 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:46:05 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:46:06 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:46:06 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:46:06 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:46:06 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:46:06 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:46:06 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:46:06 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:46:06 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:46:06 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:46:06 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:46:06 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:46:06 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:46:06 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:46:06 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:46:06 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:46:07 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:46:07 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:46:07 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:46:07 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:46:07 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:46:07 --> Severity: Notice --> Undefined variable: suppliername C:\xampp\htdocs\ria\application\controllers\cashbook.php 1910
+ERROR - 2019-01-09 11:46:07 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:46:07 --> Severity: Notice --> Undefined variable: Customer C:\xampp\htdocs\ria\application\controllers\cashbook.php 1916
+ERROR - 2019-01-09 11:46:07 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:46:07 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:46:07 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:46:07 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:46:07 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:46:07 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:46:07 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:46:07 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:46:08 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:46:08 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:46:08 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:46:08 --> Severity: Notice --> Undefined variable: financialyear C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 10
+ERROR - 2019-01-09 11:46:08 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:46:08 --> Severity: Warning --> Invalid argument supplied for foreach() C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 10
+ERROR - 2019-01-09 11:46:08 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:46:08 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:46:08 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:46:08 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:46:08 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:46:08 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:46:09 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:46:09 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:46:09 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:46:09 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:46:09 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:46:09 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:46:09 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:46:09 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:46:09 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:46:09 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:46:09 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:46:09 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:46:09 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:46:09 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:46:09 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:46:09 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:46:09 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:46:09 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:46:09 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:46:09 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:46:09 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:46:09 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:46:09 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:46:09 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:46:09 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:46:09 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:46:09 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:46:09 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:46:09 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:46:09 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:46:09 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:46:09 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:46:10 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:46:10 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:46:10 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:46:10 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:46:10 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:46:10 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:46:10 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:46:10 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:46:10 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:46:10 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:46:10 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:46:10 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:46:10 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:46:10 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:46:10 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:46:10 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:46:10 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:46:10 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:46:10 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:46:10 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:46:10 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:46:10 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:46:10 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:46:10 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:46:10 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:46:10 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:46:10 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:46:11 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:46:11 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:46:11 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:46:11 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:46:11 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:46:11 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:46:11 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:46:11 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:46:11 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:46:11 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:46:11 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:46:11 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:46:11 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:46:11 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:46:11 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:46:11 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:46:11 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:46:11 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:46:11 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:46:11 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:46:11 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:46:12 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:46:12 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:46:12 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:46:12 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:46:12 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:46:12 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:46:12 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:46:12 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:46:12 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:46:12 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:46:12 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:46:12 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:46:12 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:46:12 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:46:12 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:46:12 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:46:12 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:46:12 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:46:12 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:46:12 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:46:12 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:46:12 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:46:12 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:46:12 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:46:12 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:46:12 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:46:13 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:46:13 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:46:13 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:46:13 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:46:13 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:46:13 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:46:13 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:46:13 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:46:13 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:46:13 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:46:13 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:46:13 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:46:13 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:46:13 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:46:13 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:46:13 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:46:13 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:46:13 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:46:13 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:46:13 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:46:13 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:46:13 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:46:13 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:46:13 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:46:13 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:46:13 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:46:13 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:46:13 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:46:13 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:46:13 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:46:13 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:46:13 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:46:14 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:46:14 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:46:14 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:46:14 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:46:14 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:46:14 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:46:14 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:46:14 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:46:14 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:46:14 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:46:14 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:46:14 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:46:14 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:46:14 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:46:14 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:46:14 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:46:14 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:46:14 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:46:14 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:46:14 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:46:14 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:46:14 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:46:14 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:46:14 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:46:14 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:46:14 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:46:14 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:46:14 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:46:14 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:46:14 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:46:14 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:46:14 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:46:14 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:46:14 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:46:15 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:46:15 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:46:15 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:46:15 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:46:15 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:46:15 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:46:15 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:46:15 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:46:15 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:46:15 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:46:15 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:46:15 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:46:15 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:46:15 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:46:15 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:46:15 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:46:15 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:46:15 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:46:15 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:46:15 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:46:15 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:46:15 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:46:15 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:46:15 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:46:15 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:46:15 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:46:15 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:46:15 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:46:15 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:46:15 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:46:15 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:46:15 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:46:16 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:46:16 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:46:16 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:46:16 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:46:16 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:46:16 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:46:16 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:46:16 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:46:16 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:46:16 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:46:16 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:46:16 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:46:16 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:46:16 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:46:16 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:46:16 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:46:16 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:46:16 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:46:16 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:46:16 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:46:16 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:46:16 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:46:16 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:46:16 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:46:16 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:46:16 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:46:16 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:46:16 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:46:16 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:46:16 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:46:16 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:46:16 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:46:17 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:46:17 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:46:17 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:46:17 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:46:17 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:46:17 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:46:17 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:46:17 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:46:17 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:46:17 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:46:17 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:46:17 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:46:17 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:46:17 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:46:17 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:46:17 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:46:17 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:46:17 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:46:17 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:46:17 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:46:17 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:46:17 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:46:17 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:46:17 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:46:17 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:46:17 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:46:17 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:46:17 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:46:17 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:46:17 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:46:18 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:46:18 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:46:18 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:46:18 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:46:18 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:46:18 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:46:18 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:46:18 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:46:18 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:46:18 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:46:18 --> Severity: Notice --> Undefined variable: openingbalance C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 6
+ERROR - 2019-01-09 11:46:18 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:46:18 --> Severity: Notice --> Undefined variable: openingbalance C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 6
+ERROR - 2019-01-09 11:46:18 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:46:18 --> Severity: Notice --> Undefined variable: openingbalance C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 6
+ERROR - 2019-01-09 11:46:18 --> Severity: Warning --> Invalid argument supplied for foreach() C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 6
+ERROR - 2019-01-09 11:46:18 --> Severity: Warning --> Invalid argument supplied for foreach() C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 6
+ERROR - 2019-01-09 11:46:18 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:46:18 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:46:18 --> Severity: Notice --> Undefined variable: openingbalance C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 6
+ERROR - 2019-01-09 11:46:18 --> Severity: Notice --> Undefined variable: openingbalance C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 6
+ERROR - 2019-01-09 11:46:18 --> Severity: Warning --> Invalid argument supplied for foreach() C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 6
+ERROR - 2019-01-09 11:46:18 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:46:18 --> Severity: Warning --> Invalid argument supplied for foreach() C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 6
+ERROR - 2019-01-09 11:46:18 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:46:18 --> Severity: Warning --> Invalid argument supplied for foreach() C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 6
+ERROR - 2019-01-09 11:46:18 --> Severity: Notice --> Undefined variable: financialyear C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 10
+ERROR - 2019-01-09 11:46:18 --> Severity: Notice --> Undefined variable: financialyear C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 10
+ERROR - 2019-01-09 11:46:18 --> Severity: Warning --> Invalid argument supplied for foreach() C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 10
+ERROR - 2019-01-09 11:46:18 --> Severity: Notice --> Undefined variable: financialyear C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 10
+ERROR - 2019-01-09 11:46:18 --> Severity: Notice --> Undefined variable: financialyear C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 10
+ERROR - 2019-01-09 11:46:18 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:46:18 --> Severity: Notice --> Undefined variable: financialyear C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 10
+ERROR - 2019-01-09 11:46:18 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:46:18 --> Severity: Warning --> Invalid argument supplied for foreach() C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 10
+ERROR - 2019-01-09 11:46:18 --> Severity: Warning --> Invalid argument supplied for foreach() C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 10
+ERROR - 2019-01-09 11:46:18 --> Severity: Warning --> Invalid argument supplied for foreach() C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 10
+ERROR - 2019-01-09 11:46:18 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:46:18 --> Severity: Notice --> Undefined variable: customerledger C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 138
+ERROR - 2019-01-09 11:46:18 --> Severity: Warning --> Invalid argument supplied for foreach() C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 10
+ERROR - 2019-01-09 11:46:18 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:46:18 --> Severity: Notice --> Undefined variable: customerledger C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 138
+ERROR - 2019-01-09 11:46:18 --> Severity: Warning --> Invalid argument supplied for foreach() C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 138
+ERROR - 2019-01-09 11:46:18 --> Severity: Notice --> Undefined variable: customerledger C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 138
+ERROR - 2019-01-09 11:46:18 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:46:18 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:46:18 --> Severity: Notice --> Undefined variable: customerledger C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 138
+ERROR - 2019-01-09 11:46:18 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:46:18 --> Severity: Notice --> Undefined variable: clientname C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 143
+ERROR - 2019-01-09 11:46:18 --> Severity: Warning --> Invalid argument supplied for foreach() C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 138
+ERROR - 2019-01-09 11:46:18 --> Severity: Warning --> Invalid argument supplied for foreach() C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 138
+ERROR - 2019-01-09 11:46:18 --> Severity: Notice --> Undefined variable: customerledger C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 138
+ERROR - 2019-01-09 11:46:18 --> Severity: Notice --> Undefined variable: clientname C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 143
+ERROR - 2019-01-09 11:46:18 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:46:18 --> Severity: Notice --> Undefined variable: tot_amount C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 144
+ERROR - 2019-01-09 11:46:18 --> Severity: Warning --> Invalid argument supplied for foreach() C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 138
+ERROR - 2019-01-09 11:46:19 --> Severity: Notice --> Undefined variable: supplierid C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 148
+ERROR - 2019-01-09 11:46:19 --> Severity: Notice --> Undefined variable: clientname C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 143
+ERROR - 2019-01-09 11:46:19 --> Severity: Notice --> Undefined variable: tot_amount C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 144
+ERROR - 2019-01-09 11:46:19 --> Severity: Notice --> Undefined variable: clientname C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 143
+ERROR - 2019-01-09 11:46:19 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:46:19 --> Severity: Notice --> Undefined variable: supplierid C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 148
+ERROR - 2019-01-09 11:46:19 --> Severity: Notice --> Undefined variable: tot_amount C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 144
+ERROR - 2019-01-09 11:46:19 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:46:19 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:46:19 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:46:19 --> Severity: Notice --> Undefined variable: supplierid C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 148
+ERROR - 2019-01-09 11:46:19 --> Severity: Notice --> Undefined variable: suppliername C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 149
+ERROR - 2019-01-09 11:46:19 --> Severity: Warning --> Invalid argument supplied for foreach() C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 138
+ERROR - 2019-01-09 11:46:19 --> Severity: Notice --> Undefined variable: suppliername C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 149
+ERROR - 2019-01-09 11:46:19 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:46:19 --> Severity: Notice --> Undefined variable: tot_amount C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 144
+ERROR - 2019-01-09 11:46:19 --> Severity: Notice --> Undefined variable: suppliername C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 149
+ERROR - 2019-01-09 11:46:19 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:46:19 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:46:19 --> Severity: Notice --> Undefined variable: clientname C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 143
+ERROR - 2019-01-09 11:46:19 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:46:19 --> Severity: Notice --> Undefined variable: supplierid C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 148
+ERROR - 2019-01-09 11:46:19 --> Severity: Notice --> Undefined variable: tot_amount C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 144
+ERROR - 2019-01-09 11:46:19 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:46:19 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:46:19 --> Severity: Notice --> Undefined variable: supplierid C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 148
+ERROR - 2019-01-09 11:46:19 --> Severity: Notice --> Undefined variable: suppliername C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 149
+ERROR - 2019-01-09 11:46:19 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:46:19 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:46:19 --> Severity: Notice --> Undefined variable: suppliername C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 149
+ERROR - 2019-01-09 11:46:19 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:46:20 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:46:20 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:46:20 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:46:20 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:46:20 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:46:20 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:46:20 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:46:20 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:46:20 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:46:20 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:46:20 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:46:20 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:46:20 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:46:20 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:46:20 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:46:20 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:46:20 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:46:21 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:46:21 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:46:21 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:46:21 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:46:21 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:46:21 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:46:21 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:46:21 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:46:21 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:46:21 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:46:21 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:46:21 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:46:21 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:46:21 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:46:21 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:46:21 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:46:21 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:46:21 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:46:21 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:46:21 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:46:21 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:46:21 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:46:22 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:46:22 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:46:22 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:46:22 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:46:22 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:46:22 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:46:22 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:46:22 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:46:22 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:46:22 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:46:22 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:46:22 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:46:22 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:46:22 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:46:22 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:46:22 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:46:22 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:46:22 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:46:22 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:46:22 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:46:22 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:46:22 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:46:23 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:46:23 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:46:23 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:46:23 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:46:23 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:46:23 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:46:23 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:46:23 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:46:23 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:46:23 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:46:23 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:46:23 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:46:23 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:46:23 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:46:23 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:46:23 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:46:23 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:46:23 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:46:23 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:46:23 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:46:23 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:46:23 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:46:23 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:46:23 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:46:23 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:46:23 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:46:23 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:46:23 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:46:23 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:46:23 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:46:23 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:46:23 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:46:24 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:46:24 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:46:24 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:46:24 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:46:24 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:46:24 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:46:24 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:46:24 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:46:24 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:46:24 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:46:24 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:46:24 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:46:24 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:46:24 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:46:24 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:46:24 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:46:24 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:46:24 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:46:24 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:46:24 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:46:24 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:46:24 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:46:24 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:46:24 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:46:24 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:46:24 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:46:24 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:46:24 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:46:24 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:46:24 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:46:25 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:46:25 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:46:25 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:46:25 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:46:25 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:46:25 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:46:25 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:46:25 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:46:25 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:46:25 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:46:25 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:46:25 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:46:25 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:46:25 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:46:25 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:46:25 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:46:25 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:46:25 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:46:25 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:46:25 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:46:25 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:46:25 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:46:25 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:46:25 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:46:25 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:46:25 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:46:25 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:46:25 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:46:25 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:46:25 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:46:26 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:46:26 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:46:26 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:46:26 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:46:26 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:46:26 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:46:26 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:46:26 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:46:26 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:46:26 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:46:26 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:46:26 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:46:26 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:46:26 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:46:26 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:46:26 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:46:26 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:46:26 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:46:26 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:46:26 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:46:26 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:46:26 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:46:26 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:46:26 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:46:26 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:46:26 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:46:26 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:46:26 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:46:26 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:46:26 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:46:26 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:46:26 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:46:26 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:46:26 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:46:26 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:46:26 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:46:27 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:46:27 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:46:27 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:46:27 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:46:27 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:46:27 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:46:27 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:46:27 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:46:27 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:46:27 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:46:27 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:46:27 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:46:27 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:46:27 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:46:27 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:46:27 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:46:27 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:46:27 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:46:27 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:46:27 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:46:27 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:46:27 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:46:27 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:46:27 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:46:28 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:46:28 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:46:28 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:46:28 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:46:28 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:46:28 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:46:28 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:46:28 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:46:28 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:46:28 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:46:28 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:46:28 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:46:28 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:46:28 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:46:28 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:46:28 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:46:28 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:46:28 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:46:28 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:46:29 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:46:29 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:46:29 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:46:29 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:46:29 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:46:29 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:46:29 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:46:29 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:46:29 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:46:29 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:46:29 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:46:29 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:46:29 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:46:29 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:46:29 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:46:29 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:46:29 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:46:29 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:46:29 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:46:29 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:46:29 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:46:29 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:46:29 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:46:29 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:46:29 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:46:30 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:46:30 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:46:30 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:46:30 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:46:30 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:46:30 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:46:30 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:46:30 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:46:30 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:46:30 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:46:30 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:46:30 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:46:30 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:46:30 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:46:30 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:46:30 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:46:30 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:46:30 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:46:31 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:46:31 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:46:31 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:46:31 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:46:31 --> Severity: Notice --> Undefined variable: suppliername C:\xampp\htdocs\ria\application\controllers\cashbook.php 1910
+ERROR - 2019-01-09 11:46:31 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:46:31 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:46:31 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:46:31 --> Severity: Notice --> Undefined variable: Customer C:\xampp\htdocs\ria\application\controllers\cashbook.php 1916
+ERROR - 2019-01-09 11:46:31 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:46:31 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:46:31 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:46:31 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:46:31 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:46:31 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:46:31 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:46:31 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:46:31 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:46:31 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:46:31 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:46:31 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:46:31 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:46:31 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:46:31 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:46:31 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:46:31 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:46:31 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:46:31 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:46:31 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:46:31 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:46:31 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:46:31 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:46:32 --> Severity: Notice --> Undefined variable: financialyear C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 10
+ERROR - 2019-01-09 11:46:32 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:46:32 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:46:32 --> Severity: Warning --> Invalid argument supplied for foreach() C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 10
+ERROR - 2019-01-09 11:46:32 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:46:32 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:46:32 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:46:32 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:46:32 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:46:32 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:46:32 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:46:32 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:46:32 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:46:32 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:46:32 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:46:32 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:46:32 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:46:32 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:46:32 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:46:32 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:46:32 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:46:32 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:46:32 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:46:32 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:46:32 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:46:32 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:46:32 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:46:32 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:46:32 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:46:32 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:46:32 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:46:32 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:46:32 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:46:32 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:46:32 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:46:32 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:46:32 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:46:32 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:46:32 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:46:32 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:46:32 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:46:32 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:46:32 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:46:33 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:46:33 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:46:33 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:46:33 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:46:33 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:46:33 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:46:33 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:46:33 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:46:33 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:46:33 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:46:33 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:46:33 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:46:33 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:46:33 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:46:33 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:46:33 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:46:33 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:46:33 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:46:33 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:46:33 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:46:33 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:46:33 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:46:33 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:46:33 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:46:33 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:46:33 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:46:33 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:46:33 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:46:33 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:46:33 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:46:33 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:46:33 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:46:33 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:46:33 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:46:33 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:46:33 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:46:33 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:46:33 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:46:33 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:46:33 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:46:33 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:46:33 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:46:33 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:46:33 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:46:33 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:46:33 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:46:33 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:46:33 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:46:34 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:46:34 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:46:34 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:46:34 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:46:34 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:46:34 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:46:34 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:46:34 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:46:34 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:46:34 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:46:34 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:46:34 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:46:34 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:46:34 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:46:34 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:46:34 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:46:34 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:46:34 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:46:34 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:46:34 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:46:34 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:46:34 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:46:34 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:46:34 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:46:34 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:46:34 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:46:34 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:46:34 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:46:34 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:46:34 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:46:34 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:46:34 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:46:34 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:46:34 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:46:34 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:46:34 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:46:34 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:46:34 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:46:34 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:46:34 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:46:34 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:46:34 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:46:34 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:46:34 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:46:34 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:46:35 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:46:35 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:46:35 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:46:35 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:46:35 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:46:35 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:46:35 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:46:35 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:46:35 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:46:35 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:46:35 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:46:35 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:46:35 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:46:35 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:46:35 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:46:35 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:46:35 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:46:35 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:46:35 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:46:35 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:46:35 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:46:35 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:46:35 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:46:35 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:46:35 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:46:35 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:46:35 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:46:35 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:46:35 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:46:35 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:46:35 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:46:35 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:46:35 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:46:35 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:46:35 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:46:35 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:46:35 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:46:35 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:46:35 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:46:35 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:46:35 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:46:36 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:46:36 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:46:36 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:46:36 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:46:36 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:46:36 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:46:36 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:46:36 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:46:36 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:46:36 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:46:36 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:46:36 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:46:36 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:46:36 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:46:36 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:46:36 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:46:36 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:46:36 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:46:36 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:46:36 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:46:36 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:46:36 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:46:36 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:46:36 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:46:36 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:46:36 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:46:36 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:46:36 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:46:36 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:46:36 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:46:36 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:46:36 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:46:36 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:46:36 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:46:36 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:46:36 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:46:36 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:46:36 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:46:36 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:46:36 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:46:36 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:46:36 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:46:36 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:46:36 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:46:36 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:46:37 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:46:37 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:46:37 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:46:37 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:46:37 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:46:37 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:46:37 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:46:37 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:46:37 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:46:37 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:46:37 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:46:37 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:46:37 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:46:37 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:46:37 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:46:37 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:46:37 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:46:37 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:46:37 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:46:37 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:46:37 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:46:37 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:46:37 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:46:37 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:46:37 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:46:37 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:46:37 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:46:37 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:46:37 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:46:37 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:46:37 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:46:37 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:46:37 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:46:37 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:46:37 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:46:37 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:46:37 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:46:37 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:46:38 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:46:38 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:46:38 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:46:38 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:46:38 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:46:38 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:46:38 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:46:38 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:46:38 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:46:38 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:46:38 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:46:38 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:46:38 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:46:38 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:46:38 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:46:38 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:46:38 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:46:38 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:46:38 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:46:38 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:46:38 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:46:38 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:46:38 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:46:38 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:46:38 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:46:38 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:46:38 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:46:38 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:46:38 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:46:38 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:46:38 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:46:38 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:46:38 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:46:38 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:46:39 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:46:39 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:46:39 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:46:39 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:46:39 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:46:39 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:46:39 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:46:39 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:46:39 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:46:39 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:46:39 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:46:39 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:46:39 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:46:39 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:46:39 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:46:39 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:46:39 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:46:39 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:46:39 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:46:39 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:46:39 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:46:39 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:46:39 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:46:39 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:46:39 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:46:39 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:46:39 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:46:39 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:46:39 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:46:39 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:46:39 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:46:39 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:46:39 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:46:39 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:46:39 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:46:39 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:46:39 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:46:39 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:46:40 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:46:40 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:46:40 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:46:40 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:46:40 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:46:40 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:46:40 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:46:40 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:46:40 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:46:40 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:46:40 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:46:40 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:46:40 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:46:40 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:46:40 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:46:40 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:46:40 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:46:40 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:46:40 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:46:40 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:46:40 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:46:40 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:46:40 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:46:40 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:46:40 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:46:40 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:46:40 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:46:40 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:46:40 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:46:40 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:46:40 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:46:40 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:46:40 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:46:40 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:46:40 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:46:40 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:46:40 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:46:40 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:46:40 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:46:40 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:46:40 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:46:41 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:46:41 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:46:41 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:46:41 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:46:41 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:46:41 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:46:41 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:46:41 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:46:41 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:46:41 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:46:41 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:46:41 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:46:41 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:46:41 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:46:41 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:46:41 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:46:41 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:46:41 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:46:41 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:46:41 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:46:41 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:46:41 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:46:41 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:46:41 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:46:41 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:46:41 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:46:41 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:46:41 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:46:41 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:46:41 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:46:41 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:46:42 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:46:42 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:46:42 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:46:42 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:46:42 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:46:42 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:46:42 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:46:42 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:46:42 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:46:42 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:46:42 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:46:42 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:46:42 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:46:42 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:46:42 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:46:42 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:46:42 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:46:42 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:46:42 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:46:42 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:46:42 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:46:42 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:46:42 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:46:42 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:46:42 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:46:42 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:46:42 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:46:42 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:46:42 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:46:42 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:46:42 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:46:42 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:46:42 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:46:42 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:46:42 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:46:42 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:46:42 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:46:43 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:46:43 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:46:43 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:46:43 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:46:43 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:46:43 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:46:43 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:46:43 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:46:43 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:46:43 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:46:43 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:46:43 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:46:43 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:46:43 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:46:43 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:46:43 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:46:43 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:46:43 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:46:43 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:46:43 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:46:43 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:46:43 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:46:43 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:46:43 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:46:43 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:46:43 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:46:43 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:46:43 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:46:43 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:46:43 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:46:43 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:46:43 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:46:44 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:46:44 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:46:44 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:46:44 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:46:44 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:46:44 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:46:44 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:46:44 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:46:44 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:46:44 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:46:44 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:46:44 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:46:44 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:46:44 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:46:44 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:46:44 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:46:44 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:46:44 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:46:44 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:46:44 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:46:44 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:46:44 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:46:44 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:46:44 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:46:44 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:46:44 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:46:44 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:46:44 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:46:44 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:46:44 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:46:44 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:46:44 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:46:44 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:46:44 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:46:44 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:46:44 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:46:44 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:46:44 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:46:44 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:46:44 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:46:44 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:46:45 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:46:45 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:46:45 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:46:45 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:46:45 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:46:45 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:46:45 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:46:45 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:46:45 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:46:45 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:46:45 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:46:45 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:46:45 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:46:45 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:46:45 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:46:45 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:46:45 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:46:45 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:46:45 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:46:45 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:46:45 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:46:45 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:46:45 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:46:45 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:46:45 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:46:45 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:46:45 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:46:45 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:46:45 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:46:45 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:46:45 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:46:45 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:46:45 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:46:45 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:46:45 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:46:45 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:46:45 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:46:45 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:46:45 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:46:45 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:46:45 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:46:45 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:46:46 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:46:46 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:46:46 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:46:46 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:46:46 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:46:46 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:46:46 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:46:46 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:46:46 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:46:46 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:46:46 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:46:46 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:46:46 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:46:46 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:46:46 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:46:46 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:46:46 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:46:46 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:46:46 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:46:46 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:46:46 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:46:46 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:46:46 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:46:46 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:46:46 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:46:46 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:46:46 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:46:46 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:46:46 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:46:46 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:46:46 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:46:46 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:46:46 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:46:46 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:46:46 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:46:46 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:46:46 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:46:46 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:46:46 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:46:46 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:46:47 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:46:47 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:46:47 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:46:47 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:46:47 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:46:47 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:46:47 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:46:47 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:46:47 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:46:47 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:46:47 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:46:47 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:46:47 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:46:47 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:46:47 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:46:47 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:46:47 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:46:47 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:46:47 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:46:47 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:46:47 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:46:47 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:46:47 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:46:47 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:46:47 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:46:47 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:46:47 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:46:47 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:46:47 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:46:47 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:46:47 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:46:47 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:46:47 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:46:47 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:46:47 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:46:47 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:46:47 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:46:47 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:46:47 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:46:48 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:46:48 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:46:48 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:46:48 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:46:48 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:46:48 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:46:48 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:46:48 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:46:48 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:46:48 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:46:48 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:46:48 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:46:48 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:46:48 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:46:48 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:46:48 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:46:48 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:46:48 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:46:48 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:46:48 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:46:48 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:46:48 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:46:48 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:46:48 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:46:48 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:46:48 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:46:48 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:46:48 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:46:48 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:46:48 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:46:48 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:46:48 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:46:48 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:46:48 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:46:48 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:46:48 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:46:48 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:46:48 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:46:48 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:46:48 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:46:48 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:46:48 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:46:48 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:46:48 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:46:48 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:46:49 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:46:49 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:46:49 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:46:49 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:46:49 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:46:49 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:46:49 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:46:49 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:46:49 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:46:49 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:46:49 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:46:49 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:46:49 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:46:49 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:46:49 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:46:49 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:46:49 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:46:49 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:46:49 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:46:49 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:46:49 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:46:49 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:46:49 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:46:49 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:46:49 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:46:49 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:46:49 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:46:49 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:46:49 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:46:49 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:46:49 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:46:49 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:46:49 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:46:49 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:46:49 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:46:49 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:46:49 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:46:49 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:46:50 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:46:50 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:46:50 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:46:50 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:46:50 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:46:50 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:46:50 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:46:50 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:46:50 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:46:50 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:46:50 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:46:50 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:46:50 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:46:50 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:46:50 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:46:50 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:46:50 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:46:50 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:46:50 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:46:50 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:46:50 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:46:50 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:46:50 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:46:50 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:46:50 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:46:50 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:46:50 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:46:50 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:46:50 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:46:50 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:46:50 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:46:50 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:46:50 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:46:50 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:46:50 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:46:50 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:46:50 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:46:50 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:46:51 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:46:51 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:46:51 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:46:51 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:46:51 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:46:51 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:46:51 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:46:51 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:46:51 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:46:51 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:46:51 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:46:51 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:46:51 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:46:51 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:46:51 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:46:51 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:46:51 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:46:51 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:46:51 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:46:51 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:46:51 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:46:51 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:46:51 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:46:51 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:46:51 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:46:51 --> Severity: Notice --> Undefined variable: tot_amount C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 144
+ERROR - 2019-01-09 11:46:51 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:46:51 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:46:51 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:46:51 --> Severity: Notice --> Undefined property: stdClass::$amountreceived C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 315
+ERROR - 2019-01-09 11:46:51 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:46:51 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:46:51 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:46:51 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 324
+ERROR - 2019-01-09 11:46:51 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 324
+ERROR - 2019-01-09 11:46:51 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:46:51 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:46:51 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:46:51 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:46:51 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 325
+ERROR - 2019-01-09 11:46:52 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:46:52 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:46:52 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 325
+ERROR - 2019-01-09 11:46:52 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:46:52 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 326
+ERROR - 2019-01-09 11:46:52 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:46:52 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:46:52 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:46:52 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 326
+ERROR - 2019-01-09 11:46:52 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:46:52 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 327
+ERROR - 2019-01-09 11:46:52 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:46:52 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:46:52 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 327
+ERROR - 2019-01-09 11:46:52 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:46:52 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:46:52 --> Severity: Notice --> Undefined variable: tot_balance C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 353
+ERROR - 2019-01-09 11:46:52 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:46:52 --> Severity: Notice --> Undefined variable: record C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 356
+ERROR - 2019-01-09 11:46:52 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:46:52 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:46:52 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:46:52 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:46:52 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 356
+ERROR - 2019-01-09 11:46:52 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:46:52 --> Severity: Notice --> Undefined property: stdClass::$amountreceived C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 315
+ERROR - 2019-01-09 11:46:52 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:46:52 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 324
+ERROR - 2019-01-09 11:46:52 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:46:52 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:46:52 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:46:52 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:46:52 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 324
+ERROR - 2019-01-09 11:46:52 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 325
+ERROR - 2019-01-09 11:46:52 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:46:52 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:46:52 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 325
+ERROR - 2019-01-09 11:46:52 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:46:52 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:46:52 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:46:52 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 326
+ERROR - 2019-01-09 11:46:52 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:46:53 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:46:53 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 326
+ERROR - 2019-01-09 11:46:53 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:46:53 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:46:53 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:46:53 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 327
+ERROR - 2019-01-09 11:46:53 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:46:53 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:46:53 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 327
+ERROR - 2019-01-09 11:46:53 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:46:53 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:46:53 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:46:53 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:46:53 --> Severity: Notice --> Undefined variable: record C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 356
+ERROR - 2019-01-09 11:46:53 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:46:53 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 356
+ERROR - 2019-01-09 11:46:53 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:46:53 --> Severity: Notice --> Undefined property: stdClass::$amountreceived C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 315
+ERROR - 2019-01-09 11:46:53 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:46:53 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:46:53 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:46:53 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:46:53 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 324
+ERROR - 2019-01-09 11:46:53 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 324
+ERROR - 2019-01-09 11:46:53 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:46:53 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:46:53 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:46:53 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 325
+ERROR - 2019-01-09 11:46:53 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:46:53 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 325
+ERROR - 2019-01-09 11:46:53 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:46:53 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:46:53 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:46:53 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 326
+ERROR - 2019-01-09 11:46:53 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:46:53 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:46:53 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 326
+ERROR - 2019-01-09 11:46:53 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:46:54 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:46:54 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 327
+ERROR - 2019-01-09 11:46:54 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:46:54 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 327
+ERROR - 2019-01-09 11:46:54 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:46:54 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:46:54 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:46:54 --> Severity: Notice --> Undefined variable: record C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 356
+ERROR - 2019-01-09 11:46:54 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:46:54 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 356
+ERROR - 2019-01-09 11:46:54 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:46:54 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:46:54 --> Severity: Notice --> Undefined property: stdClass::$amountreceived C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 315
+ERROR - 2019-01-09 11:46:54 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:46:54 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:46:54 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 324
+ERROR - 2019-01-09 11:46:54 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:46:54 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:46:54 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:46:54 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:46:54 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 324
+ERROR - 2019-01-09 11:46:54 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:46:54 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:46:54 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 325
+ERROR - 2019-01-09 11:46:54 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:46:54 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:46:54 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 325
+ERROR - 2019-01-09 11:46:54 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:46:54 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 326
+ERROR - 2019-01-09 11:46:54 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:46:54 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 326
+ERROR - 2019-01-09 11:46:54 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:46:54 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:46:54 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:46:54 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:46:54 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 327
+ERROR - 2019-01-09 11:46:54 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:46:54 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:46:54 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 327
+ERROR - 2019-01-09 11:46:55 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:46:55 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:46:55 --> Severity: Notice --> Undefined variable: record C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 356
+ERROR - 2019-01-09 11:46:55 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:46:55 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:46:55 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 356
+ERROR - 2019-01-09 11:46:55 --> Severity: Notice --> Undefined property: stdClass::$amountreceived C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 315
+ERROR - 2019-01-09 11:46:55 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:46:55 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:46:55 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:46:55 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 324
+ERROR - 2019-01-09 11:46:55 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:46:55 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:46:55 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:46:55 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 324
+ERROR - 2019-01-09 11:46:55 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:46:55 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:46:55 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 325
+ERROR - 2019-01-09 11:46:55 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:46:55 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:46:55 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 325
+ERROR - 2019-01-09 11:46:55 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 326
+ERROR - 2019-01-09 11:46:55 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:46:55 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:46:55 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:46:55 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 326
+ERROR - 2019-01-09 11:46:55 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:46:55 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:46:55 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:46:55 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 327
+ERROR - 2019-01-09 11:46:55 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:46:55 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:46:55 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 327
+ERROR - 2019-01-09 11:46:55 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:46:55 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:46:55 --> Severity: Notice --> Undefined variable: record C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 356
+ERROR - 2019-01-09 11:46:55 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 356
+ERROR - 2019-01-09 11:46:55 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:46:55 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:46:55 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:46:55 --> Severity: Notice --> Undefined property: stdClass::$amountreceived C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 315
+ERROR - 2019-01-09 11:46:55 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:46:56 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 324
+ERROR - 2019-01-09 11:46:56 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:46:56 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:46:56 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:46:56 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:46:56 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 324
+ERROR - 2019-01-09 11:46:56 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:46:56 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 325
+ERROR - 2019-01-09 11:46:56 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:46:56 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 325
+ERROR - 2019-01-09 11:46:56 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:46:56 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:46:56 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:46:56 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 326
+ERROR - 2019-01-09 11:46:56 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:46:56 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:46:56 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 326
+ERROR - 2019-01-09 11:46:56 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:46:56 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 327
+ERROR - 2019-01-09 11:46:56 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:46:56 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:46:56 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:46:56 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 327
+ERROR - 2019-01-09 11:46:56 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:46:56 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:46:56 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:46:56 --> Severity: Notice --> Undefined variable: record C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 356
+ERROR - 2019-01-09 11:46:56 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:46:56 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:46:56 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 356
+ERROR - 2019-01-09 11:46:56 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:46:56 --> Severity: Notice --> Undefined property: stdClass::$amountreceived C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 315
+ERROR - 2019-01-09 11:46:56 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:46:56 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 324
+ERROR - 2019-01-09 11:46:56 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:46:56 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:46:56 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:46:56 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 324
+ERROR - 2019-01-09 11:46:56 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:46:57 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:46:57 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 325
+ERROR - 2019-01-09 11:46:57 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:46:57 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:46:57 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 325
+ERROR - 2019-01-09 11:46:57 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:46:57 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:46:57 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 326
+ERROR - 2019-01-09 11:46:57 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:46:57 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 326
+ERROR - 2019-01-09 11:46:57 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:46:57 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:46:57 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:46:57 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:46:57 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 327
+ERROR - 2019-01-09 11:46:57 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 327
+ERROR - 2019-01-09 11:46:57 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:46:57 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:46:57 --> Severity: Notice --> Undefined variable: record C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 356
+ERROR - 2019-01-09 11:46:57 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:46:57 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:46:57 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:46:57 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 356
+ERROR - 2019-01-09 11:46:57 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:46:57 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:46:57 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:46:57 --> Severity: Notice --> Undefined property: stdClass::$amountreceived C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 315
+ERROR - 2019-01-09 11:46:57 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 324
+ERROR - 2019-01-09 11:46:57 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:46:57 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:46:57 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:46:57 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 324
+ERROR - 2019-01-09 11:46:57 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:46:57 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 325
+ERROR - 2019-01-09 11:46:57 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:46:57 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:46:57 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 325
+ERROR - 2019-01-09 11:46:57 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:46:58 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:46:58 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:46:58 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 326
+ERROR - 2019-01-09 11:46:58 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 326
+ERROR - 2019-01-09 11:46:58 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:46:58 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:46:58 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:46:58 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:46:58 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 327
+ERROR - 2019-01-09 11:46:58 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 327
+ERROR - 2019-01-09 11:46:58 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:46:58 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:46:58 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:46:58 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:46:58 --> Severity: Notice --> Undefined variable: record C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 356
+ERROR - 2019-01-09 11:46:58 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:46:58 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 356
+ERROR - 2019-01-09 11:46:58 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:46:58 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:46:58 --> Severity: Notice --> Undefined property: stdClass::$amountreceived C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 315
+ERROR - 2019-01-09 11:46:58 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:46:58 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:46:58 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 324
+ERROR - 2019-01-09 11:46:58 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:46:58 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:46:58 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:46:58 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 324
+ERROR - 2019-01-09 11:46:58 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:46:58 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 325
+ERROR - 2019-01-09 11:46:58 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:46:58 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:46:58 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 325
+ERROR - 2019-01-09 11:46:58 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:46:58 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:46:58 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 326
+ERROR - 2019-01-09 11:46:58 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:46:59 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:46:59 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 326
+ERROR - 2019-01-09 11:46:59 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:46:59 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:46:59 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 327
+ERROR - 2019-01-09 11:46:59 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:46:59 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 327
+ERROR - 2019-01-09 11:46:59 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:46:59 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:46:59 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:46:59 --> Severity: Notice --> Undefined variable: record C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 356
+ERROR - 2019-01-09 11:46:59 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:46:59 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:46:59 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:46:59 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 356
+ERROR - 2019-01-09 11:46:59 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:46:59 --> Severity: Notice --> Undefined property: stdClass::$amountreceived C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 315
+ERROR - 2019-01-09 11:46:59 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:46:59 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:46:59 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 324
+ERROR - 2019-01-09 11:46:59 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:46:59 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 324
+ERROR - 2019-01-09 11:46:59 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:46:59 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:46:59 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 325
+ERROR - 2019-01-09 11:46:59 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:46:59 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:46:59 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 325
+ERROR - 2019-01-09 11:46:59 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:46:59 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:46:59 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:46:59 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:46:59 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 326
+ERROR - 2019-01-09 11:46:59 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 326
+ERROR - 2019-01-09 11:46:59 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:47:00 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:47:00 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:47:00 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 327
+ERROR - 2019-01-09 11:47:00 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:47:00 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 327
+ERROR - 2019-01-09 11:47:00 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:47:00 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:47:00 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:47:00 --> Severity: Notice --> Undefined variable: record C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 356
+ERROR - 2019-01-09 11:47:00 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:47:00 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:47:00 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:47:00 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 356
+ERROR - 2019-01-09 11:47:00 --> Severity: Notice --> Undefined property: stdClass::$amountreceived C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 315
+ERROR - 2019-01-09 11:47:00 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:47:00 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:47:00 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:47:00 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:47:00 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 324
+ERROR - 2019-01-09 11:47:00 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:47:00 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:47:00 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 324
+ERROR - 2019-01-09 11:47:00 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:47:00 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 325
+ERROR - 2019-01-09 11:47:00 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:47:00 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:47:00 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:47:00 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 325
+ERROR - 2019-01-09 11:47:00 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 326
+ERROR - 2019-01-09 11:47:00 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:47:00 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:47:00 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:47:00 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:47:00 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 326
+ERROR - 2019-01-09 11:47:01 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:47:01 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:47:01 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 327
+ERROR - 2019-01-09 11:47:01 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:47:01 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:47:01 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 327
+ERROR - 2019-01-09 11:47:01 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:47:01 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:47:01 --> Severity: Notice --> Undefined variable: record C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 356
+ERROR - 2019-01-09 11:47:01 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:47:01 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 356
+ERROR - 2019-01-09 11:47:01 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:47:01 --> Severity: Notice --> Undefined property: stdClass::$amountreceived C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 315
+ERROR - 2019-01-09 11:47:01 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:47:01 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:47:01 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:47:01 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:47:01 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 324
+ERROR - 2019-01-09 11:47:01 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:47:01 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 324
+ERROR - 2019-01-09 11:47:01 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:47:01 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:47:01 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 325
+ERROR - 2019-01-09 11:47:01 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:47:01 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:47:01 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 325
+ERROR - 2019-01-09 11:47:01 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:47:01 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:47:01 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:47:01 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 326
+ERROR - 2019-01-09 11:47:01 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:47:01 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:47:01 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 326
+ERROR - 2019-01-09 11:47:01 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 327
+ERROR - 2019-01-09 11:47:01 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:47:01 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:47:01 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:47:01 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:47:01 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 327
+ERROR - 2019-01-09 11:47:02 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:47:02 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:47:02 --> Severity: Notice --> Undefined variable: record C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 356
+ERROR - 2019-01-09 11:47:02 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 356
+ERROR - 2019-01-09 11:47:02 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:47:02 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:47:02 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:47:02 --> Severity: Notice --> Undefined property: stdClass::$amountreceived C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 315
+ERROR - 2019-01-09 11:47:02 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:47:02 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 324
+ERROR - 2019-01-09 11:47:02 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:47:02 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:47:02 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:47:02 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 324
+ERROR - 2019-01-09 11:47:02 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:47:02 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 325
+ERROR - 2019-01-09 11:47:02 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:47:02 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:47:02 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 325
+ERROR - 2019-01-09 11:47:02 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:47:02 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:47:02 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:47:02 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 326
+ERROR - 2019-01-09 11:47:02 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:47:02 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 326
+ERROR - 2019-01-09 11:47:02 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:47:02 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:47:02 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:47:02 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:47:02 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 327
+ERROR - 2019-01-09 11:47:02 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:47:02 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 327
+ERROR - 2019-01-09 11:47:02 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:47:02 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:47:02 --> Severity: Notice --> Undefined variable: record C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 356
+ERROR - 2019-01-09 11:47:02 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:47:02 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:47:02 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 356
+ERROR - 2019-01-09 11:47:02 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:47:03 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:47:03 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:47:03 --> Severity: Notice --> Undefined property: stdClass::$amountreceived C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 315
+ERROR - 2019-01-09 11:47:03 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:47:03 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:47:03 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 324
+ERROR - 2019-01-09 11:47:03 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:47:03 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:47:03 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 324
+ERROR - 2019-01-09 11:47:03 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 325
+ERROR - 2019-01-09 11:47:03 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:47:03 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:47:03 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:47:03 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:47:03 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 325
+ERROR - 2019-01-09 11:47:03 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 326
+ERROR - 2019-01-09 11:47:03 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:47:03 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:47:03 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 326
+ERROR - 2019-01-09 11:47:03 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:47:03 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:47:03 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:47:03 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 327
+ERROR - 2019-01-09 11:47:03 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:47:03 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:47:03 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 327
+ERROR - 2019-01-09 11:47:03 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:47:03 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:47:03 --> Severity: Notice --> Undefined variable: record C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 356
+ERROR - 2019-01-09 11:47:03 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:47:03 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 356
+ERROR - 2019-01-09 11:47:03 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:47:03 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:47:03 --> Severity: Notice --> Undefined property: stdClass::$amountreceived C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 315
+ERROR - 2019-01-09 11:47:03 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:47:03 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:47:03 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:47:03 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:47:03 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 324
+ERROR - 2019-01-09 11:47:04 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:47:04 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 324
+ERROR - 2019-01-09 11:47:04 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:47:04 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 325
+ERROR - 2019-01-09 11:47:04 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:47:04 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:47:04 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 325
+ERROR - 2019-01-09 11:47:04 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:47:04 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:47:04 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:47:04 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:47:04 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 326
+ERROR - 2019-01-09 11:47:04 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:47:04 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 326
+ERROR - 2019-01-09 11:47:04 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:47:04 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 327
+ERROR - 2019-01-09 11:47:04 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:47:04 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:47:04 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:47:04 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:47:04 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 327
+ERROR - 2019-01-09 11:47:04 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:47:04 --> Severity: Notice --> Undefined variable: record C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 356
+ERROR - 2019-01-09 11:47:04 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:47:04 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:47:04 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 356
+ERROR - 2019-01-09 11:47:04 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:47:04 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:47:04 --> Severity: Notice --> Undefined property: stdClass::$amountreceived C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 315
+ERROR - 2019-01-09 11:47:04 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:47:04 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:47:04 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 324
+ERROR - 2019-01-09 11:47:04 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:47:04 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 324
+ERROR - 2019-01-09 11:47:04 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:47:04 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:47:04 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 325
+ERROR - 2019-01-09 11:47:04 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:47:04 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:47:05 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:47:05 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 325
+ERROR - 2019-01-09 11:47:05 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:47:05 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:47:05 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 326
+ERROR - 2019-01-09 11:47:05 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:47:05 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 326
+ERROR - 2019-01-09 11:47:05 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:47:05 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:47:05 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 327
+ERROR - 2019-01-09 11:47:05 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:47:05 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:47:05 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:47:05 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:47:05 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 327
+ERROR - 2019-01-09 11:47:05 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:47:05 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:47:05 --> Severity: Notice --> Undefined variable: record C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 356
+ERROR - 2019-01-09 11:47:05 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:47:05 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 356
+ERROR - 2019-01-09 11:47:05 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:47:05 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:47:05 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:47:05 --> Severity: Notice --> Undefined property: stdClass::$amountreceived C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 315
+ERROR - 2019-01-09 11:47:05 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:47:05 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 324
+ERROR - 2019-01-09 11:47:05 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:47:05 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 324
+ERROR - 2019-01-09 11:47:05 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:47:05 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:47:05 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:47:05 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 325
+ERROR - 2019-01-09 11:47:05 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:47:05 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:47:05 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 325
+ERROR - 2019-01-09 11:47:05 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:47:05 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 326
+ERROR - 2019-01-09 11:47:05 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:47:05 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:47:06 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:47:06 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 326
+ERROR - 2019-01-09 11:47:06 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:47:06 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:47:06 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:47:06 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 327
+ERROR - 2019-01-09 11:47:06 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 327
+ERROR - 2019-01-09 11:47:06 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:47:06 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:47:06 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:47:06 --> Severity: Notice --> Undefined variable: record C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 356
+ERROR - 2019-01-09 11:47:06 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:47:06 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 356
+ERROR - 2019-01-09 11:47:06 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:47:06 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:47:06 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:47:06 --> Severity: Notice --> Undefined property: stdClass::$amountreceived C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 315
+ERROR - 2019-01-09 11:47:06 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:47:06 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 324
+ERROR - 2019-01-09 11:47:06 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:47:06 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:47:06 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:47:06 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 324
+ERROR - 2019-01-09 11:47:06 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:47:06 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 325
+ERROR - 2019-01-09 11:47:06 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:47:06 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:47:06 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:47:06 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:47:06 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 325
+ERROR - 2019-01-09 11:47:06 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 326
+ERROR - 2019-01-09 11:47:06 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:47:06 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:47:06 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:47:06 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:47:06 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 326
+ERROR - 2019-01-09 11:47:06 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:47:06 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 327
+ERROR - 2019-01-09 11:47:06 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:47:07 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:47:07 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:47:07 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 327
+ERROR - 2019-01-09 11:47:07 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:47:07 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:47:07 --> Severity: Notice --> Undefined variable: record C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 356
+ERROR - 2019-01-09 11:47:07 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 356
+ERROR - 2019-01-09 11:47:07 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:47:07 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:47:07 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:47:07 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:47:07 --> Severity: Notice --> Undefined property: stdClass::$amountreceived C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 315
+ERROR - 2019-01-09 11:47:07 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 324
+ERROR - 2019-01-09 11:47:07 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:47:07 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:47:07 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 324
+ERROR - 2019-01-09 11:47:07 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:47:07 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:47:07 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:47:07 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:47:07 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 325
+ERROR - 2019-01-09 11:47:07 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:47:07 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:47:07 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 325
+ERROR - 2019-01-09 11:47:07 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:47:07 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:47:07 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 326
+ERROR - 2019-01-09 11:47:07 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 326
+ERROR - 2019-01-09 11:47:07 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:47:07 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:47:07 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:47:07 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:47:07 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 327
+ERROR - 2019-01-09 11:47:07 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 327
+ERROR - 2019-01-09 11:47:07 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:47:07 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:47:08 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:47:08 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:47:08 --> Severity: Notice --> Undefined variable: record C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 356
+ERROR - 2019-01-09 11:47:08 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:47:08 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:47:08 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 356
+ERROR - 2019-01-09 11:47:08 --> Severity: Notice --> Undefined property: stdClass::$amountreceived C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 315
+ERROR - 2019-01-09 11:47:08 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:47:08 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:47:08 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 324
+ERROR - 2019-01-09 11:47:08 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:47:08 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:47:08 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 324
+ERROR - 2019-01-09 11:47:08 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:47:08 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:47:08 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 325
+ERROR - 2019-01-09 11:47:08 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:47:08 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:47:08 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 325
+ERROR - 2019-01-09 11:47:08 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:47:08 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 326
+ERROR - 2019-01-09 11:47:08 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:47:08 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 326
+ERROR - 2019-01-09 11:47:08 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:47:08 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:47:08 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:47:08 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 327
+ERROR - 2019-01-09 11:47:08 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:47:08 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:47:08 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:47:08 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 327
+ERROR - 2019-01-09 11:47:08 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:47:09 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:47:09 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:47:09 --> Severity: Notice --> Undefined variable: record C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 356
+ERROR - 2019-01-09 11:47:09 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 356
+ERROR - 2019-01-09 11:47:09 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:47:09 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:47:09 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:47:09 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:47:09 --> Severity: Notice --> Undefined property: stdClass::$amountreceived C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 315
+ERROR - 2019-01-09 11:47:09 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:47:09 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 324
+ERROR - 2019-01-09 11:47:09 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:47:09 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:47:09 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 324
+ERROR - 2019-01-09 11:47:09 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:47:09 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:47:09 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 325
+ERROR - 2019-01-09 11:47:09 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:47:09 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:47:09 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:47:09 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 325
+ERROR - 2019-01-09 11:47:09 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:47:09 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:47:09 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 326
+ERROR - 2019-01-09 11:47:09 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:47:09 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:47:09 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 326
+ERROR - 2019-01-09 11:47:09 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:47:09 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 327
+ERROR - 2019-01-09 11:47:09 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:47:09 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 327
+ERROR - 2019-01-09 11:47:09 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:47:09 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:47:09 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:47:09 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:47:09 --> Severity: Notice --> Undefined variable: record C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 356
+ERROR - 2019-01-09 11:47:10 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:47:10 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 356
+ERROR - 2019-01-09 11:47:10 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:47:10 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:47:10 --> Severity: Notice --> Undefined property: stdClass::$amountreceived C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 315
+ERROR - 2019-01-09 11:47:10 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:47:10 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:47:10 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:47:10 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 324
+ERROR - 2019-01-09 11:47:10 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:47:10 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:47:10 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 324
+ERROR - 2019-01-09 11:47:10 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:47:10 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:47:10 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 325
+ERROR - 2019-01-09 11:47:10 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:47:10 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 325
+ERROR - 2019-01-09 11:47:10 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:47:10 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 326
+ERROR - 2019-01-09 11:47:10 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:47:10 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:47:10 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:47:10 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:47:10 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 326
+ERROR - 2019-01-09 11:47:10 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:47:10 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:47:10 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 327
+ERROR - 2019-01-09 11:47:10 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:47:10 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 327
+ERROR - 2019-01-09 11:47:10 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:47:10 --> Severity: Notice --> Undefined variable: record C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 356
+ERROR - 2019-01-09 11:47:10 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:47:10 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:47:10 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:47:10 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 356
+ERROR - 2019-01-09 11:47:10 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:47:11 --> Severity: Notice --> Undefined property: stdClass::$amountreceived C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 315
+ERROR - 2019-01-09 11:47:11 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:47:11 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:47:11 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:47:11 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:47:11 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 324
+ERROR - 2019-01-09 11:47:11 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:47:11 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 324
+ERROR - 2019-01-09 11:47:11 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:47:11 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:47:11 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 325
+ERROR - 2019-01-09 11:47:11 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 325
+ERROR - 2019-01-09 11:47:11 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:47:11 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:47:11 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 326
+ERROR - 2019-01-09 11:47:11 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:47:11 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:47:11 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:47:11 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:47:11 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 326
+ERROR - 2019-01-09 11:47:11 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:47:11 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 327
+ERROR - 2019-01-09 11:47:11 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:47:11 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 327
+ERROR - 2019-01-09 11:47:11 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:47:11 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:47:11 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:47:11 --> Severity: Notice --> Undefined variable: record C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 356
+ERROR - 2019-01-09 11:47:11 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:47:11 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:47:11 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 356
+ERROR - 2019-01-09 11:47:11 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:47:11 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:47:11 --> Severity: Notice --> Undefined property: stdClass::$amountreceived C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 315
+ERROR - 2019-01-09 11:47:11 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:47:11 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:47:11 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 324
+ERROR - 2019-01-09 11:47:11 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:47:12 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 324
+ERROR - 2019-01-09 11:47:12 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:47:12 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:47:12 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:47:12 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:47:12 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 325
+ERROR - 2019-01-09 11:47:12 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:47:12 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 325
+ERROR - 2019-01-09 11:47:12 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:47:12 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 326
+ERROR - 2019-01-09 11:47:12 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:47:12 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:47:12 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:47:12 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 326
+ERROR - 2019-01-09 11:47:12 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:47:12 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 327
+ERROR - 2019-01-09 11:47:12 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:47:12 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:47:12 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 327
+ERROR - 2019-01-09 11:47:12 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:47:12 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:47:12 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:47:12 --> Severity: Notice --> Undefined variable: record C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 356
+ERROR - 2019-01-09 11:47:12 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:47:12 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:47:12 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:47:12 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 356
+ERROR - 2019-01-09 11:47:12 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:47:12 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:47:12 --> Severity: Notice --> Undefined property: stdClass::$amountreceived C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 315
+ERROR - 2019-01-09 11:47:12 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:47:12 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 324
+ERROR - 2019-01-09 11:47:12 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:47:12 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:47:12 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:47:12 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 324
+ERROR - 2019-01-09 11:47:13 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 325
+ERROR - 2019-01-09 11:47:13 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:47:13 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:47:13 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:47:13 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:47:13 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 325
+ERROR - 2019-01-09 11:47:13 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 326
+ERROR - 2019-01-09 11:47:13 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:47:13 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:47:13 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:47:13 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 326
+ERROR - 2019-01-09 11:47:13 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:47:13 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:47:13 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 327
+ERROR - 2019-01-09 11:47:13 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:47:13 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 327
+ERROR - 2019-01-09 11:47:13 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:47:13 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:47:13 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:47:13 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:47:13 --> Severity: Notice --> Undefined variable: record C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 356
+ERROR - 2019-01-09 11:47:13 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:47:13 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 356
+ERROR - 2019-01-09 11:47:13 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:47:13 --> Severity: Notice --> Undefined property: stdClass::$amountreceived C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 315
+ERROR - 2019-01-09 11:47:13 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:47:13 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:47:13 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:47:13 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:47:13 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 324
+ERROR - 2019-01-09 11:47:13 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 324
+ERROR - 2019-01-09 11:47:13 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:47:13 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:47:13 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:47:13 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:47:13 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 325
+ERROR - 2019-01-09 11:47:14 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:47:14 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:47:14 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 325
+ERROR - 2019-01-09 11:47:14 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:47:14 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 326
+ERROR - 2019-01-09 11:47:14 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:47:14 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:47:14 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:47:14 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 326
+ERROR - 2019-01-09 11:47:14 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:47:14 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:47:14 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 327
+ERROR - 2019-01-09 11:47:14 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:47:14 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:47:14 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 327
+ERROR - 2019-01-09 11:47:14 --> Severity: Notice --> Undefined variable: record C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 356
+ERROR - 2019-01-09 11:47:14 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:47:14 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:47:14 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:47:14 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 356
+ERROR - 2019-01-09 11:47:14 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:47:14 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:47:14 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:47:14 --> Severity: Notice --> Undefined property: stdClass::$amountreceived C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 315
+ERROR - 2019-01-09 11:47:14 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 324
+ERROR - 2019-01-09 11:47:14 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:47:14 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:47:14 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:47:14 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:47:14 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 324
+ERROR - 2019-01-09 11:47:14 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:47:14 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:47:14 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 325
+ERROR - 2019-01-09 11:47:14 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:47:14 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:47:14 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 325
+ERROR - 2019-01-09 11:47:15 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:47:15 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 326
+ERROR - 2019-01-09 11:47:15 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:47:15 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:47:15 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 326
+ERROR - 2019-01-09 11:47:15 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:47:15 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:47:15 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 327
+ERROR - 2019-01-09 11:47:15 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:47:15 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:47:15 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:47:15 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 327
+ERROR - 2019-01-09 11:47:15 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:47:15 --> Severity: Notice --> Undefined variable: record C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 356
+ERROR - 2019-01-09 11:47:15 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:47:15 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 356
+ERROR - 2019-01-09 11:47:15 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:47:15 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:47:15 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:47:15 --> Severity: Notice --> Undefined property: stdClass::$amountreceived C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 315
+ERROR - 2019-01-09 11:47:15 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:47:15 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:47:15 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 324
+ERROR - 2019-01-09 11:47:15 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:47:15 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 324
+ERROR - 2019-01-09 11:47:15 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:47:15 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:47:15 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 325
+ERROR - 2019-01-09 11:47:15 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:47:15 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:47:15 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:47:15 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 325
+ERROR - 2019-01-09 11:47:15 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:47:15 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:47:15 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 326
+ERROR - 2019-01-09 11:47:15 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:47:15 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:47:15 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 326
+ERROR - 2019-01-09 11:47:15 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:47:16 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:47:16 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:47:16 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 327
+ERROR - 2019-01-09 11:47:16 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:47:16 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 327
+ERROR - 2019-01-09 11:47:16 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:47:16 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:47:16 --> Severity: Notice --> Undefined variable: record C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 356
+ERROR - 2019-01-09 11:47:16 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:47:16 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 356
+ERROR - 2019-01-09 11:47:16 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:47:16 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:47:16 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:47:16 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:47:16 --> Severity: Notice --> Undefined property: stdClass::$amountreceived C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 315
+ERROR - 2019-01-09 11:47:16 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:47:16 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 324
+ERROR - 2019-01-09 11:47:16 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:47:16 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 324
+ERROR - 2019-01-09 11:47:16 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:47:16 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:47:16 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:47:16 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:47:16 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 325
+ERROR - 2019-01-09 11:47:16 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:47:16 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 325
+ERROR - 2019-01-09 11:47:16 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:47:16 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 326
+ERROR - 2019-01-09 11:47:16 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:47:16 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:47:16 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:47:16 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:47:16 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 326
+ERROR - 2019-01-09 11:47:16 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:47:16 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:47:16 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 327
+ERROR - 2019-01-09 11:47:17 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:47:17 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:47:17 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 327
+ERROR - 2019-01-09 11:47:17 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:47:17 --> Severity: Notice --> Undefined variable: record C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 356
+ERROR - 2019-01-09 11:47:17 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:47:17 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:47:17 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:47:17 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 356
+ERROR - 2019-01-09 11:47:17 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:47:17 --> Severity: Notice --> Undefined property: stdClass::$amountreceived C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 315
+ERROR - 2019-01-09 11:47:17 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:47:17 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 324
+ERROR - 2019-01-09 11:47:17 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:47:17 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:47:17 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:47:17 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 324
+ERROR - 2019-01-09 11:47:17 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:47:17 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:47:17 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:47:17 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 325
+ERROR - 2019-01-09 11:47:17 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:47:17 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:47:17 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 325
+ERROR - 2019-01-09 11:47:17 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:47:17 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:47:17 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 326
+ERROR - 2019-01-09 11:47:17 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:47:17 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 326
+ERROR - 2019-01-09 11:47:17 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:47:17 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:47:17 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:47:17 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 327
+ERROR - 2019-01-09 11:47:17 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 327
+ERROR - 2019-01-09 11:47:17 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:47:17 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:47:18 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:47:18 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:47:18 --> Severity: Notice --> Undefined variable: record C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 356
+ERROR - 2019-01-09 11:47:18 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 356
+ERROR - 2019-01-09 11:47:18 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:47:18 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:47:18 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:47:18 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:47:18 --> Severity: Notice --> Undefined property: stdClass::$amountreceived C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 315
+ERROR - 2019-01-09 11:47:18 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:47:18 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 324
+ERROR - 2019-01-09 11:47:18 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:47:18 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 324
+ERROR - 2019-01-09 11:47:18 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:47:18 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:47:18 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 325
+ERROR - 2019-01-09 11:47:18 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:47:18 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:47:18 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:47:18 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 325
+ERROR - 2019-01-09 11:47:18 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:47:18 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 326
+ERROR - 2019-01-09 11:47:18 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:47:18 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:47:18 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:47:18 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:47:18 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 326
+ERROR - 2019-01-09 11:47:18 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 327
+ERROR - 2019-01-09 11:47:18 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:47:18 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:47:18 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:47:18 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 327
+ERROR - 2019-01-09 11:47:18 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:47:18 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:47:18 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:47:18 --> Severity: Notice --> Undefined variable: record C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 356
+ERROR - 2019-01-09 11:47:18 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:47:18 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:47:18 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 356
+ERROR - 2019-01-09 11:47:19 --> Severity: Notice --> Undefined property: stdClass::$amountreceived C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 315
+ERROR - 2019-01-09 11:47:19 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:47:19 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:47:19 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:47:19 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:47:19 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 324
+ERROR - 2019-01-09 11:47:19 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:47:19 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:47:19 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 324
+ERROR - 2019-01-09 11:47:19 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:47:19 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 325
+ERROR - 2019-01-09 11:47:19 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:47:19 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 325
+ERROR - 2019-01-09 11:47:19 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:47:19 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:47:19 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:47:19 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:47:19 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 326
+ERROR - 2019-01-09 11:47:19 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:47:19 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:47:19 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:47:19 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 326
+ERROR - 2019-01-09 11:47:19 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:47:19 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:47:19 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 327
+ERROR - 2019-01-09 11:47:19 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:47:19 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 327
+ERROR - 2019-01-09 11:47:19 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:47:19 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:47:19 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:47:19 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:47:19 --> Severity: Notice --> Undefined variable: record C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 356
+ERROR - 2019-01-09 11:47:20 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:47:20 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 356
+ERROR - 2019-01-09 11:47:20 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:47:20 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:47:20 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:47:20 --> Severity: Notice --> Undefined property: stdClass::$amountreceived C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 315
+ERROR - 2019-01-09 11:47:20 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 324
+ERROR - 2019-01-09 11:47:20 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:47:20 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:47:20 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 324
+ERROR - 2019-01-09 11:47:20 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:47:20 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:47:20 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 325
+ERROR - 2019-01-09 11:47:20 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:47:20 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:47:20 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:47:20 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 325
+ERROR - 2019-01-09 11:47:20 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 326
+ERROR - 2019-01-09 11:47:20 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:47:20 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:47:20 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:47:20 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 326
+ERROR - 2019-01-09 11:47:20 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:47:20 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:47:20 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:47:20 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 327
+ERROR - 2019-01-09 11:47:20 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 327
+ERROR - 2019-01-09 11:47:20 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:47:20 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:47:20 --> Severity: Notice --> Undefined variable: record C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 356
+ERROR - 2019-01-09 11:47:20 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:47:20 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:47:20 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:47:20 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:47:20 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 356
+ERROR - 2019-01-09 11:47:21 --> Severity: Notice --> Undefined property: stdClass::$amountreceived C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 315
+ERROR - 2019-01-09 11:47:21 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:47:21 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:47:21 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:47:21 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:47:21 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 324
+ERROR - 2019-01-09 11:47:21 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:47:21 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 324
+ERROR - 2019-01-09 11:47:21 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:47:21 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:47:21 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 325
+ERROR - 2019-01-09 11:47:21 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:47:21 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:47:21 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 325
+ERROR - 2019-01-09 11:47:21 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:47:21 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:47:21 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:47:21 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 326
+ERROR - 2019-01-09 11:47:21 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:47:21 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 326
+ERROR - 2019-01-09 11:47:21 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:47:21 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:47:21 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:47:21 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 327
+ERROR - 2019-01-09 11:47:21 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:47:21 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:47:21 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 327
+ERROR - 2019-01-09 11:47:21 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:47:21 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:47:21 --> Severity: Notice --> Undefined variable: record C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 356
+ERROR - 2019-01-09 11:47:21 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:47:21 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:47:21 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 356
+ERROR - 2019-01-09 11:47:21 --> Severity: Notice --> Undefined property: stdClass::$amountreceived C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 315
+ERROR - 2019-01-09 11:47:21 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:47:21 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:47:22 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:47:22 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 324
+ERROR - 2019-01-09 11:47:22 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:47:22 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:47:22 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:47:22 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 324
+ERROR - 2019-01-09 11:47:22 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 325
+ERROR - 2019-01-09 11:47:22 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:47:22 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:47:22 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:47:22 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 325
+ERROR - 2019-01-09 11:47:22 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:47:22 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:47:22 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 326
+ERROR - 2019-01-09 11:47:22 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 326
+ERROR - 2019-01-09 11:47:22 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:47:22 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:47:22 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:47:22 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 327
+ERROR - 2019-01-09 11:47:22 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:47:22 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 327
+ERROR - 2019-01-09 11:47:22 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:47:22 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:47:22 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:47:22 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:47:22 --> Severity: Notice --> Undefined variable: record C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 356
+ERROR - 2019-01-09 11:47:22 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:47:22 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:47:22 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 356
+ERROR - 2019-01-09 11:47:22 --> Severity: Notice --> Undefined property: stdClass::$amountreceived C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 315
+ERROR - 2019-01-09 11:47:22 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:47:22 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:47:22 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:47:22 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:47:22 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 324
+ERROR - 2019-01-09 11:47:23 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:47:23 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:47:23 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 324
+ERROR - 2019-01-09 11:47:23 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:47:23 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:47:23 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 325
+ERROR - 2019-01-09 11:47:23 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:47:23 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 325
+ERROR - 2019-01-09 11:47:23 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:47:23 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:47:23 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 326
+ERROR - 2019-01-09 11:47:23 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:47:23 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:47:23 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 326
+ERROR - 2019-01-09 11:47:23 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:47:23 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:47:23 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:47:23 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 327
+ERROR - 2019-01-09 11:47:23 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:47:23 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 327
+ERROR - 2019-01-09 11:47:23 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:47:23 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:47:23 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:47:23 --> Severity: Notice --> Undefined variable: record C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 356
+ERROR - 2019-01-09 11:47:23 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 356
+ERROR - 2019-01-09 11:47:23 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:47:23 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:47:23 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:47:23 --> Severity: Notice --> Undefined property: stdClass::$amountreceived C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 315
+ERROR - 2019-01-09 11:47:23 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:47:23 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 324
+ERROR - 2019-01-09 11:47:23 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:47:23 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:47:23 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:47:23 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:47:23 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 324
+ERROR - 2019-01-09 11:47:24 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 325
+ERROR - 2019-01-09 11:47:24 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:47:24 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:47:24 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:47:24 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:47:24 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 325
+ERROR - 2019-01-09 11:47:24 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:47:24 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 326
+ERROR - 2019-01-09 11:47:24 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:47:24 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 326
+ERROR - 2019-01-09 11:47:24 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:47:24 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:47:24 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:47:24 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:47:24 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 327
+ERROR - 2019-01-09 11:47:24 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 327
+ERROR - 2019-01-09 11:47:24 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:47:24 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:47:24 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:47:24 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:47:24 --> Severity: Notice --> Undefined variable: record C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 356
+ERROR - 2019-01-09 11:47:24 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:47:24 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 356
+ERROR - 2019-01-09 11:47:24 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:47:24 --> Severity: Notice --> Undefined property: stdClass::$amountreceived C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 315
+ERROR - 2019-01-09 11:47:24 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:47:24 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:47:24 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 324
+ERROR - 2019-01-09 11:47:24 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:47:24 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:47:24 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:47:24 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:47:24 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 324
+ERROR - 2019-01-09 11:47:25 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:47:25 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:47:25 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 325
+ERROR - 2019-01-09 11:47:25 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:47:25 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 325
+ERROR - 2019-01-09 11:47:25 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:47:25 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 326
+ERROR - 2019-01-09 11:47:25 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:47:25 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:47:25 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:47:25 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:47:25 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 326
+ERROR - 2019-01-09 11:47:25 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:47:25 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:47:25 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 327
+ERROR - 2019-01-09 11:47:25 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:47:25 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 327
+ERROR - 2019-01-09 11:47:25 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:47:25 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:47:25 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:47:25 --> Severity: Notice --> Undefined variable: record C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 356
+ERROR - 2019-01-09 11:47:25 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:47:25 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 356
+ERROR - 2019-01-09 11:47:25 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:47:25 --> Severity: Notice --> Undefined property: stdClass::$amountreceived C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 315
+ERROR - 2019-01-09 11:47:25 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:47:25 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:47:25 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:47:25 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:47:25 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 324
+ERROR - 2019-01-09 11:47:25 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 324
+ERROR - 2019-01-09 11:47:25 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:47:25 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:47:25 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:47:25 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 325
+ERROR - 2019-01-09 11:47:25 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:47:26 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 325
+ERROR - 2019-01-09 11:47:26 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:47:26 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:47:26 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:47:26 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:47:26 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 326
+ERROR - 2019-01-09 11:47:26 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:47:26 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:47:26 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 326
+ERROR - 2019-01-09 11:47:26 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 327
+ERROR - 2019-01-09 11:47:26 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:47:26 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:47:26 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:47:26 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 327
+ERROR - 2019-01-09 11:47:26 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:47:26 --> Severity: Notice --> Undefined variable: record C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 356
+ERROR - 2019-01-09 11:47:26 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:47:26 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:47:26 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:47:26 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:47:26 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 356
+ERROR - 2019-01-09 11:47:26 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:47:26 --> Severity: Notice --> Undefined property: stdClass::$amountreceived C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 315
+ERROR - 2019-01-09 11:47:26 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:47:26 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:47:26 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:47:26 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 324
+ERROR - 2019-01-09 11:47:26 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:47:26 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:47:26 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 324
+ERROR - 2019-01-09 11:47:26 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 325
+ERROR - 2019-01-09 11:47:26 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:47:26 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:47:26 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:47:26 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 325
+ERROR - 2019-01-09 11:47:26 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:47:27 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 326
+ERROR - 2019-01-09 11:47:27 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:47:27 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:47:27 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:47:27 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:47:27 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 326
+ERROR - 2019-01-09 11:47:27 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 327
+ERROR - 2019-01-09 11:47:27 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:47:27 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:47:27 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:47:27 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:47:27 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 327
+ERROR - 2019-01-09 11:47:27 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:47:27 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:47:27 --> Severity: Notice --> Undefined variable: record C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 356
+ERROR - 2019-01-09 11:47:27 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:47:27 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 356
+ERROR - 2019-01-09 11:47:27 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:47:27 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:47:27 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:47:27 --> Severity: Notice --> Undefined property: stdClass::$amountreceived C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 315
+ERROR - 2019-01-09 11:47:27 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 324
+ERROR - 2019-01-09 11:47:27 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:47:27 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:47:27 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:47:27 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 324
+ERROR - 2019-01-09 11:47:27 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:47:27 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:47:27 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 325
+ERROR - 2019-01-09 11:47:27 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:47:27 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:47:27 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 325
+ERROR - 2019-01-09 11:47:27 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:47:27 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:47:27 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 326
+ERROR - 2019-01-09 11:47:28 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:47:28 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:47:28 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 326
+ERROR - 2019-01-09 11:47:28 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:47:28 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:47:28 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 327
+ERROR - 2019-01-09 11:47:28 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:47:28 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 327
+ERROR - 2019-01-09 11:47:28 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:47:28 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:47:28 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:47:28 --> Severity: Notice --> Undefined variable: record C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 356
+ERROR - 2019-01-09 11:47:28 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:47:28 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 356
+ERROR - 2019-01-09 11:47:28 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:47:28 --> Severity: Notice --> Undefined property: stdClass::$amountreceived C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 315
+ERROR - 2019-01-09 11:47:28 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:47:28 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:47:28 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:47:28 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 324
+ERROR - 2019-01-09 11:47:28 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:47:28 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:47:28 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 324
+ERROR - 2019-01-09 11:47:28 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:47:28 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:47:28 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:47:28 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 325
+ERROR - 2019-01-09 11:47:28 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:47:28 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 325
+ERROR - 2019-01-09 11:47:28 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:47:28 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 326
+ERROR - 2019-01-09 11:47:28 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:47:28 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:47:28 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:47:28 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 326
+ERROR - 2019-01-09 11:47:28 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:47:29 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:47:29 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:47:29 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 327
+ERROR - 2019-01-09 11:47:29 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:47:29 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 327
+ERROR - 2019-01-09 11:47:29 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:47:29 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:47:29 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:47:29 --> Severity: Notice --> Undefined variable: record C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 356
+ERROR - 2019-01-09 11:47:29 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:47:29 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 356
+ERROR - 2019-01-09 11:47:29 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:47:29 --> Severity: Notice --> Undefined property: stdClass::$amountreceived C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 315
+ERROR - 2019-01-09 11:47:29 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:47:29 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:47:29 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:47:29 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 324
+ERROR - 2019-01-09 11:47:29 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:47:29 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:47:29 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 324
+ERROR - 2019-01-09 11:47:29 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:47:29 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 325
+ERROR - 2019-01-09 11:47:29 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:47:29 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:47:29 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:47:29 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 325
+ERROR - 2019-01-09 11:47:29 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 326
+ERROR - 2019-01-09 11:47:29 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:47:29 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:47:29 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:47:29 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:47:29 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 326
+ERROR - 2019-01-09 11:47:29 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 327
+ERROR - 2019-01-09 11:47:29 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:47:29 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:47:30 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:47:30 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 327
+ERROR - 2019-01-09 11:47:30 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:47:30 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:47:30 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:47:30 --> Severity: Notice --> Undefined variable: record C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 356
+ERROR - 2019-01-09 11:47:30 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:47:30 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:47:30 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 356
+ERROR - 2019-01-09 11:47:30 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:47:30 --> Severity: Notice --> Undefined property: stdClass::$amountreceived C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 315
+ERROR - 2019-01-09 11:47:30 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:47:30 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:47:30 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 324
+ERROR - 2019-01-09 11:47:30 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:47:30 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:47:30 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 324
+ERROR - 2019-01-09 11:47:30 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:47:30 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 325
+ERROR - 2019-01-09 11:47:30 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:47:30 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:47:30 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:47:30 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 325
+ERROR - 2019-01-09 11:47:30 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:47:30 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:47:30 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 326
+ERROR - 2019-01-09 11:47:30 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:47:30 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:47:30 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 326
+ERROR - 2019-01-09 11:47:30 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:47:30 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:47:30 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:47:30 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 327
+ERROR - 2019-01-09 11:47:31 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:47:31 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:47:31 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 327
+ERROR - 2019-01-09 11:47:31 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:47:31 --> Severity: Notice --> Undefined variable: record C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 356
+ERROR - 2019-01-09 11:47:31 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:47:31 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:47:31 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:47:31 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 356
+ERROR - 2019-01-09 11:47:31 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:47:31 --> Severity: Notice --> Undefined property: stdClass::$amountreceived C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 315
+ERROR - 2019-01-09 11:47:31 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:47:31 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 324
+ERROR - 2019-01-09 11:47:31 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:47:31 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:47:31 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:47:31 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:47:31 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 324
+ERROR - 2019-01-09 11:47:31 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 325
+ERROR - 2019-01-09 11:47:31 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:47:31 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:47:31 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:47:31 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 325
+ERROR - 2019-01-09 11:47:31 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:47:31 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:47:31 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 326
+ERROR - 2019-01-09 11:47:31 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:47:31 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:47:31 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 326
+ERROR - 2019-01-09 11:47:31 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:47:31 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:47:31 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 327
+ERROR - 2019-01-09 11:47:31 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:47:31 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:47:31 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:47:31 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 327
+ERROR - 2019-01-09 11:47:32 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:47:32 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:47:32 --> Severity: Notice --> Undefined variable: record C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 356
+ERROR - 2019-01-09 11:47:32 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:47:32 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:47:32 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 356
+ERROR - 2019-01-09 11:47:32 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:47:32 --> Severity: Notice --> Undefined property: stdClass::$amountreceived C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 315
+ERROR - 2019-01-09 11:47:32 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:47:32 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:47:32 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:47:32 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 324
+ERROR - 2019-01-09 11:47:32 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:47:32 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 324
+ERROR - 2019-01-09 11:47:32 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:47:32 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:47:32 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 325
+ERROR - 2019-01-09 11:47:32 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:47:32 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:47:32 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 325
+ERROR - 2019-01-09 11:47:32 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:47:32 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:47:32 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:47:32 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 326
+ERROR - 2019-01-09 11:47:32 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 326
+ERROR - 2019-01-09 11:47:32 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:47:32 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:47:32 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:47:32 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 327
+ERROR - 2019-01-09 11:47:32 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:47:32 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:47:32 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:47:32 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 327
+ERROR - 2019-01-09 11:47:33 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:47:33 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:47:33 --> Severity: Notice --> Undefined variable: record C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 356
+ERROR - 2019-01-09 11:47:33 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:47:33 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 356
+ERROR - 2019-01-09 11:47:33 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:47:33 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:47:33 --> Severity: Notice --> Undefined property: stdClass::$amountreceived C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 315
+ERROR - 2019-01-09 11:47:33 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:47:33 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:47:33 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:47:33 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 324
+ERROR - 2019-01-09 11:47:33 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:47:33 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 324
+ERROR - 2019-01-09 11:47:33 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:47:33 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:47:33 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:47:33 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 325
+ERROR - 2019-01-09 11:47:33 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 325
+ERROR - 2019-01-09 11:47:33 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:47:33 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:47:33 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:47:33 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 326
+ERROR - 2019-01-09 11:47:33 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:47:33 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:47:33 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 326
+ERROR - 2019-01-09 11:47:33 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:47:33 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:47:33 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:47:33 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 327
+ERROR - 2019-01-09 11:47:33 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:47:33 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 327
+ERROR - 2019-01-09 11:47:33 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:47:33 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:47:33 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:47:33 --> Severity: Notice --> Undefined variable: record C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 356
+ERROR - 2019-01-09 11:47:34 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 356
+ERROR - 2019-01-09 11:47:34 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:47:34 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:47:34 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:47:34 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:47:34 --> Severity: Notice --> Undefined property: stdClass::$amountreceived C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 315
+ERROR - 2019-01-09 11:47:34 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:47:34 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:47:34 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 324
+ERROR - 2019-01-09 11:47:34 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:47:34 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:47:34 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 324
+ERROR - 2019-01-09 11:47:34 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 325
+ERROR - 2019-01-09 11:47:34 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:47:34 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:47:34 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:47:34 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:47:34 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 325
+ERROR - 2019-01-09 11:47:34 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:47:34 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 326
+ERROR - 2019-01-09 11:47:34 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:47:34 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:47:34 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:47:34 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 326
+ERROR - 2019-01-09 11:47:34 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:47:34 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:47:34 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 327
+ERROR - 2019-01-09 11:47:34 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:47:34 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:47:34 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 327
+ERROR - 2019-01-09 11:47:34 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:47:34 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:47:34 --> Severity: Notice --> Undefined variable: record C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 356
+ERROR - 2019-01-09 11:47:34 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:47:34 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:47:34 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 356
+ERROR - 2019-01-09 11:47:35 --> Severity: Notice --> Undefined property: stdClass::$amountreceived C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 315
+ERROR - 2019-01-09 11:47:35 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:47:35 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:47:35 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:47:35 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:47:35 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 324
+ERROR - 2019-01-09 11:47:35 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:47:35 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 324
+ERROR - 2019-01-09 11:47:35 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:47:35 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:47:35 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 325
+ERROR - 2019-01-09 11:47:35 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:47:35 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:47:35 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 325
+ERROR - 2019-01-09 11:47:35 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:47:35 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 326
+ERROR - 2019-01-09 11:47:35 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:47:35 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:47:35 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:47:35 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 326
+ERROR - 2019-01-09 11:47:35 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:47:35 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:47:35 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:47:35 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 327
+ERROR - 2019-01-09 11:47:35 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 327
+ERROR - 2019-01-09 11:47:35 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:47:35 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:47:35 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:47:35 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:47:35 --> Severity: Notice --> Undefined variable: record C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 356
+ERROR - 2019-01-09 11:47:35 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:47:35 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 356
+ERROR - 2019-01-09 11:47:35 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:47:36 --> Severity: Notice --> Undefined property: stdClass::$amountreceived C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 315
+ERROR - 2019-01-09 11:47:36 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:47:36 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:47:36 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 324
+ERROR - 2019-01-09 11:47:36 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:47:36 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:47:36 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:47:36 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 324
+ERROR - 2019-01-09 11:47:36 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:47:36 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:47:36 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:47:36 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 325
+ERROR - 2019-01-09 11:47:36 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:47:36 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 325
+ERROR - 2019-01-09 11:47:36 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:47:36 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:47:36 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 326
+ERROR - 2019-01-09 11:47:36 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:47:36 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:47:36 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:47:36 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 326
+ERROR - 2019-01-09 11:47:36 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:47:36 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:47:36 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 327
+ERROR - 2019-01-09 11:47:36 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:47:36 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:47:36 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 327
+ERROR - 2019-01-09 11:47:36 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:47:36 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:47:36 --> Severity: Notice --> Undefined variable: record C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 356
+ERROR - 2019-01-09 11:47:36 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:47:36 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:47:36 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 356
+ERROR - 2019-01-09 11:47:37 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:47:37 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:47:37 --> Severity: Notice --> Undefined property: stdClass::$amountreceived C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 315
+ERROR - 2019-01-09 11:47:37 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 324
+ERROR - 2019-01-09 11:47:37 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:47:37 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:47:37 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:47:37 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 324
+ERROR - 2019-01-09 11:47:37 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:47:37 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:47:37 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 325
+ERROR - 2019-01-09 11:47:37 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:47:37 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:47:37 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:47:37 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 325
+ERROR - 2019-01-09 11:47:37 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:47:37 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 326
+ERROR - 2019-01-09 11:47:37 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:47:37 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 326
+ERROR - 2019-01-09 11:47:37 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:47:37 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:47:37 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 327
+ERROR - 2019-01-09 11:47:37 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:47:37 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:47:37 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:47:37 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 327
+ERROR - 2019-01-09 11:47:37 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:47:37 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:47:37 --> Severity: Notice --> Undefined variable: record C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 356
+ERROR - 2019-01-09 11:47:38 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:47:38 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 356
+ERROR - 2019-01-09 11:47:38 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:47:38 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:47:38 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:47:38 --> Severity: Notice --> Undefined property: stdClass::$amountreceived C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 315
+ERROR - 2019-01-09 11:47:38 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 324
+ERROR - 2019-01-09 11:47:38 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:47:38 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:47:38 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:47:38 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 324
+ERROR - 2019-01-09 11:47:38 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:47:38 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:47:38 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:47:38 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 325
+ERROR - 2019-01-09 11:47:38 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:47:38 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:47:38 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:47:38 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 325
+ERROR - 2019-01-09 11:47:38 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 326
+ERROR - 2019-01-09 11:47:38 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:47:38 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:47:38 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 326
+ERROR - 2019-01-09 11:47:38 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:47:38 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:47:38 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:47:38 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:47:38 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 327
+ERROR - 2019-01-09 11:47:38 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:47:38 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 327
+ERROR - 2019-01-09 11:47:38 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:47:38 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:47:38 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:47:38 --> Severity: Notice --> Undefined variable: record C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 356
+ERROR - 2019-01-09 11:47:39 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 356
+ERROR - 2019-01-09 11:47:39 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:47:39 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:47:39 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:47:39 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:47:39 --> Severity: Notice --> Undefined property: stdClass::$amountreceived C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 315
+ERROR - 2019-01-09 11:47:39 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:47:39 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 324
+ERROR - 2019-01-09 11:47:39 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:47:39 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 324
+ERROR - 2019-01-09 11:47:39 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:47:39 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:47:39 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 325
+ERROR - 2019-01-09 11:47:39 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:47:39 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:47:39 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:47:39 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 325
+ERROR - 2019-01-09 11:47:39 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:47:39 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:47:39 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:47:39 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 326
+ERROR - 2019-01-09 11:47:39 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 326
+ERROR - 2019-01-09 11:47:39 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:47:39 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:47:39 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:47:39 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:47:39 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 327
+ERROR - 2019-01-09 11:47:39 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:47:39 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 327
+ERROR - 2019-01-09 11:47:39 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:47:39 --> Severity: Notice --> Undefined variable: record C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 356
+ERROR - 2019-01-09 11:47:39 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:47:39 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:47:39 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 356
+ERROR - 2019-01-09 11:47:39 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:47:39 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:47:40 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:47:40 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:47:40 --> Severity: Notice --> Undefined property: stdClass::$amountreceived C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 315
+ERROR - 2019-01-09 11:47:40 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:47:40 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 324
+ERROR - 2019-01-09 11:47:40 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:47:40 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:47:40 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 324
+ERROR - 2019-01-09 11:47:40 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:47:40 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 325
+ERROR - 2019-01-09 11:47:40 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:47:40 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:47:40 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 325
+ERROR - 2019-01-09 11:47:40 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:47:40 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:47:40 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:47:40 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:47:40 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 326
+ERROR - 2019-01-09 11:47:40 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:47:40 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 326
+ERROR - 2019-01-09 11:47:40 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:47:40 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:47:40 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:47:40 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 327
+ERROR - 2019-01-09 11:47:40 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 327
+ERROR - 2019-01-09 11:47:40 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:47:40 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:47:41 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:47:41 --> Severity: Notice --> Undefined variable: record C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 356
+ERROR - 2019-01-09 11:47:41 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:47:41 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 356
+ERROR - 2019-01-09 11:47:41 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:47:41 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:47:41 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:47:41 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:47:41 --> Severity: Notice --> Undefined property: stdClass::$amountreceived C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 315
+ERROR - 2019-01-09 11:47:41 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:47:41 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:47:41 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 324
+ERROR - 2019-01-09 11:47:41 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:47:41 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 324
+ERROR - 2019-01-09 11:47:41 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:47:41 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 325
+ERROR - 2019-01-09 11:47:41 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:47:41 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:47:41 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:47:41 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:47:41 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 325
+ERROR - 2019-01-09 11:47:41 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 326
+ERROR - 2019-01-09 11:47:41 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:47:41 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:47:41 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:47:41 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 326
+ERROR - 2019-01-09 11:47:41 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:47:41 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 327
+ERROR - 2019-01-09 11:47:41 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:47:41 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:47:41 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:47:41 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 327
+ERROR - 2019-01-09 11:47:41 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:47:41 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:47:41 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:47:41 --> Severity: Notice --> Undefined variable: record C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 356
+ERROR - 2019-01-09 11:47:42 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:47:42 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:47:42 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 356
+ERROR - 2019-01-09 11:47:42 --> Severity: Notice --> Undefined property: stdClass::$amountreceived C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 315
+ERROR - 2019-01-09 11:47:42 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:47:42 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:47:42 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:47:42 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:47:42 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 324
+ERROR - 2019-01-09 11:47:42 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 324
+ERROR - 2019-01-09 11:47:42 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:47:42 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:47:42 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 325
+ERROR - 2019-01-09 11:47:42 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:47:42 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:47:42 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 325
+ERROR - 2019-01-09 11:47:42 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:47:42 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:47:42 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:47:42 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:47:42 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 326
+ERROR - 2019-01-09 11:47:42 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:47:42 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:47:42 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 326
+ERROR - 2019-01-09 11:47:42 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:47:42 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:47:42 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 327
+ERROR - 2019-01-09 11:47:42 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 327
+ERROR - 2019-01-09 11:47:42 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:47:42 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:47:42 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:47:42 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:47:42 --> Severity: Notice --> Undefined variable: record C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 356
+ERROR - 2019-01-09 11:47:43 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:47:43 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 356
+ERROR - 2019-01-09 11:47:43 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:47:43 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:47:43 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:47:43 --> Severity: Notice --> Undefined property: stdClass::$amountreceived C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 315
+ERROR - 2019-01-09 11:47:43 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:47:43 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:47:43 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 324
+ERROR - 2019-01-09 11:47:43 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:47:43 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 324
+ERROR - 2019-01-09 11:47:43 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:47:43 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:47:43 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:47:43 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 325
+ERROR - 2019-01-09 11:47:43 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:47:43 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 325
+ERROR - 2019-01-09 11:47:43 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:47:43 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:47:43 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:47:43 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 326
+ERROR - 2019-01-09 11:47:43 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 326
+ERROR - 2019-01-09 11:47:43 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:47:43 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:47:43 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:47:43 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:47:43 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 327
+ERROR - 2019-01-09 11:47:43 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:47:43 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 327
+ERROR - 2019-01-09 11:47:43 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:47:43 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:47:43 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:47:43 --> Severity: Notice --> Undefined variable: record C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 356
+ERROR - 2019-01-09 11:47:44 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:47:44 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:47:44 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 356
+ERROR - 2019-01-09 11:47:44 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:47:44 --> Severity: Notice --> Undefined property: stdClass::$amountreceived C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 315
+ERROR - 2019-01-09 11:47:44 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:47:44 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 324
+ERROR - 2019-01-09 11:47:44 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:47:44 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:47:44 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:47:44 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 324
+ERROR - 2019-01-09 11:47:44 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:47:44 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 325
+ERROR - 2019-01-09 11:47:44 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:47:44 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:47:44 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:47:44 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 325
+ERROR - 2019-01-09 11:47:44 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:47:44 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 326
+ERROR - 2019-01-09 11:47:44 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:47:44 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:47:44 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 326
+ERROR - 2019-01-09 11:47:44 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:47:44 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:47:44 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:47:44 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 327
+ERROR - 2019-01-09 11:47:44 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:47:44 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:47:44 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:47:44 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 327
+ERROR - 2019-01-09 11:47:44 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:47:44 --> Severity: Notice --> Undefined variable: record C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 356
+ERROR - 2019-01-09 11:47:44 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:47:45 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:47:45 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 356
+ERROR - 2019-01-09 11:47:45 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:47:45 --> Severity: Notice --> Undefined property: stdClass::$amountreceived C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 315
+ERROR - 2019-01-09 11:47:45 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:47:45 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:47:45 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:47:45 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:47:45 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 324
+ERROR - 2019-01-09 11:47:45 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:47:45 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 324
+ERROR - 2019-01-09 11:47:45 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:47:45 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:47:45 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:47:45 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 325
+ERROR - 2019-01-09 11:47:45 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:47:45 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 325
+ERROR - 2019-01-09 11:47:45 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:47:45 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:47:45 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 326
+ERROR - 2019-01-09 11:47:45 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:47:45 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:47:45 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 326
+ERROR - 2019-01-09 11:47:45 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:47:45 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:47:45 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 327
+ERROR - 2019-01-09 11:47:45 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:47:45 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 327
+ERROR - 2019-01-09 11:47:45 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:47:45 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:47:45 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:47:45 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:47:45 --> Severity: Notice --> Undefined variable: record C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 356
+ERROR - 2019-01-09 11:47:45 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:47:45 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 356
+ERROR - 2019-01-09 11:47:45 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:47:46 --> Severity: Notice --> Undefined property: stdClass::$amountreceived C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 315
+ERROR - 2019-01-09 11:47:46 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:47:46 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:47:46 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:47:46 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:47:46 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 324
+ERROR - 2019-01-09 11:47:46 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 324
+ERROR - 2019-01-09 11:47:46 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:47:46 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:47:46 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:47:46 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:47:46 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 325
+ERROR - 2019-01-09 11:47:46 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:47:46 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 325
+ERROR - 2019-01-09 11:47:46 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:47:46 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:47:46 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:47:46 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 326
+ERROR - 2019-01-09 11:47:46 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 326
+ERROR - 2019-01-09 11:47:46 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:47:46 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:47:46 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:47:46 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:47:46 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 327
+ERROR - 2019-01-09 11:47:46 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:47:46 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 327
+ERROR - 2019-01-09 11:47:46 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:47:46 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:47:46 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:47:46 --> Severity: Notice --> Undefined variable: record C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 356
+ERROR - 2019-01-09 11:47:47 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:47:47 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 356
+ERROR - 2019-01-09 11:47:47 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:47:47 --> Severity: Notice --> Undefined property: stdClass::$amountreceived C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 315
+ERROR - 2019-01-09 11:47:47 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:47:47 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:47:47 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:47:47 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 324
+ERROR - 2019-01-09 11:47:47 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:47:47 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:47:47 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 324
+ERROR - 2019-01-09 11:47:47 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:47:47 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:47:47 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 325
+ERROR - 2019-01-09 11:47:47 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:47:47 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 325
+ERROR - 2019-01-09 11:47:47 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:47:47 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:47:47 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:47:47 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 326
+ERROR - 2019-01-09 11:47:47 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:47:47 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 326
+ERROR - 2019-01-09 11:47:47 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:47:47 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:47:47 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 327
+ERROR - 2019-01-09 11:47:47 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:47:47 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 327
+ERROR - 2019-01-09 11:47:47 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:47:47 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:47:48 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:47:48 --> Severity: Notice --> Undefined variable: record C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 356
+ERROR - 2019-01-09 11:47:48 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:47:48 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 356
+ERROR - 2019-01-09 11:47:48 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:47:48 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:47:48 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:47:48 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:47:48 --> Severity: Notice --> Undefined property: stdClass::$amountreceived C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 315
+ERROR - 2019-01-09 11:47:48 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 324
+ERROR - 2019-01-09 11:47:48 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:47:48 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:47:48 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 324
+ERROR - 2019-01-09 11:47:48 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:47:48 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:47:48 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:47:48 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:47:48 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 325
+ERROR - 2019-01-09 11:47:48 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:47:48 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 325
+ERROR - 2019-01-09 11:47:48 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:47:48 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:47:48 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 326
+ERROR - 2019-01-09 11:47:48 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:47:48 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:47:48 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:47:48 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 326
+ERROR - 2019-01-09 11:47:48 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:47:48 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:47:48 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 327
+ERROR - 2019-01-09 11:47:49 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:47:49 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 327
+ERROR - 2019-01-09 11:47:49 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:47:49 --> Severity: Notice --> Undefined variable: record C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 356
+ERROR - 2019-01-09 11:47:49 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:47:49 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:47:49 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 356
+ERROR - 2019-01-09 11:47:49 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:47:49 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:47:49 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:47:49 --> Severity: Notice --> Undefined property: stdClass::$amountreceived C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 315
+ERROR - 2019-01-09 11:47:49 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:47:49 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:47:49 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:47:49 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 324
+ERROR - 2019-01-09 11:47:49 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 324
+ERROR - 2019-01-09 11:47:49 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:47:49 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:47:49 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:47:49 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 325
+ERROR - 2019-01-09 11:47:49 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:47:49 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:47:49 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 325
+ERROR - 2019-01-09 11:47:49 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:47:49 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:47:49 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:47:49 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 326
+ERROR - 2019-01-09 11:47:49 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:47:49 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 326
+ERROR - 2019-01-09 11:47:49 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:47:49 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:47:49 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 327
+ERROR - 2019-01-09 11:47:49 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:47:50 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:47:50 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:47:50 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 327
+ERROR - 2019-01-09 11:47:50 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:47:50 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:47:50 --> Severity: Notice --> Undefined variable: record C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 356
+ERROR - 2019-01-09 11:47:50 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 356
+ERROR - 2019-01-09 11:47:50 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:47:50 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:47:50 --> Severity: Notice --> Undefined property: stdClass::$amountreceived C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 315
+ERROR - 2019-01-09 11:47:50 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:47:50 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:47:50 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:47:50 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:47:50 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 324
+ERROR - 2019-01-09 11:47:50 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:47:50 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:47:50 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 324
+ERROR - 2019-01-09 11:47:50 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 325
+ERROR - 2019-01-09 11:47:50 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:47:50 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:47:50 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 325
+ERROR - 2019-01-09 11:47:50 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:47:50 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 326
+ERROR - 2019-01-09 11:47:50 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:47:50 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:47:50 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:47:50 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 326
+ERROR - 2019-01-09 11:47:50 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:47:51 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 327
+ERROR - 2019-01-09 11:47:51 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:47:51 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:47:51 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:47:51 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 327
+ERROR - 2019-01-09 11:47:51 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:47:51 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:47:51 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:47:51 --> Severity: Notice --> Undefined variable: record C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 356
+ERROR - 2019-01-09 11:47:51 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:47:51 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:47:51 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 356
+ERROR - 2019-01-09 11:47:51 --> Severity: Notice --> Undefined property: stdClass::$amountreceived C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 315
+ERROR - 2019-01-09 11:47:51 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:47:51 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:47:51 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 324
+ERROR - 2019-01-09 11:47:51 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:47:51 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:47:51 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:47:51 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:47:51 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 324
+ERROR - 2019-01-09 11:47:51 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 325
+ERROR - 2019-01-09 11:47:51 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:47:51 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:47:51 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:47:51 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 325
+ERROR - 2019-01-09 11:47:51 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:47:51 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 326
+ERROR - 2019-01-09 11:47:51 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:47:51 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:47:52 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 326
+ERROR - 2019-01-09 11:47:52 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:47:52 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:47:52 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:47:52 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 327
+ERROR - 2019-01-09 11:47:52 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:47:52 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 327
+ERROR - 2019-01-09 11:47:52 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:47:52 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:47:52 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:47:52 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:47:52 --> Severity: Notice --> Undefined variable: record C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 356
+ERROR - 2019-01-09 11:47:52 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:47:52 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 356
+ERROR - 2019-01-09 11:47:52 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:47:52 --> Severity: Notice --> Undefined property: stdClass::$amountreceived C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 315
+ERROR - 2019-01-09 11:47:52 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:47:52 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:47:52 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:47:52 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 324
+ERROR - 2019-01-09 11:47:52 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:47:52 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:47:52 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 324
+ERROR - 2019-01-09 11:47:52 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:47:52 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 325
+ERROR - 2019-01-09 11:47:52 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:47:52 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:47:52 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 325
+ERROR - 2019-01-09 11:47:53 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:47:53 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 326
+ERROR - 2019-01-09 11:47:53 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:47:53 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:47:53 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:47:53 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 326
+ERROR - 2019-01-09 11:47:53 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 327
+ERROR - 2019-01-09 11:47:53 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:47:53 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:47:53 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:47:53 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 327
+ERROR - 2019-01-09 11:47:53 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:47:53 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:47:53 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:47:53 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:47:53 --> Severity: Notice --> Undefined variable: record C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 356
+ERROR - 2019-01-09 11:47:53 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:47:53 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 356
+ERROR - 2019-01-09 11:47:53 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:47:53 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:47:53 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:47:53 --> Severity: Notice --> Undefined property: stdClass::$amountreceived C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 315
+ERROR - 2019-01-09 11:47:53 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 324
+ERROR - 2019-01-09 11:47:53 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:47:53 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:47:53 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:47:53 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 324
+ERROR - 2019-01-09 11:47:53 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:47:53 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:47:53 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 325
+ERROR - 2019-01-09 11:47:53 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:47:54 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:47:54 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 325
+ERROR - 2019-01-09 11:47:54 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:47:54 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 326
+ERROR - 2019-01-09 11:47:54 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:47:54 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:47:54 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:47:54 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:47:54 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 326
+ERROR - 2019-01-09 11:47:54 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:47:54 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 327
+ERROR - 2019-01-09 11:47:54 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:47:54 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 327
+ERROR - 2019-01-09 11:47:54 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:47:54 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:47:54 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:47:54 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:47:54 --> Severity: Notice --> Undefined variable: record C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 356
+ERROR - 2019-01-09 11:47:54 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:47:54 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 356
+ERROR - 2019-01-09 11:47:54 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:47:54 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:47:54 --> Severity: Notice --> Undefined property: stdClass::$amountreceived C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 315
+ERROR - 2019-01-09 11:47:54 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:47:54 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 324
+ERROR - 2019-01-09 11:47:54 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:47:54 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:47:54 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 324
+ERROR - 2019-01-09 11:47:54 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:47:54 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:47:54 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 325
+ERROR - 2019-01-09 11:47:54 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:47:54 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:47:55 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:47:55 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 325
+ERROR - 2019-01-09 11:47:55 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:47:55 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:47:55 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 326
+ERROR - 2019-01-09 11:47:55 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:47:55 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 326
+ERROR - 2019-01-09 11:47:55 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:47:55 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:47:55 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:47:55 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:47:55 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 327
+ERROR - 2019-01-09 11:47:55 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:47:55 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:47:55 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:47:55 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 327
+ERROR - 2019-01-09 11:47:55 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:47:55 --> Severity: Notice --> Undefined variable: record C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 356
+ERROR - 2019-01-09 11:47:55 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:47:55 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:47:55 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:47:55 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 356
+ERROR - 2019-01-09 11:47:55 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:47:55 --> Severity: Notice --> Undefined property: stdClass::$amountreceived C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 315
+ERROR - 2019-01-09 11:47:55 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:47:55 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:47:55 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 324
+ERROR - 2019-01-09 11:47:55 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:47:55 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:47:55 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:47:55 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 324
+ERROR - 2019-01-09 11:47:56 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:47:56 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:47:56 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 325
+ERROR - 2019-01-09 11:47:56 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:47:56 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:47:56 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 325
+ERROR - 2019-01-09 11:47:56 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:47:56 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:47:56 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 326
+ERROR - 2019-01-09 11:47:56 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:47:56 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:47:56 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:47:56 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 326
+ERROR - 2019-01-09 11:47:56 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:47:56 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 327
+ERROR - 2019-01-09 11:47:56 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:47:56 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:47:56 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:47:56 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 327
+ERROR - 2019-01-09 11:47:56 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:47:56 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:47:56 --> Severity: Notice --> Undefined variable: record C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 356
+ERROR - 2019-01-09 11:47:56 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:47:56 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:47:56 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 356
+ERROR - 2019-01-09 11:47:56 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:47:56 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:47:56 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:47:56 --> Severity: Notice --> Undefined property: stdClass::$amountreceived C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 315
+ERROR - 2019-01-09 11:47:56 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:47:56 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 324
+ERROR - 2019-01-09 11:47:56 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:47:57 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 324
+ERROR - 2019-01-09 11:47:57 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:47:57 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:47:57 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:47:57 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 325
+ERROR - 2019-01-09 11:47:57 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:47:57 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:47:57 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 325
+ERROR - 2019-01-09 11:47:57 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:47:57 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:47:57 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:47:57 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 326
+ERROR - 2019-01-09 11:47:57 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:47:57 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 326
+ERROR - 2019-01-09 11:47:57 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:47:57 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:47:57 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:47:57 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 327
+ERROR - 2019-01-09 11:47:57 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:47:57 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 327
+ERROR - 2019-01-09 11:47:57 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:47:57 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:47:57 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:47:57 --> Severity: Notice --> Undefined variable: record C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 356
+ERROR - 2019-01-09 11:47:57 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:47:57 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:47:57 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 356
+ERROR - 2019-01-09 11:47:57 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:47:57 --> Severity: Notice --> Undefined property: stdClass::$amountreceived C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 315
+ERROR - 2019-01-09 11:47:57 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:47:57 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:47:57 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:47:57 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 324
+ERROR - 2019-01-09 11:47:58 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:47:58 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 324
+ERROR - 2019-01-09 11:47:58 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:47:58 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:47:58 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:47:58 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 325
+ERROR - 2019-01-09 11:47:58 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:47:58 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:47:58 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 325
+ERROR - 2019-01-09 11:47:58 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:47:58 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:47:58 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 326
+ERROR - 2019-01-09 11:47:58 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 326
+ERROR - 2019-01-09 11:47:58 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:47:58 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:47:58 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:47:58 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:47:58 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 327
+ERROR - 2019-01-09 11:47:58 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:47:58 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 327
+ERROR - 2019-01-09 11:47:58 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:47:58 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:47:58 --> Severity: Notice --> Undefined variable: record C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 356
+ERROR - 2019-01-09 11:47:58 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:47:58 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 356
+ERROR - 2019-01-09 11:47:58 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:47:58 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:47:58 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:47:58 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:47:58 --> Severity: Notice --> Undefined property: stdClass::$amountreceived C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 315
+ERROR - 2019-01-09 11:47:59 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:47:59 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:47:59 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 324
+ERROR - 2019-01-09 11:47:59 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:47:59 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:47:59 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 324
+ERROR - 2019-01-09 11:47:59 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:47:59 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:47:59 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 325
+ERROR - 2019-01-09 11:47:59 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:47:59 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 325
+ERROR - 2019-01-09 11:47:59 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:47:59 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:47:59 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:47:59 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 326
+ERROR - 2019-01-09 11:47:59 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 326
+ERROR - 2019-01-09 11:47:59 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:47:59 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:47:59 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 327
+ERROR - 2019-01-09 11:47:59 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:47:59 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:47:59 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:47:59 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 327
+ERROR - 2019-01-09 11:47:59 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:47:59 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:47:59 --> Severity: Notice --> Undefined variable: record C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 356
+ERROR - 2019-01-09 11:47:59 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:47:59 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 356
+ERROR - 2019-01-09 11:47:59 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:47:59 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:47:59 --> Severity: Notice --> Undefined property: stdClass::$amountreceived C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 315
+ERROR - 2019-01-09 11:47:59 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:47:59 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:48:00 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:48:00 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 324
+ERROR - 2019-01-09 11:48:00 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:48:00 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:48:00 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:48:00 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 324
+ERROR - 2019-01-09 11:48:00 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:48:00 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:48:00 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 325
+ERROR - 2019-01-09 11:48:00 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:48:00 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:48:00 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 325
+ERROR - 2019-01-09 11:48:00 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:48:00 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 326
+ERROR - 2019-01-09 11:48:00 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:48:00 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 326
+ERROR - 2019-01-09 11:48:00 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:48:00 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:48:00 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:48:00 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:48:00 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 327
+ERROR - 2019-01-09 11:48:00 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:48:00 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:48:00 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 327
+ERROR - 2019-01-09 11:48:00 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:48:00 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:48:00 --> Severity: Notice --> Undefined variable: record C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 356
+ERROR - 2019-01-09 11:48:00 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:48:00 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:48:00 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 356
+ERROR - 2019-01-09 11:48:00 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:48:00 --> Severity: Notice --> Undefined property: stdClass::$amountreceived C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 315
+ERROR - 2019-01-09 11:48:00 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:48:01 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 324
+ERROR - 2019-01-09 11:48:01 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:48:01 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:48:01 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:48:01 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 324
+ERROR - 2019-01-09 11:48:01 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:48:01 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:48:01 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 325
+ERROR - 2019-01-09 11:48:01 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:48:01 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:48:01 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 325
+ERROR - 2019-01-09 11:48:01 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 326
+ERROR - 2019-01-09 11:48:01 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:48:01 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:48:01 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:48:01 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 326
+ERROR - 2019-01-09 11:48:01 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:48:01 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:48:01 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 327
+ERROR - 2019-01-09 11:48:01 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:48:01 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:48:01 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:48:01 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 327
+ERROR - 2019-01-09 11:48:01 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:48:01 --> Severity: Notice --> Undefined variable: record C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 356
+ERROR - 2019-01-09 11:48:01 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:48:01 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 356
+ERROR - 2019-01-09 11:48:01 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:48:01 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:48:02 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:48:02 --> Severity: Notice --> Undefined property: stdClass::$amountreceived C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 315
+ERROR - 2019-01-09 11:48:02 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:48:02 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:48:02 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:48:02 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 324
+ERROR - 2019-01-09 11:48:02 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:48:02 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 324
+ERROR - 2019-01-09 11:48:02 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:48:02 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:48:02 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 325
+ERROR - 2019-01-09 11:48:02 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:48:02 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:48:02 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:48:02 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 325
+ERROR - 2019-01-09 11:48:02 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:48:02 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:48:02 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:48:02 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 326
+ERROR - 2019-01-09 11:48:02 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:48:02 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 326
+ERROR - 2019-01-09 11:48:02 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:48:02 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:48:02 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:48:02 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:48:02 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 327
+ERROR - 2019-01-09 11:48:02 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:48:02 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:48:02 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 327
+ERROR - 2019-01-09 11:48:02 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:48:02 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:48:02 --> Severity: Notice --> Undefined variable: record C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 356
+ERROR - 2019-01-09 11:48:03 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 356
+ERROR - 2019-01-09 11:48:03 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:48:03 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:48:03 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:48:03 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:48:03 --> Severity: Notice --> Undefined property: stdClass::$amountreceived C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 315
+ERROR - 2019-01-09 11:48:03 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 324
+ERROR - 2019-01-09 11:48:03 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:48:03 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:48:03 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:48:03 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 324
+ERROR - 2019-01-09 11:48:03 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:48:03 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 325
+ERROR - 2019-01-09 11:48:03 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:48:03 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:48:03 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:48:03 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:48:03 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 325
+ERROR - 2019-01-09 11:48:03 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:48:03 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:48:03 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 326
+ERROR - 2019-01-09 11:48:03 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:48:03 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:48:03 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 326
+ERROR - 2019-01-09 11:48:03 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 327
+ERROR - 2019-01-09 11:48:03 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:48:03 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:48:03 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:48:03 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 327
+ERROR - 2019-01-09 11:48:03 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:48:04 --> Severity: Notice --> Undefined variable: record C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 356
+ERROR - 2019-01-09 11:48:04 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:48:04 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:48:04 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:48:04 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 356
+ERROR - 2019-01-09 11:48:04 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:48:04 --> Severity: Notice --> Undefined property: stdClass::$amountreceived C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 315
+ERROR - 2019-01-09 11:48:04 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:48:04 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:48:04 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:48:04 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:48:04 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 324
+ERROR - 2019-01-09 11:48:04 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:48:04 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 324
+ERROR - 2019-01-09 11:48:04 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:48:04 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 325
+ERROR - 2019-01-09 11:48:04 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:48:04 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:48:04 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:48:04 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:48:04 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 325
+ERROR - 2019-01-09 11:48:04 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:48:04 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 326
+ERROR - 2019-01-09 11:48:04 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:48:04 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:48:04 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 326
+ERROR - 2019-01-09 11:48:04 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:48:04 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:48:04 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:48:04 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 327
+ERROR - 2019-01-09 11:48:04 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 327
+ERROR - 2019-01-09 11:48:04 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:48:04 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:48:05 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:48:05 --> Severity: Notice --> Undefined variable: record C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 356
+ERROR - 2019-01-09 11:48:05 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:48:05 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:48:05 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:48:05 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 356
+ERROR - 2019-01-09 11:48:05 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:48:05 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:48:05 --> Severity: Notice --> Undefined property: stdClass::$amountreceived C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 315
+ERROR - 2019-01-09 11:48:05 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:48:05 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:48:05 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 324
+ERROR - 2019-01-09 11:48:05 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:48:05 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 324
+ERROR - 2019-01-09 11:48:05 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:48:05 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:48:05 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:48:05 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 325
+ERROR - 2019-01-09 11:48:05 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:48:05 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:48:05 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 325
+ERROR - 2019-01-09 11:48:05 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:48:05 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 326
+ERROR - 2019-01-09 11:48:05 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:48:05 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 326
+ERROR - 2019-01-09 11:48:05 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:48:05 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:48:05 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:48:05 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:48:05 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 327
+ERROR - 2019-01-09 11:48:06 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:48:06 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:48:06 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 327
+ERROR - 2019-01-09 11:48:06 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:48:06 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:48:06 --> Severity: Notice --> Undefined variable: record C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 356
+ERROR - 2019-01-09 11:48:06 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:48:06 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 356
+ERROR - 2019-01-09 11:48:06 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:48:06 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:48:06 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:48:06 --> Severity: Notice --> Undefined property: stdClass::$amountreceived C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 315
+ERROR - 2019-01-09 11:48:06 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:48:06 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 324
+ERROR - 2019-01-09 11:48:06 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:48:06 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:48:06 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 324
+ERROR - 2019-01-09 11:48:06 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:48:06 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:48:06 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 325
+ERROR - 2019-01-09 11:48:06 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:48:06 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:48:06 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 325
+ERROR - 2019-01-09 11:48:06 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:48:06 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:48:06 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 326
+ERROR - 2019-01-09 11:48:06 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:48:06 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 326
+ERROR - 2019-01-09 11:48:06 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:48:06 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:48:06 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 327
+ERROR - 2019-01-09 11:48:06 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:48:06 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:48:07 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:48:07 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:48:07 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 327
+ERROR - 2019-01-09 11:48:07 --> Severity: Notice --> Undefined variable: record C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 356
+ERROR - 2019-01-09 11:48:07 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:48:07 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:48:07 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:48:07 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:48:07 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 356
+ERROR - 2019-01-09 11:48:07 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:48:07 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:48:07 --> Severity: Notice --> Undefined property: stdClass::$amountreceived C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 315
+ERROR - 2019-01-09 11:48:07 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 324
+ERROR - 2019-01-09 11:48:07 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:48:07 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:48:07 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:48:07 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:48:07 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 324
+ERROR - 2019-01-09 11:48:07 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:48:07 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:48:07 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 325
+ERROR - 2019-01-09 11:48:07 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:48:07 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:48:07 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 325
+ERROR - 2019-01-09 11:48:07 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:48:07 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 326
+ERROR - 2019-01-09 11:48:07 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:48:07 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:48:07 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:48:07 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 326
+ERROR - 2019-01-09 11:48:08 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 327
+ERROR - 2019-01-09 11:48:08 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:48:08 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:48:08 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:48:08 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 327
+ERROR - 2019-01-09 11:48:08 --> Severity: Notice --> Undefined variable: record C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 356
+ERROR - 2019-01-09 11:48:08 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:48:08 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:48:08 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:48:08 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:48:08 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 356
+ERROR - 2019-01-09 11:48:08 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:48:08 --> Severity: Notice --> Undefined property: stdClass::$amountreceived C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 315
+ERROR - 2019-01-09 11:48:08 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:48:08 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:48:08 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 324
+ERROR - 2019-01-09 11:48:08 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:48:08 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 324
+ERROR - 2019-01-09 11:48:08 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:48:08 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:48:08 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 325
+ERROR - 2019-01-09 11:48:08 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:48:08 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:48:08 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 325
+ERROR - 2019-01-09 11:48:08 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:48:08 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:48:08 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:48:08 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 326
+ERROR - 2019-01-09 11:48:08 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:48:08 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:48:08 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 326
+ERROR - 2019-01-09 11:48:08 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:48:09 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:48:09 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 327
+ERROR - 2019-01-09 11:48:09 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:48:09 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 327
+ERROR - 2019-01-09 11:48:09 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:48:09 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:48:09 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:48:09 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:48:09 --> Severity: Notice --> Undefined variable: record C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 356
+ERROR - 2019-01-09 11:48:09 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 356
+ERROR - 2019-01-09 11:48:09 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:48:09 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:48:09 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:48:09 --> Severity: Notice --> Undefined property: stdClass::$amountreceived C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 315
+ERROR - 2019-01-09 11:48:09 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:48:09 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 324
+ERROR - 2019-01-09 11:48:09 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:48:09 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:48:09 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:48:09 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 324
+ERROR - 2019-01-09 11:48:09 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:48:09 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:48:09 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:48:09 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 325
+ERROR - 2019-01-09 11:48:09 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:48:09 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 325
+ERROR - 2019-01-09 11:48:09 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:48:09 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:48:09 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 326
+ERROR - 2019-01-09 11:48:09 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:48:10 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:48:10 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 326
+ERROR - 2019-01-09 11:48:10 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:48:10 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:48:10 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 327
+ERROR - 2019-01-09 11:48:10 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:48:10 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 327
+ERROR - 2019-01-09 11:48:10 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:48:10 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:48:10 --> Severity: Notice --> Undefined variable: record C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 356
+ERROR - 2019-01-09 11:48:10 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:48:10 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:48:10 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 356
+ERROR - 2019-01-09 11:48:10 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:48:10 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:48:10 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:48:10 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:48:10 --> Severity: Notice --> Undefined property: stdClass::$amountreceived C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 315
+ERROR - 2019-01-09 11:48:10 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:48:10 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:48:10 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 324
+ERROR - 2019-01-09 11:48:10 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:48:10 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:48:10 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:48:10 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:48:10 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 324
+ERROR - 2019-01-09 11:48:10 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:48:10 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:48:10 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 325
+ERROR - 2019-01-09 11:48:11 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:48:11 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 325
+ERROR - 2019-01-09 11:48:11 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:48:11 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:48:11 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 326
+ERROR - 2019-01-09 11:48:11 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:48:11 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 326
+ERROR - 2019-01-09 11:48:11 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:48:11 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:48:11 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:48:11 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 327
+ERROR - 2019-01-09 11:48:11 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:48:11 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:48:11 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 327
+ERROR - 2019-01-09 11:48:11 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:48:11 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:48:11 --> Severity: Notice --> Undefined variable: record C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 356
+ERROR - 2019-01-09 11:48:11 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:48:11 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:48:11 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:48:11 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 356
+ERROR - 2019-01-09 11:48:11 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:48:12 --> Severity: Notice --> Undefined property: stdClass::$amountreceived C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 315
+ERROR - 2019-01-09 11:48:12 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:48:12 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:48:12 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:48:12 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 324
+ERROR - 2019-01-09 11:48:12 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:48:12 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:48:12 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 324
+ERROR - 2019-01-09 11:48:12 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:48:12 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 325
+ERROR - 2019-01-09 11:48:12 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:48:12 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:48:12 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:48:12 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:48:12 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 325
+ERROR - 2019-01-09 11:48:12 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 326
+ERROR - 2019-01-09 11:48:12 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:48:12 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:48:12 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:48:12 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:48:12 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 326
+ERROR - 2019-01-09 11:48:12 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:48:12 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:48:12 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 327
+ERROR - 2019-01-09 11:48:12 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 327
+ERROR - 2019-01-09 11:48:12 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:48:12 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:48:12 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:48:12 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:48:12 --> Severity: Notice --> Undefined variable: record C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 356
+ERROR - 2019-01-09 11:48:13 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 356
+ERROR - 2019-01-09 11:48:13 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:48:13 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:48:13 --> Severity: Notice --> Undefined property: stdClass::$amountreceived C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 315
+ERROR - 2019-01-09 11:48:13 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:48:13 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 324
+ERROR - 2019-01-09 11:48:13 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:48:13 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:48:13 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:48:13 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:48:13 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 324
+ERROR - 2019-01-09 11:48:13 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:48:13 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 325
+ERROR - 2019-01-09 11:48:13 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:48:13 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:48:13 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 325
+ERROR - 2019-01-09 11:48:13 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:48:13 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:48:13 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:48:13 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 326
+ERROR - 2019-01-09 11:48:13 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 326
+ERROR - 2019-01-09 11:48:13 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:48:13 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:48:13 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:48:13 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 327
+ERROR - 2019-01-09 11:48:13 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:48:13 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:48:13 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 327
+ERROR - 2019-01-09 11:48:13 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:48:13 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:48:13 --> Severity: Notice --> Undefined variable: record C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 356
+ERROR - 2019-01-09 11:48:13 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:48:14 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:48:14 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:48:14 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 356
+ERROR - 2019-01-09 11:48:14 --> Severity: Notice --> Undefined property: stdClass::$amountreceived C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 315
+ERROR - 2019-01-09 11:48:14 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:48:14 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:48:14 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 324
+ERROR - 2019-01-09 11:48:14 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:48:14 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:48:14 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 324
+ERROR - 2019-01-09 11:48:14 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:48:14 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:48:14 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:48:14 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 325
+ERROR - 2019-01-09 11:48:14 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:48:14 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:48:14 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:48:14 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 325
+ERROR - 2019-01-09 11:48:14 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:48:14 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 326
+ERROR - 2019-01-09 11:48:14 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:48:14 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:48:14 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 326
+ERROR - 2019-01-09 11:48:14 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:48:15 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 327
+ERROR - 2019-01-09 11:48:15 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:48:15 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:48:15 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:48:15 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:48:15 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 327
+ERROR - 2019-01-09 11:48:15 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:48:15 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:48:15 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:48:15 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:48:15 --> Severity: Notice --> Undefined variable: record C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 356
+ERROR - 2019-01-09 11:48:15 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:48:15 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:48:15 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 356
+ERROR - 2019-01-09 11:48:15 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:48:15 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:48:15 --> Severity: Notice --> Undefined property: stdClass::$amountreceived C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 315
+ERROR - 2019-01-09 11:48:15 --> Severity: Notice --> Undefined variable: openingbalance C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 6
+ERROR - 2019-01-09 11:48:16 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:48:16 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:48:16 --> Severity: Notice --> Undefined variable: openingbalance C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 6
+ERROR - 2019-01-09 11:48:16 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:48:16 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 324
+ERROR - 2019-01-09 11:48:16 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:48:16 --> Severity: Warning --> Invalid argument supplied for foreach() C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 6
+ERROR - 2019-01-09 11:48:16 --> Severity: Warning --> Invalid argument supplied for foreach() C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 6
+ERROR - 2019-01-09 11:48:17 --> Severity: Notice --> Undefined variable: openingbalance C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 6
+ERROR - 2019-01-09 11:48:17 --> Severity: Notice --> Undefined variable: financialyear C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 10
+ERROR - 2019-01-09 11:48:17 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 324
+ERROR - 2019-01-09 11:48:17 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:48:17 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:48:17 --> Severity: Notice --> Undefined variable: financialyear C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 10
+ERROR - 2019-01-09 11:48:17 --> Severity: Notice --> Undefined variable: openingbalance C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 6
+ERROR - 2019-01-09 11:48:17 --> Severity: Warning --> Invalid argument supplied for foreach() C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 6
+ERROR - 2019-01-09 11:48:17 --> Severity: Warning --> Invalid argument supplied for foreach() C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 10
+ERROR - 2019-01-09 11:48:17 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:48:17 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:48:17 --> Severity: Warning --> Invalid argument supplied for foreach() C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 10
+ERROR - 2019-01-09 11:48:17 --> Severity: Warning --> Invalid argument supplied for foreach() C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 6
+ERROR - 2019-01-09 11:48:17 --> Severity: Notice --> Undefined variable: openingbalance C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 6
+ERROR - 2019-01-09 11:48:17 --> Severity: Notice --> Undefined variable: financialyear C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 10
+ERROR - 2019-01-09 11:48:17 --> Severity: Notice --> Undefined variable: financialyear C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 10
+ERROR - 2019-01-09 11:48:17 --> Severity: Notice --> Undefined variable: customerledger C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 138
+ERROR - 2019-01-09 11:48:17 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:48:17 --> Severity: Notice --> Undefined variable: customerledger C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 138
+ERROR - 2019-01-09 11:48:17 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 325
+ERROR - 2019-01-09 11:48:17 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:48:17 --> Severity: Warning --> Invalid argument supplied for foreach() C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 6
+ERROR - 2019-01-09 11:48:17 --> Severity: Notice --> Undefined variable: openingbalance C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 6
+ERROR - 2019-01-09 11:48:17 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:48:17 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 325
+ERROR - 2019-01-09 11:48:17 --> Severity: Warning --> Invalid argument supplied for foreach() C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 138
+ERROR - 2019-01-09 11:48:17 --> Severity: Warning --> Invalid argument supplied for foreach() C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 6
+ERROR - 2019-01-09 11:48:17 --> Severity: Warning --> Invalid argument supplied for foreach() C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 138
+ERROR - 2019-01-09 11:48:17 --> Severity: Warning --> Invalid argument supplied for foreach() C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 10
+ERROR - 2019-01-09 11:48:18 --> Severity: Notice --> Undefined variable: openingbalance C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 6
+ERROR - 2019-01-09 11:48:18 --> Severity: Notice --> Undefined variable: financialyear C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 10
+ERROR - 2019-01-09 11:48:18 --> Severity: Warning --> Invalid argument supplied for foreach() C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 10
+ERROR - 2019-01-09 11:48:18 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:48:18 --> Severity: Notice --> Undefined variable: customerledger C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 138
+ERROR - 2019-01-09 11:48:18 --> Severity: Notice --> Undefined variable: customerledger C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 138
+ERROR - 2019-01-09 11:48:18 --> Severity: Notice --> Undefined variable: openingbalance C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 6
+ERROR - 2019-01-09 11:48:18 --> Severity: Notice --> Undefined variable: financialyear C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 10
+ERROR - 2019-01-09 11:48:18 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:48:18 --> Severity: Warning --> Invalid argument supplied for foreach() C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 6
+ERROR - 2019-01-09 11:48:18 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 326
+ERROR - 2019-01-09 11:48:18 --> Severity: Warning --> Invalid argument supplied for foreach() C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 10
+ERROR - 2019-01-09 11:48:18 --> Severity: Warning --> Invalid argument supplied for foreach() C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 138
+ERROR - 2019-01-09 11:48:18 --> Severity: Notice --> Undefined variable: clientname C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 143
+ERROR - 2019-01-09 11:48:18 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:48:18 --> Severity: Notice --> Undefined variable: clientname C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 143
+ERROR - 2019-01-09 11:48:18 --> Severity: Notice --> Undefined variable: openingbalance C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 6
+ERROR - 2019-01-09 11:48:18 --> Severity: Notice --> Undefined variable: openingbalance C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 6
+ERROR - 2019-01-09 11:48:18 --> Severity: Notice --> Undefined variable: financialyear C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 10
+ERROR - 2019-01-09 11:48:18 --> Severity: Warning --> Invalid argument supplied for foreach() C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 6
+ERROR - 2019-01-09 11:48:18 --> Severity: Warning --> Invalid argument supplied for foreach() C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 10
+ERROR - 2019-01-09 11:48:18 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:48:18 --> Severity: Notice --> Undefined variable: tot_amount C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 144
+ERROR - 2019-01-09 11:48:18 --> Severity: Warning --> Invalid argument supplied for foreach() C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 138
+ERROR - 2019-01-09 11:48:18 --> Severity: Notice --> Undefined variable: tot_amount C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 144
+ERROR - 2019-01-09 11:48:18 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:48:18 --> Severity: Notice --> Undefined variable: customerledger C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 138
+ERROR - 2019-01-09 11:48:18 --> Severity: Warning --> Invalid argument supplied for foreach() C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 6
+ERROR - 2019-01-09 11:48:18 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:48:18 --> Severity: Notice --> Undefined variable: supplierid C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 148
+ERROR - 2019-01-09 11:48:18 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 326
+ERROR - 2019-01-09 11:48:18 --> Severity: Notice --> Undefined variable: customerledger C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 138
+ERROR - 2019-01-09 11:48:18 --> Severity: Warning --> Invalid argument supplied for foreach() C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 10
+ERROR - 2019-01-09 11:48:18 --> Severity: Notice --> Undefined variable: clientname C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 143
+ERROR - 2019-01-09 11:48:18 --> Severity: Warning --> Invalid argument supplied for foreach() C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 6
+ERROR - 2019-01-09 11:48:18 --> Severity: Notice --> Undefined variable: supplierid C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 148
+ERROR - 2019-01-09 11:48:18 --> Severity: Notice --> Undefined variable: suppliername C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 149
+ERROR - 2019-01-09 11:48:18 --> Severity: Notice --> Undefined variable: customerledger C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 138
+ERROR - 2019-01-09 11:48:18 --> Severity: Notice --> Undefined variable: tot_amount C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 144
+ERROR - 2019-01-09 11:48:18 --> Severity: Warning --> Invalid argument supplied for foreach() C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 138
+ERROR - 2019-01-09 11:48:18 --> Severity: Notice --> Undefined variable: financialyear C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 10
+ERROR - 2019-01-09 11:48:18 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 327
+ERROR - 2019-01-09 11:48:18 --> Severity: Notice --> Undefined variable: clientname C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 143
+ERROR - 2019-01-09 11:48:18 --> Severity: Warning --> Invalid argument supplied for foreach() C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 138
+ERROR - 2019-01-09 11:48:18 --> Severity: Notice --> Undefined variable: financialyear C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 10
+ERROR - 2019-01-09 11:48:18 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:48:18 --> Severity: Warning --> Invalid argument supplied for foreach() C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 10
+ERROR - 2019-01-09 11:48:18 --> Severity: Notice --> Undefined variable: supplierid C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 148
+ERROR - 2019-01-09 11:48:18 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:48:18 --> Severity: Notice --> Undefined variable: financialyear C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 10
+ERROR - 2019-01-09 11:48:18 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:48:19 --> Severity: Notice --> Undefined variable: tot_amount C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 144
+ERROR - 2019-01-09 11:48:19 --> Severity: Warning --> Invalid argument supplied for foreach() C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 138
+ERROR - 2019-01-09 11:48:19 --> Severity: Warning --> Invalid argument supplied for foreach() C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 10
+ERROR - 2019-01-09 11:48:19 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 327
+ERROR - 2019-01-09 11:48:19 --> Severity: Notice --> Undefined variable: suppliername C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 149
+ERROR - 2019-01-09 11:48:19 --> Severity: Notice --> Undefined variable: clientname C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 143
+ERROR - 2019-01-09 11:48:19 --> Severity: Notice --> Undefined variable: clientname C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 143
+ERROR - 2019-01-09 11:48:19 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:48:19 --> Severity: Warning --> Invalid argument supplied for foreach() C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 10
+ERROR - 2019-01-09 11:48:19 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:48:19 --> Severity: Notice --> Undefined variable: suppliername C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 149
+ERROR - 2019-01-09 11:48:19 --> Severity: Notice --> Undefined variable: record C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 356
+ERROR - 2019-01-09 11:48:19 --> Severity: Notice --> Undefined variable: clientname C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 143
+ERROR - 2019-01-09 11:48:19 --> Severity: Notice --> Undefined variable: tot_amount C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 144
+ERROR - 2019-01-09 11:48:19 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:48:19 --> Severity: Notice --> Undefined variable: customerledger C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 138
+ERROR - 2019-01-09 11:48:19 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:48:19 --> Severity: Notice --> Undefined variable: supplierid C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 148
+ERROR - 2019-01-09 11:48:19 --> Severity: Notice --> Undefined variable: tot_amount C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 144
+ERROR - 2019-01-09 11:48:19 --> Severity: Notice --> Undefined variable: customerledger C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 138
+ERROR - 2019-01-09 11:48:19 --> Severity: Notice --> Undefined variable: customerledger C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 138
+ERROR - 2019-01-09 11:48:19 --> Severity: Notice --> Undefined variable: supplierid C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 148
+ERROR - 2019-01-09 11:48:19 --> Severity: Notice --> Undefined variable: suppliername C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 149
+ERROR - 2019-01-09 11:48:19 --> Severity: Warning --> Invalid argument supplied for foreach() C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 138
+ERROR - 2019-01-09 11:48:19 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:48:19 --> Severity: Notice --> Undefined variable: tot_amount C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 144
+ERROR - 2019-01-09 11:48:19 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:48:19 --> Severity: Warning --> Invalid argument supplied for foreach() C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 138
+ERROR - 2019-01-09 11:48:19 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 356
+ERROR - 2019-01-09 11:48:19 --> Severity: Warning --> Invalid argument supplied for foreach() C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 138
+ERROR - 2019-01-09 11:48:19 --> Severity: Notice --> Undefined variable: supplierid C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 148
+ERROR - 2019-01-09 11:48:19 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:48:19 --> Severity: Notice --> Undefined variable: suppliername C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 149
+ERROR - 2019-01-09 11:48:19 --> Severity: Notice --> Undefined variable: clientname C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 143
+ERROR - 2019-01-09 11:48:19 --> Severity: Notice --> Undefined variable: clientname C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 143
+ERROR - 2019-01-09 11:48:19 --> Severity: Notice --> Undefined variable: supplierid C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 148
+ERROR - 2019-01-09 11:48:19 --> Severity: Notice --> Undefined variable: tot_amount C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 144
+ERROR - 2019-01-09 11:48:19 --> Severity: Notice --> Undefined variable: clientname C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 143
+ERROR - 2019-01-09 11:48:19 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:48:20 --> Severity: Notice --> Undefined property: stdClass::$amountreceived C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 315
+ERROR - 2019-01-09 11:48:20 --> Severity: Notice --> Undefined variable: suppliername C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 149
+ERROR - 2019-01-09 11:48:20 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:48:20 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:48:20 --> Severity: Notice --> Undefined variable: supplierid C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 148
+ERROR - 2019-01-09 11:48:20 --> Severity: Notice --> Undefined variable: tot_amount C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 144
+ERROR - 2019-01-09 11:48:20 --> Severity: Notice --> Undefined variable: tot_amount C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 144
+ERROR - 2019-01-09 11:48:20 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:48:20 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 324
+ERROR - 2019-01-09 11:48:20 --> Severity: Notice --> Undefined variable: suppliername C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 149
+ERROR - 2019-01-09 11:48:20 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:48:20 --> Severity: Notice --> Undefined variable: suppliername C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 149
+ERROR - 2019-01-09 11:48:20 --> Severity: Notice --> Undefined variable: supplierid C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 148
+ERROR - 2019-01-09 11:48:20 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:48:20 --> Severity: Notice --> Undefined variable: supplierid C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 148
+ERROR - 2019-01-09 11:48:20 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:48:21 --> Severity: Notice --> Undefined variable: suppliername C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 149
+ERROR - 2019-01-09 11:48:22 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:48:22 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:48:22 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:48:23 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:48:23 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 324
+ERROR - 2019-01-09 11:48:23 --> Severity: Notice --> Undefined variable: suppliername C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 149
+ERROR - 2019-01-09 11:48:23 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 325
+ERROR - 2019-01-09 11:48:23 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:48:23 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:48:23 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:48:23 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:48:24 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:48:24 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:48:24 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:48:24 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 325
+ERROR - 2019-01-09 11:48:24 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:48:24 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:48:25 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 326
+ERROR - 2019-01-09 11:48:25 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:48:25 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 326
+ERROR - 2019-01-09 11:48:25 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:48:25 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:48:25 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 327
+ERROR - 2019-01-09 11:48:25 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:48:25 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:48:25 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:48:25 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:48:25 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 327
+ERROR - 2019-01-09 11:48:25 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:48:25 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:48:25 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:48:25 --> Severity: Notice --> Undefined variable: record C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 356
+ERROR - 2019-01-09 11:48:25 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 356
+ERROR - 2019-01-09 11:48:25 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:48:25 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:48:25 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:48:25 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:48:25 --> Severity: Notice --> Undefined property: stdClass::$amountreceived C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 315
+ERROR - 2019-01-09 11:48:25 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:48:25 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:48:25 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 324
+ERROR - 2019-01-09 11:48:25 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:48:25 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:48:25 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 324
+ERROR - 2019-01-09 11:48:25 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 325
+ERROR - 2019-01-09 11:48:25 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:48:25 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:48:25 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 325
+ERROR - 2019-01-09 11:48:25 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:48:25 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:48:25 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 326
+ERROR - 2019-01-09 11:48:25 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:48:25 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:48:25 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:48:25 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:48:25 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 326
+ERROR - 2019-01-09 11:48:25 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 327
+ERROR - 2019-01-09 11:48:25 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:48:26 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:48:26 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:48:26 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 327
+ERROR - 2019-01-09 11:48:26 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:48:26 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:48:26 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:48:26 --> Severity: Notice --> Undefined variable: record C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 356
+ERROR - 2019-01-09 11:48:26 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:48:26 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:48:26 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:48:26 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 356
+ERROR - 2019-01-09 11:48:26 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:48:26 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:48:26 --> Severity: Notice --> Undefined property: stdClass::$amountreceived C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 315
+ERROR - 2019-01-09 11:48:26 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:48:26 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 324
+ERROR - 2019-01-09 11:48:26 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:48:26 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:48:26 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:48:26 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 324
+ERROR - 2019-01-09 11:48:26 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:48:26 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:48:26 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 325
+ERROR - 2019-01-09 11:48:26 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:48:26 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 325
+ERROR - 2019-01-09 11:48:26 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:48:27 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 326
+ERROR - 2019-01-09 11:48:27 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:48:27 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:48:27 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:48:27 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:48:27 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 326
+ERROR - 2019-01-09 11:48:27 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:48:27 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:48:27 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 327
+ERROR - 2019-01-09 11:48:27 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:48:27 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 327
+ERROR - 2019-01-09 11:48:27 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:48:27 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:48:27 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:48:27 --> Severity: Notice --> Undefined variable: record C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 356
+ERROR - 2019-01-09 11:48:27 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 356
+ERROR - 2019-01-09 11:48:27 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:48:27 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:48:27 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:48:27 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:48:27 --> Severity: Notice --> Undefined property: stdClass::$amountreceived C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 315
+ERROR - 2019-01-09 11:48:27 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:48:27 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:48:27 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 324
+ERROR - 2019-01-09 11:48:28 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:48:28 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:48:28 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 324
+ERROR - 2019-01-09 11:48:28 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:48:28 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 325
+ERROR - 2019-01-09 11:48:28 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:48:28 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:48:28 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 325
+ERROR - 2019-01-09 11:48:28 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:48:28 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:48:28 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:48:28 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 326
+ERROR - 2019-01-09 11:48:28 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 326
+ERROR - 2019-01-09 11:48:28 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:48:28 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:48:28 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 327
+ERROR - 2019-01-09 11:48:28 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:48:28 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:48:28 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:48:28 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 327
+ERROR - 2019-01-09 11:48:28 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:48:28 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:48:28 --> Severity: Notice --> Undefined variable: record C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 356
+ERROR - 2019-01-09 11:48:28 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:48:28 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:48:28 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 356
+ERROR - 2019-01-09 11:48:28 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:48:29 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:48:29 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:48:29 --> Severity: Notice --> Undefined property: stdClass::$amountreceived C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 315
+ERROR - 2019-01-09 11:48:29 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:48:29 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:48:29 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:48:29 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:48:29 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 324
+ERROR - 2019-01-09 11:48:29 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 324
+ERROR - 2019-01-09 11:48:29 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:48:29 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:48:29 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 325
+ERROR - 2019-01-09 11:48:29 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:48:29 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:48:29 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:48:29 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:48:29 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 325
+ERROR - 2019-01-09 11:48:29 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 326
+ERROR - 2019-01-09 11:48:29 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:48:29 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:48:29 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:48:29 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 326
+ERROR - 2019-01-09 11:48:29 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:48:30 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:48:30 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:48:30 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 327
+ERROR - 2019-01-09 11:48:30 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:48:30 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:48:30 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 327
+ERROR - 2019-01-09 11:48:30 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:48:30 --> Severity: Notice --> Undefined variable: record C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 356
+ERROR - 2019-01-09 11:48:30 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:48:30 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:48:30 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:48:30 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 356
+ERROR - 2019-01-09 11:48:30 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:48:30 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:48:30 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:48:30 --> Severity: Notice --> Undefined property: stdClass::$amountreceived C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 315
+ERROR - 2019-01-09 11:48:30 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:48:30 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 324
+ERROR - 2019-01-09 11:48:30 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:48:30 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:48:30 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:48:30 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 324
+ERROR - 2019-01-09 11:48:30 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:48:30 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 325
+ERROR - 2019-01-09 11:48:30 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:48:30 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:48:30 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 325
+ERROR - 2019-01-09 11:48:30 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:48:31 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 326
+ERROR - 2019-01-09 11:48:31 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:48:31 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:48:31 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:48:31 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:48:31 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 326
+ERROR - 2019-01-09 11:48:31 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 327
+ERROR - 2019-01-09 11:48:31 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:48:31 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:48:31 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:48:31 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 327
+ERROR - 2019-01-09 11:48:31 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:48:31 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:48:31 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:48:31 --> Severity: Notice --> Undefined variable: record C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 356
+ERROR - 2019-01-09 11:48:31 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 356
+ERROR - 2019-01-09 11:48:31 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:48:31 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:48:31 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:48:31 --> Severity: Notice --> Undefined property: stdClass::$amountreceived C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 315
+ERROR - 2019-01-09 11:48:31 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:48:31 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 324
+ERROR - 2019-01-09 11:48:31 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:48:31 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:48:31 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 324
+ERROR - 2019-01-09 11:48:31 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:48:32 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:48:32 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:48:32 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 325
+ERROR - 2019-01-09 11:48:32 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 325
+ERROR - 2019-01-09 11:48:32 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:48:32 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:48:32 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:48:32 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 326
+ERROR - 2019-01-09 11:48:32 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:48:32 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:48:32 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 326
+ERROR - 2019-01-09 11:48:32 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:48:32 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:48:32 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:48:32 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 327
+ERROR - 2019-01-09 11:48:32 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:48:32 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:48:32 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:48:32 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 327
+ERROR - 2019-01-09 11:48:32 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:48:32 --> Severity: Notice --> Undefined variable: record C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 356
+ERROR - 2019-01-09 11:48:32 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:48:33 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 356
+ERROR - 2019-01-09 11:48:33 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:48:33 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:48:33 --> Severity: Notice --> Undefined property: stdClass::$amountreceived C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 315
+ERROR - 2019-01-09 11:48:33 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:48:33 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:48:33 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 324
+ERROR - 2019-01-09 11:48:33 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:48:33 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:48:33 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 324
+ERROR - 2019-01-09 11:48:34 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:48:34 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:48:34 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 325
+ERROR - 2019-01-09 11:48:34 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:48:34 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 325
+ERROR - 2019-01-09 11:48:34 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:48:34 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:48:34 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:48:34 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 326
+ERROR - 2019-01-09 11:48:34 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:48:34 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:48:34 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 326
+ERROR - 2019-01-09 11:48:34 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:48:34 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:48:34 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:48:34 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 327
+ERROR - 2019-01-09 11:48:34 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 327
+ERROR - 2019-01-09 11:48:34 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:48:34 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:48:34 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:48:34 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:48:34 --> Severity: Notice --> Undefined variable: record C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 356
+ERROR - 2019-01-09 11:48:35 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:48:35 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:48:35 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 356
+ERROR - 2019-01-09 11:48:35 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:48:35 --> Severity: Notice --> Undefined property: stdClass::$amountreceived C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 315
+ERROR - 2019-01-09 11:48:35 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:48:35 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:48:35 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:48:35 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 324
+ERROR - 2019-01-09 11:48:35 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:48:35 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 324
+ERROR - 2019-01-09 11:48:35 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:48:35 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:48:35 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 325
+ERROR - 2019-01-09 11:48:35 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:48:35 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:48:35 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:48:35 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:48:35 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 325
+ERROR - 2019-01-09 11:48:35 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:48:35 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:48:35 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 326
+ERROR - 2019-01-09 11:48:36 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:48:36 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:48:36 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 326
+ERROR - 2019-01-09 11:48:36 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:48:36 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 327
+ERROR - 2019-01-09 11:48:36 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:48:36 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:48:36 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:48:36 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 327
+ERROR - 2019-01-09 11:48:36 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:48:36 --> Severity: Notice --> Undefined variable: record C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 356
+ERROR - 2019-01-09 11:48:36 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:48:36 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 356
+ERROR - 2019-01-09 11:48:36 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:48:36 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:48:36 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:48:36 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:48:36 --> Severity: Notice --> Undefined property: stdClass::$amountreceived C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 315
+ERROR - 2019-01-09 11:48:36 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 324
+ERROR - 2019-01-09 11:48:36 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:48:36 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:48:36 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:48:36 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:48:36 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 324
+ERROR - 2019-01-09 11:48:36 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 325
+ERROR - 2019-01-09 11:48:36 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:48:36 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:48:36 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:48:36 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 325
+ERROR - 2019-01-09 11:48:36 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:48:36 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:48:36 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 326
+ERROR - 2019-01-09 11:48:36 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:48:37 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 326
+ERROR - 2019-01-09 11:48:37 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:48:37 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:48:37 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:48:37 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 327
+ERROR - 2019-01-09 11:48:37 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:48:37 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:48:37 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:48:37 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 327
+ERROR - 2019-01-09 11:48:37 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:48:37 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:48:37 --> Severity: Notice --> Undefined variable: record C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 356
+ERROR - 2019-01-09 11:48:37 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:48:37 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:48:37 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 356
+ERROR - 2019-01-09 11:48:37 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:48:37 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:48:37 --> Severity: Notice --> Undefined property: stdClass::$amountreceived C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 315
+ERROR - 2019-01-09 11:48:37 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:48:37 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:48:37 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 324
+ERROR - 2019-01-09 11:48:37 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 324
+ERROR - 2019-01-09 11:48:37 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:48:37 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:48:37 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:48:37 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:48:37 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 325
+ERROR - 2019-01-09 11:48:37 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:48:37 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 325
+ERROR - 2019-01-09 11:48:37 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:48:38 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:48:38 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 326
+ERROR - 2019-01-09 11:48:38 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:48:38 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:48:38 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 326
+ERROR - 2019-01-09 11:48:38 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:48:38 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:48:38 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:48:38 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 327
+ERROR - 2019-01-09 11:48:38 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:48:38 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 327
+ERROR - 2019-01-09 11:48:38 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:48:38 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:48:38 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:48:38 --> Severity: Notice --> Undefined variable: record C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 356
+ERROR - 2019-01-09 11:48:38 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:48:38 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:48:38 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 356
+ERROR - 2019-01-09 11:48:38 --> Severity: Notice --> Undefined property: stdClass::$amountreceived C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 315
+ERROR - 2019-01-09 11:48:38 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:48:38 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:48:38 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 324
+ERROR - 2019-01-09 11:48:38 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:48:38 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 324
+ERROR - 2019-01-09 11:48:38 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:48:39 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 325
+ERROR - 2019-01-09 11:48:39 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:48:39 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:48:39 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:48:39 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:48:39 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 325
+ERROR - 2019-01-09 11:48:39 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 326
+ERROR - 2019-01-09 11:48:39 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:48:39 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:48:39 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:48:39 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:48:39 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 326
+ERROR - 2019-01-09 11:48:39 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:48:39 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 327
+ERROR - 2019-01-09 11:48:39 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:48:39 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:48:39 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 327
+ERROR - 2019-01-09 11:48:39 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:48:39 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:48:39 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:48:39 --> Severity: Notice --> Undefined variable: record C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 356
+ERROR - 2019-01-09 11:48:40 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:48:40 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:48:40 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:48:40 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 356
+ERROR - 2019-01-09 11:48:40 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:48:40 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:48:40 --> Severity: Notice --> Undefined property: stdClass::$amountreceived C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 315
+ERROR - 2019-01-09 11:48:40 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:48:40 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:48:40 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:48:40 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 324
+ERROR - 2019-01-09 11:48:40 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:48:40 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:48:40 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:48:40 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 324
+ERROR - 2019-01-09 11:48:40 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:48:40 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 325
+ERROR - 2019-01-09 11:48:40 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:48:40 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:48:40 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 325
+ERROR - 2019-01-09 11:48:40 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:48:41 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 326
+ERROR - 2019-01-09 11:48:41 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:48:41 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:48:41 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:48:41 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:48:41 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:48:41 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:48:41 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 326
+ERROR - 2019-01-09 11:48:41 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 327
+ERROR - 2019-01-09 11:48:41 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:48:41 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:48:41 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:48:41 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:48:41 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 327
+ERROR - 2019-01-09 11:48:42 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:48:42 --> Severity: Notice --> Undefined variable: record C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 356
+ERROR - 2019-01-09 11:48:42 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:48:42 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 356
+ERROR - 2019-01-09 11:48:42 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:48:42 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:48:42 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:48:42 --> Severity: Notice --> Undefined property: stdClass::$amountreceived C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 315
+ERROR - 2019-01-09 11:48:42 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:48:42 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 324
+ERROR - 2019-01-09 11:48:42 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:48:42 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:48:42 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:48:42 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 324
+ERROR - 2019-01-09 11:48:42 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:48:42 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:48:42 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:48:42 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 325
+ERROR - 2019-01-09 11:48:42 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 325
+ERROR - 2019-01-09 11:48:42 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:48:42 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:48:42 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:48:42 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 326
+ERROR - 2019-01-09 11:48:42 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:48:42 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:48:42 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 326
+ERROR - 2019-01-09 11:48:42 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:48:42 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 327
+ERROR - 2019-01-09 11:48:42 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:48:42 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:48:42 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:48:42 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:48:42 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 327
+ERROR - 2019-01-09 11:48:43 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:48:43 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:48:43 --> Severity: Notice --> Undefined variable: record C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 356
+ERROR - 2019-01-09 11:48:43 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 356
+ERROR - 2019-01-09 11:48:43 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:48:43 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:48:43 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:48:43 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:48:43 --> Severity: Notice --> Undefined property: stdClass::$amountreceived C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 315
+ERROR - 2019-01-09 11:48:43 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:48:43 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 324
+ERROR - 2019-01-09 11:48:43 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:48:43 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:48:43 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 324
+ERROR - 2019-01-09 11:48:43 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:48:43 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:48:43 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 325
+ERROR - 2019-01-09 11:48:43 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:48:43 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:48:43 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:48:44 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:48:44 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 325
+ERROR - 2019-01-09 11:48:44 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:48:44 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:48:44 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:48:44 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 326
+ERROR - 2019-01-09 11:48:44 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:48:44 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:48:44 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 326
+ERROR - 2019-01-09 11:48:44 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:48:44 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:48:44 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 327
+ERROR - 2019-01-09 11:48:44 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:48:44 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 327
+ERROR - 2019-01-09 11:48:45 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:48:45 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:48:45 --> Severity: Notice --> Undefined variable: record C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 356
+ERROR - 2019-01-09 11:48:45 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:48:45 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 356
+ERROR - 2019-01-09 11:48:45 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:48:45 --> Severity: Notice --> Undefined property: stdClass::$amountreceived C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 315
+ERROR - 2019-01-09 11:48:45 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:48:45 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:48:45 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:48:45 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 324
+ERROR - 2019-01-09 11:48:45 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:48:45 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:48:45 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 324
+ERROR - 2019-01-09 11:48:45 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:48:45 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:48:45 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:48:45 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 325
+ERROR - 2019-01-09 11:48:45 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:48:45 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:48:45 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 325
+ERROR - 2019-01-09 11:48:45 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:48:45 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:48:45 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 326
+ERROR - 2019-01-09 11:48:45 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:48:45 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 326
+ERROR - 2019-01-09 11:48:45 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:48:45 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:48:45 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 327
+ERROR - 2019-01-09 11:48:45 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:48:46 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:48:46 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:48:46 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 327
+ERROR - 2019-01-09 11:48:46 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:48:46 --> Severity: Notice --> Undefined variable: record C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 356
+ERROR - 2019-01-09 11:48:46 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:48:46 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:48:46 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:48:46 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 356
+ERROR - 2019-01-09 11:48:46 --> Severity: Notice --> Undefined property: stdClass::$amountreceived C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 315
+ERROR - 2019-01-09 11:48:46 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:48:46 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:48:46 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:48:46 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:48:46 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 324
+ERROR - 2019-01-09 11:48:46 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 324
+ERROR - 2019-01-09 11:48:46 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:48:46 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:48:46 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:48:46 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:48:46 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 325
+ERROR - 2019-01-09 11:48:46 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:48:46 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 325
+ERROR - 2019-01-09 11:48:46 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:48:46 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:48:46 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:48:46 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 326
+ERROR - 2019-01-09 11:48:46 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 326
+ERROR - 2019-01-09 11:48:46 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:48:46 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:48:47 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:48:47 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 327
+ERROR - 2019-01-09 11:48:47 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:48:47 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:48:47 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:48:47 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 327
+ERROR - 2019-01-09 11:48:47 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:48:47 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:48:47 --> Severity: Notice --> Undefined variable: record C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 356
+ERROR - 2019-01-09 11:48:47 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 356
+ERROR - 2019-01-09 11:48:47 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:48:47 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:48:47 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:48:47 --> Severity: Notice --> Undefined property: stdClass::$amountreceived C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 315
+ERROR - 2019-01-09 11:48:47 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:48:47 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 324
+ERROR - 2019-01-09 11:48:47 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:48:47 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:48:47 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 324
+ERROR - 2019-01-09 11:48:47 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:48:47 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:48:48 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:48:48 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 325
+ERROR - 2019-01-09 11:48:48 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:48:48 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:48:48 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:48:48 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 325
+ERROR - 2019-01-09 11:48:48 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:48:48 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 326
+ERROR - 2019-01-09 11:48:48 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:48:48 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:48:48 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 326
+ERROR - 2019-01-09 11:48:48 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:48:48 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 327
+ERROR - 2019-01-09 11:48:48 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:48:48 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:48:48 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 327
+ERROR - 2019-01-09 11:48:48 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:48:48 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:48:48 --> Severity: Notice --> Undefined variable: record C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 356
+ERROR - 2019-01-09 11:48:48 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 356
+ERROR - 2019-01-09 11:48:48 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:48:48 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:48:49 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:48:49 --> Severity: Notice --> Undefined property: stdClass::$amountreceived C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 315
+ERROR - 2019-01-09 11:48:49 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:48:49 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 324
+ERROR - 2019-01-09 11:48:49 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:48:49 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:48:49 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:48:49 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:48:49 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 324
+ERROR - 2019-01-09 11:48:49 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:48:49 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:48:49 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 325
+ERROR - 2019-01-09 11:48:49 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 325
+ERROR - 2019-01-09 11:48:49 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:48:49 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:48:49 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:48:49 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 326
+ERROR - 2019-01-09 11:48:49 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:48:49 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:48:49 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:48:49 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 326
+ERROR - 2019-01-09 11:48:49 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:48:49 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 327
+ERROR - 2019-01-09 11:48:49 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:48:50 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 327
+ERROR - 2019-01-09 11:48:50 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:48:50 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:48:50 --> Severity: Notice --> Undefined variable: record C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 356
+ERROR - 2019-01-09 11:48:50 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:48:50 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:48:50 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 356
+ERROR - 2019-01-09 11:48:50 --> Severity: Notice --> Undefined property: stdClass::$amountreceived C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 315
+ERROR - 2019-01-09 11:48:50 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:48:50 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:48:50 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:48:50 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 324
+ERROR - 2019-01-09 11:48:50 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:48:50 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:48:50 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 324
+ERROR - 2019-01-09 11:48:50 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:48:51 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:48:51 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:48:51 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 325
+ERROR - 2019-01-09 11:48:51 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 325
+ERROR - 2019-01-09 11:48:51 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:48:51 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:48:51 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:48:51 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:48:51 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 326
+ERROR - 2019-01-09 11:48:51 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:48:51 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:48:51 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:48:51 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:48:51 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 326
+ERROR - 2019-01-09 11:48:51 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:48:51 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:48:51 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 327
+ERROR - 2019-01-09 11:48:51 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 327
+ERROR - 2019-01-09 11:48:51 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:48:51 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:48:51 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:48:51 --> Severity: Notice --> Undefined variable: record C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 356
+ERROR - 2019-01-09 11:48:51 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:48:52 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 356
+ERROR - 2019-01-09 11:48:52 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:48:52 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:48:52 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:48:52 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:48:52 --> Severity: Notice --> Undefined property: stdClass::$amountreceived C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 315
+ERROR - 2019-01-09 11:48:52 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:48:52 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:48:52 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 324
+ERROR - 2019-01-09 11:48:52 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 324
+ERROR - 2019-01-09 11:48:52 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:48:52 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:48:52 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:48:52 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:48:52 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 325
+ERROR - 2019-01-09 11:48:52 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:48:52 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:48:52 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 325
+ERROR - 2019-01-09 11:48:52 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 326
+ERROR - 2019-01-09 11:48:52 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:48:52 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:48:52 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:48:52 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:48:52 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:48:52 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 326
+ERROR - 2019-01-09 11:48:52 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:48:53 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:48:53 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:48:53 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 327
+ERROR - 2019-01-09 11:48:53 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 327
+ERROR - 2019-01-09 11:48:53 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:48:53 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:48:53 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:48:53 --> Severity: Notice --> Undefined variable: record C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 356
+ERROR - 2019-01-09 11:48:53 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:48:53 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 356
+ERROR - 2019-01-09 11:48:53 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:48:53 --> Severity: Notice --> Undefined property: stdClass::$amountreceived C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 315
+ERROR - 2019-01-09 11:48:53 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:48:53 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 324
+ERROR - 2019-01-09 11:48:53 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:48:53 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:48:53 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:48:53 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 324
+ERROR - 2019-01-09 11:48:53 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:48:53 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 325
+ERROR - 2019-01-09 11:48:53 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:48:53 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:48:53 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:48:53 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 325
+ERROR - 2019-01-09 11:48:53 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:48:54 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:48:54 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 326
+ERROR - 2019-01-09 11:48:54 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:48:54 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:48:54 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 326
+ERROR - 2019-01-09 11:48:54 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:48:54 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:48:54 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 327
+ERROR - 2019-01-09 11:48:54 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:48:54 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 327
+ERROR - 2019-01-09 11:48:54 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:48:54 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:48:54 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:48:54 --> Severity: Notice --> Undefined variable: record C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 356
+ERROR - 2019-01-09 11:48:54 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 356
+ERROR - 2019-01-09 11:48:54 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:48:54 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:48:54 --> Severity: Notice --> Undefined property: stdClass::$amountreceived C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 315
+ERROR - 2019-01-09 11:48:54 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:48:54 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:48:54 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:48:54 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 324
+ERROR - 2019-01-09 11:48:54 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:48:54 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:48:54 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:48:54 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 324
+ERROR - 2019-01-09 11:48:54 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:48:54 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 325
+ERROR - 2019-01-09 11:48:54 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:48:55 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 325
+ERROR - 2019-01-09 11:48:55 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:48:55 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:48:55 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 326
+ERROR - 2019-01-09 11:48:55 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:48:55 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:48:55 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:48:55 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:48:55 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 326
+ERROR - 2019-01-09 11:48:55 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 327
+ERROR - 2019-01-09 11:48:55 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:48:55 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:48:55 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:48:55 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:48:55 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 327
+ERROR - 2019-01-09 11:48:55 --> Severity: Notice --> Undefined variable: record C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 356
+ERROR - 2019-01-09 11:48:55 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:48:55 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:48:55 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:48:55 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:48:55 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 356
+ERROR - 2019-01-09 11:48:55 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:48:55 --> Severity: Notice --> Undefined property: stdClass::$amountreceived C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 315
+ERROR - 2019-01-09 11:48:56 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 324
+ERROR - 2019-01-09 11:48:56 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:48:56 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:48:56 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:48:56 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:48:56 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 324
+ERROR - 2019-01-09 11:48:56 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 325
+ERROR - 2019-01-09 11:48:56 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:48:56 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:48:56 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:48:56 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 325
+ERROR - 2019-01-09 11:48:56 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:48:56 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:48:56 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:48:56 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 326
+ERROR - 2019-01-09 11:48:56 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 326
+ERROR - 2019-01-09 11:48:56 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:48:56 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:48:56 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:48:56 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:48:56 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 327
+ERROR - 2019-01-09 11:48:56 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:48:56 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:48:56 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 327
+ERROR - 2019-01-09 11:48:57 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:48:57 --> Severity: Notice --> Undefined variable: record C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 356
+ERROR - 2019-01-09 11:48:57 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:48:57 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:48:57 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 356
+ERROR - 2019-01-09 11:48:57 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:48:57 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:48:57 --> Severity: Notice --> Undefined property: stdClass::$amountreceived C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 315
+ERROR - 2019-01-09 11:48:57 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:48:57 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:48:57 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 324
+ERROR - 2019-01-09 11:48:57 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:48:57 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:48:57 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:48:57 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 324
+ERROR - 2019-01-09 11:48:57 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:48:57 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 325
+ERROR - 2019-01-09 11:48:57 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:48:57 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:48:57 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:48:57 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 325
+ERROR - 2019-01-09 11:48:57 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:48:57 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 326
+ERROR - 2019-01-09 11:48:57 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:48:58 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:48:58 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:48:58 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 326
+ERROR - 2019-01-09 11:48:58 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:48:58 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 327
+ERROR - 2019-01-09 11:48:58 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:48:58 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 327
+ERROR - 2019-01-09 11:48:58 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:48:58 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:48:58 --> Severity: Notice --> Undefined variable: record C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 356
+ERROR - 2019-01-09 11:48:58 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:48:58 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:48:58 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:48:58 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 356
+ERROR - 2019-01-09 11:48:58 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:48:58 --> Severity: Notice --> Undefined property: stdClass::$amountreceived C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 315
+ERROR - 2019-01-09 11:48:58 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:48:58 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:48:58 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:48:58 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 324
+ERROR - 2019-01-09 11:48:58 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:48:58 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 324
+ERROR - 2019-01-09 11:48:58 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:48:59 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 325
+ERROR - 2019-01-09 11:48:59 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:48:59 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:48:59 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:48:59 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 325
+ERROR - 2019-01-09 11:48:59 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:48:59 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:48:59 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:48:59 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 326
+ERROR - 2019-01-09 11:48:59 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:48:59 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:48:59 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 326
+ERROR - 2019-01-09 11:48:59 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:48:59 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 327
+ERROR - 2019-01-09 11:48:59 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:48:59 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 327
+ERROR - 2019-01-09 11:48:59 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:48:59 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:48:59 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:48:59 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:48:59 --> Severity: Notice --> Undefined variable: record C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 356
+ERROR - 2019-01-09 11:48:59 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:48:59 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:48:59 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 356
+ERROR - 2019-01-09 11:48:59 --> Severity: Notice --> Undefined property: stdClass::$amountreceived C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 315
+ERROR - 2019-01-09 11:48:59 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:48:59 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:49:00 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 324
+ERROR - 2019-01-09 11:49:00 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:49:00 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:49:00 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 324
+ERROR - 2019-01-09 11:49:00 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:49:00 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:49:00 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:49:00 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 325
+ERROR - 2019-01-09 11:49:00 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:49:00 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:49:00 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:49:00 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 325
+ERROR - 2019-01-09 11:49:00 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:49:00 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:49:00 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 326
+ERROR - 2019-01-09 11:49:00 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:49:00 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 326
+ERROR - 2019-01-09 11:49:00 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:49:00 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:49:00 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 327
+ERROR - 2019-01-09 11:49:00 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:49:00 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:49:00 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 327
+ERROR - 2019-01-09 11:49:00 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:49:00 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:49:00 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:49:00 --> Severity: Notice --> Undefined variable: record C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 356
+ERROR - 2019-01-09 11:49:00 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:49:00 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:49:00 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 356
+ERROR - 2019-01-09 11:49:01 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:49:01 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:49:01 --> Severity: Notice --> Undefined property: stdClass::$amountreceived C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 315
+ERROR - 2019-01-09 11:49:01 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:49:01 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 324
+ERROR - 2019-01-09 11:49:01 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:49:01 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:49:01 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:49:01 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 324
+ERROR - 2019-01-09 11:49:01 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 325
+ERROR - 2019-01-09 11:49:01 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:49:01 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:49:01 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:49:01 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 325
+ERROR - 2019-01-09 11:49:01 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:49:01 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:49:01 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:49:01 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 326
+ERROR - 2019-01-09 11:49:01 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:49:01 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:49:01 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 326
+ERROR - 2019-01-09 11:49:01 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:49:01 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:49:01 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 327
+ERROR - 2019-01-09 11:49:01 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 327
+ERROR - 2019-01-09 11:49:01 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:49:01 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:49:01 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:49:01 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:49:01 --> Severity: Notice --> Undefined variable: record C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 356
+ERROR - 2019-01-09 11:49:02 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:49:02 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 356
+ERROR - 2019-01-09 11:49:02 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:49:02 --> Severity: Notice --> Undefined property: stdClass::$amountreceived C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 315
+ERROR - 2019-01-09 11:49:02 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:49:02 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:49:02 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:49:02 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 324
+ERROR - 2019-01-09 11:49:02 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:49:02 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:49:02 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:49:02 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 324
+ERROR - 2019-01-09 11:49:02 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 325
+ERROR - 2019-01-09 11:49:02 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:49:02 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:49:02 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:49:02 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:49:02 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 325
+ERROR - 2019-01-09 11:49:02 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 326
+ERROR - 2019-01-09 11:49:02 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:49:02 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:49:02 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:49:02 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 326
+ERROR - 2019-01-09 11:49:02 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:49:02 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:49:02 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 327
+ERROR - 2019-01-09 11:49:02 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:49:02 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:49:02 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:49:02 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 327
+ERROR - 2019-01-09 11:49:03 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:49:03 --> Severity: Notice --> Undefined variable: record C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 356
+ERROR - 2019-01-09 11:49:03 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:49:03 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:49:03 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:49:03 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 356
+ERROR - 2019-01-09 11:49:03 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:49:03 --> Severity: Notice --> Undefined property: stdClass::$amountreceived C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 315
+ERROR - 2019-01-09 11:49:03 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:49:03 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 324
+ERROR - 2019-01-09 11:49:03 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:49:03 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:49:03 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:49:03 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:49:03 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 324
+ERROR - 2019-01-09 11:49:03 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:49:03 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 325
+ERROR - 2019-01-09 11:49:03 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:49:03 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 325
+ERROR - 2019-01-09 11:49:03 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:49:03 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:49:03 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 326
+ERROR - 2019-01-09 11:49:03 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:49:03 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:49:03 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:49:03 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:49:03 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 326
+ERROR - 2019-01-09 11:49:04 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:49:04 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 327
+ERROR - 2019-01-09 11:49:04 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:49:04 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 327
+ERROR - 2019-01-09 11:49:04 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:49:04 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:49:04 --> Severity: Notice --> Undefined variable: record C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 356
+ERROR - 2019-01-09 11:49:04 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:49:04 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 356
+ERROR - 2019-01-09 11:49:04 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:49:04 --> Severity: Notice --> Undefined property: stdClass::$amountreceived C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 315
+ERROR - 2019-01-09 11:49:04 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:49:04 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:49:05 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:49:05 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 324
+ERROR - 2019-01-09 11:49:05 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:49:05 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:49:05 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:49:05 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 324
+ERROR - 2019-01-09 11:49:05 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:49:05 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:49:05 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 325
+ERROR - 2019-01-09 11:49:05 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:49:05 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:49:05 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:49:05 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 325
+ERROR - 2019-01-09 11:49:05 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 326
+ERROR - 2019-01-09 11:49:05 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:49:05 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:49:05 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:49:05 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:49:05 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 326
+ERROR - 2019-01-09 11:49:05 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:49:06 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 327
+ERROR - 2019-01-09 11:49:06 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:49:06 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:49:06 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:49:06 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 327
+ERROR - 2019-01-09 11:49:06 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:49:06 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:49:06 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:49:06 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:49:06 --> Severity: Notice --> Undefined variable: record C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 356
+ERROR - 2019-01-09 11:49:06 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:49:06 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:49:06 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 356
+ERROR - 2019-01-09 11:49:06 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:49:06 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:49:07 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:49:07 --> Severity: Notice --> Undefined property: stdClass::$amountreceived C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 315
+ERROR - 2019-01-09 11:49:07 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:49:07 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 324
+ERROR - 2019-01-09 11:49:07 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:49:07 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 324
+ERROR - 2019-01-09 11:49:07 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:49:07 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:49:07 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:49:07 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 325
+ERROR - 2019-01-09 11:49:07 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:49:07 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 325
+ERROR - 2019-01-09 11:49:07 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:49:07 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:49:07 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 326
+ERROR - 2019-01-09 11:49:07 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 326
+ERROR - 2019-01-09 11:49:07 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:49:07 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:49:07 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:49:07 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 327
+ERROR - 2019-01-09 11:49:07 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:49:07 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:49:07 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:49:07 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 327
+ERROR - 2019-01-09 11:49:08 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:49:08 --> Severity: Notice --> Undefined variable: record C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 356
+ERROR - 2019-01-09 11:49:08 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:49:08 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 356
+ERROR - 2019-01-09 11:49:08 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:49:08 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:49:08 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:49:08 --> Severity: Notice --> Undefined property: stdClass::$amountreceived C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 315
+ERROR - 2019-01-09 11:49:08 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:49:08 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 324
+ERROR - 2019-01-09 11:49:08 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:49:08 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:49:08 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:49:08 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 324
+ERROR - 2019-01-09 11:49:08 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 325
+ERROR - 2019-01-09 11:49:08 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:49:08 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:49:08 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:49:08 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:49:08 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 325
+ERROR - 2019-01-09 11:49:08 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:49:08 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 326
+ERROR - 2019-01-09 11:49:08 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:49:08 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 326
+ERROR - 2019-01-09 11:49:08 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:49:08 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:49:09 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:49:09 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:49:09 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 327
+ERROR - 2019-01-09 11:49:09 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:49:09 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:49:09 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 327
+ERROR - 2019-01-09 11:49:09 --> Severity: Notice --> Undefined variable: record C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 356
+ERROR - 2019-01-09 11:49:09 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:49:09 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:49:09 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:49:09 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 356
+ERROR - 2019-01-09 11:49:09 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:49:09 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:49:09 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:49:09 --> Severity: Notice --> Undefined property: stdClass::$amountreceived C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 315
+ERROR - 2019-01-09 11:49:09 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:49:09 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 324
+ERROR - 2019-01-09 11:49:09 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:49:09 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:49:09 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:49:09 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 324
+ERROR - 2019-01-09 11:49:09 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 325
+ERROR - 2019-01-09 11:49:09 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:49:09 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:49:09 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 325
+ERROR - 2019-01-09 11:49:09 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:49:09 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:49:09 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:49:09 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 326
+ERROR - 2019-01-09 11:49:09 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:49:10 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 326
+ERROR - 2019-01-09 11:49:10 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:49:10 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:49:10 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 327
+ERROR - 2019-01-09 11:49:10 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:49:10 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:49:10 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:49:10 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:49:10 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 327
+ERROR - 2019-01-09 11:49:10 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:49:10 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:49:10 --> Severity: Notice --> Undefined variable: record C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 356
+ERROR - 2019-01-09 11:49:10 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 356
+ERROR - 2019-01-09 11:49:10 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:49:10 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:49:10 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:49:10 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:49:10 --> Severity: Notice --> Undefined property: stdClass::$amountreceived C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 315
+ERROR - 2019-01-09 11:49:10 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 324
+ERROR - 2019-01-09 11:49:10 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:49:10 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:49:10 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:49:10 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 324
+ERROR - 2019-01-09 11:49:10 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:49:10 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:49:10 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 325
+ERROR - 2019-01-09 11:49:10 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:49:10 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 325
+ERROR - 2019-01-09 11:49:10 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:49:10 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:49:11 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:49:11 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 326
+ERROR - 2019-01-09 11:49:11 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:49:11 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:49:11 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 326
+ERROR - 2019-01-09 11:49:11 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:49:11 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:49:11 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 327
+ERROR - 2019-01-09 11:49:11 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:49:11 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:49:11 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:49:11 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 327
+ERROR - 2019-01-09 11:49:11 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:49:11 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:49:11 --> Severity: Notice --> Undefined variable: record C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 356
+ERROR - 2019-01-09 11:49:11 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 356
+ERROR - 2019-01-09 11:49:11 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:49:11 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:49:11 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:49:11 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:49:11 --> Severity: Notice --> Undefined property: stdClass::$amountreceived C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 315
+ERROR - 2019-01-09 11:49:11 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:49:11 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 324
+ERROR - 2019-01-09 11:49:11 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:49:11 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:49:11 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 324
+ERROR - 2019-01-09 11:49:11 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:49:11 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 325
+ERROR - 2019-01-09 11:49:11 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:49:11 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:49:12 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 325
+ERROR - 2019-01-09 11:49:12 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:49:12 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:49:12 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:49:12 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 326
+ERROR - 2019-01-09 11:49:12 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:49:12 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:49:12 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 326
+ERROR - 2019-01-09 11:49:12 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:49:12 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:49:12 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:49:12 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 327
+ERROR - 2019-01-09 11:49:12 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:49:12 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:49:12 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 327
+ERROR - 2019-01-09 11:49:12 --> Severity: Notice --> Undefined variable: record C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 356
+ERROR - 2019-01-09 11:49:12 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:49:12 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:49:13 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:49:13 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:49:13 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 356
+ERROR - 2019-01-09 11:49:13 --> Severity: Notice --> Undefined property: stdClass::$amountreceived C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 315
+ERROR - 2019-01-09 11:49:13 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:49:13 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:49:13 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:49:13 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 324
+ERROR - 2019-01-09 11:49:13 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:49:13 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:49:13 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 324
+ERROR - 2019-01-09 11:49:13 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:49:13 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:49:14 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 325
+ERROR - 2019-01-09 11:49:14 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:49:14 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:49:14 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:49:14 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:49:14 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 325
+ERROR - 2019-01-09 11:49:14 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:49:14 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:49:14 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 326
+ERROR - 2019-01-09 11:49:14 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:49:14 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 326
+ERROR - 2019-01-09 11:49:14 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:49:14 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 327
+ERROR - 2019-01-09 11:49:14 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:49:14 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:49:14 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 327
+ERROR - 2019-01-09 11:49:14 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:49:14 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:49:14 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:49:14 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:49:14 --> Severity: Notice --> Undefined variable: record C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 356
+ERROR - 2019-01-09 11:49:14 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:49:14 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 356
+ERROR - 2019-01-09 11:49:14 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:49:14 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:49:14 --> Severity: Notice --> Undefined property: stdClass::$amountreceived C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 315
+ERROR - 2019-01-09 11:49:14 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:49:15 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 324
+ERROR - 2019-01-09 11:49:15 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:49:15 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:49:15 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 324
+ERROR - 2019-01-09 11:49:15 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:49:15 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:49:15 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 325
+ERROR - 2019-01-09 11:49:15 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:49:15 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 325
+ERROR - 2019-01-09 11:49:15 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:49:15 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:49:15 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:49:15 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:49:15 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 326
+ERROR - 2019-01-09 11:49:15 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:49:15 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:49:15 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 326
+ERROR - 2019-01-09 11:49:15 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:49:15 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:49:15 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 327
+ERROR - 2019-01-09 11:49:15 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:49:15 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 327
+ERROR - 2019-01-09 11:49:15 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:49:16 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:49:16 --> Severity: Notice --> Undefined variable: record C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 356
+ERROR - 2019-01-09 11:49:16 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:49:16 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:49:16 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:49:16 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:49:16 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 356
+ERROR - 2019-01-09 11:49:16 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:49:16 --> Severity: Notice --> Undefined property: stdClass::$amountreceived C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 315
+ERROR - 2019-01-09 11:49:16 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:49:16 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:49:16 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:49:16 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:49:16 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 324
+ERROR - 2019-01-09 11:49:16 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:49:16 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:49:16 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 324
+ERROR - 2019-01-09 11:49:16 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:49:16 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 325
+ERROR - 2019-01-09 11:49:16 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:49:16 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:49:16 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 325
+ERROR - 2019-01-09 11:49:16 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:49:16 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 326
+ERROR - 2019-01-09 11:49:16 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:49:16 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:49:16 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:49:16 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:49:16 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 326
+ERROR - 2019-01-09 11:49:17 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:49:17 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:49:17 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 327
+ERROR - 2019-01-09 11:49:17 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:49:17 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 327
+ERROR - 2019-01-09 11:49:17 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:49:17 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:49:17 --> Severity: Notice --> Undefined variable: record C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 356
+ERROR - 2019-01-09 11:49:17 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:49:17 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:49:17 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 356
+ERROR - 2019-01-09 11:49:17 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:49:17 --> Severity: Notice --> Undefined property: stdClass::$amountreceived C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 315
+ERROR - 2019-01-09 11:49:17 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:49:17 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:49:17 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:49:17 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:49:17 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 324
+ERROR - 2019-01-09 11:49:17 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 324
+ERROR - 2019-01-09 11:49:17 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:49:17 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:49:17 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:49:17 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 325
+ERROR - 2019-01-09 11:49:17 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:49:17 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 325
+ERROR - 2019-01-09 11:49:17 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:49:17 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:49:17 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 326
+ERROR - 2019-01-09 11:49:17 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:49:17 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:49:18 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:49:18 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 326
+ERROR - 2019-01-09 11:49:18 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:49:18 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:49:18 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:49:18 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 327
+ERROR - 2019-01-09 11:49:18 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:49:18 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:49:18 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 327
+ERROR - 2019-01-09 11:49:18 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:49:18 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:49:18 --> Severity: Notice --> Undefined variable: record C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 356
+ERROR - 2019-01-09 11:49:18 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:49:18 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 356
+ERROR - 2019-01-09 11:49:18 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:49:18 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:49:18 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:49:18 --> Severity: Notice --> Undefined property: stdClass::$amountreceived C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 315
+ERROR - 2019-01-09 11:49:18 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:49:18 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 324
+ERROR - 2019-01-09 11:49:18 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:49:18 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:49:18 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 324
+ERROR - 2019-01-09 11:49:18 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:49:19 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 325
+ERROR - 2019-01-09 11:49:19 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:49:19 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:49:19 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:49:19 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:49:19 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:49:19 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 325
+ERROR - 2019-01-09 11:49:19 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:49:19 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:49:19 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:49:19 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 326
+ERROR - 2019-01-09 11:49:19 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 326
+ERROR - 2019-01-09 11:49:19 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:49:19 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:49:19 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:49:19 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:49:19 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 327
+ERROR - 2019-01-09 11:49:19 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:49:19 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 327
+ERROR - 2019-01-09 11:49:19 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:49:19 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:49:19 --> Severity: Notice --> Undefined variable: record C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 356
+ERROR - 2019-01-09 11:49:19 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:49:19 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:49:19 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 356
+ERROR - 2019-01-09 11:49:19 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:49:20 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:49:20 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:49:20 --> Severity: Notice --> Undefined property: stdClass::$amountreceived C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 315
+ERROR - 2019-01-09 11:49:20 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:49:20 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:49:20 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 324
+ERROR - 2019-01-09 11:49:20 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:49:20 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:49:20 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 324
+ERROR - 2019-01-09 11:49:20 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 325
+ERROR - 2019-01-09 11:49:20 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:49:20 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:49:20 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:49:20 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:49:20 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 325
+ERROR - 2019-01-09 11:49:20 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:49:20 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:49:20 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 326
+ERROR - 2019-01-09 11:49:20 --> Severity: Notice --> Undefined variable: openingbalance C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 6
+ERROR - 2019-01-09 11:49:20 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 326
+ERROR - 2019-01-09 11:49:20 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:49:20 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:49:20 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 327
+ERROR - 2019-01-09 11:49:21 --> Severity: Warning --> Invalid argument supplied for foreach() C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 6
+ERROR - 2019-01-09 11:49:21 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:49:21 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 327
+ERROR - 2019-01-09 11:49:21 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:49:21 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:49:21 --> Severity: Notice --> Undefined variable: financialyear C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 10
+ERROR - 2019-01-09 11:49:21 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:49:21 --> Severity: Notice --> Undefined variable: record C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 356
+ERROR - 2019-01-09 11:49:21 --> Severity: Warning --> Invalid argument supplied for foreach() C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 10
+ERROR - 2019-01-09 11:49:21 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 356
+ERROR - 2019-01-09 11:49:21 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:49:21 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:49:21 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:49:21 --> Severity: Notice --> Undefined variable: customerledger C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 138
+ERROR - 2019-01-09 11:49:21 --> Severity: Notice --> Undefined property: stdClass::$amountreceived C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 315
+ERROR - 2019-01-09 11:49:21 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:49:21 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:49:21 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 324
+ERROR - 2019-01-09 11:49:21 --> Severity: Warning --> Invalid argument supplied for foreach() C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 138
+ERROR - 2019-01-09 11:49:21 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:49:21 --> Severity: Notice --> Undefined variable: clientname C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 143
+ERROR - 2019-01-09 11:49:21 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:49:21 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:49:21 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 324
+ERROR - 2019-01-09 11:49:21 --> Severity: Notice --> Undefined variable: tot_amount C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 144
+ERROR - 2019-01-09 11:49:21 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:49:21 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:49:21 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 325
+ERROR - 2019-01-09 11:49:21 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 325
+ERROR - 2019-01-09 11:49:21 --> Severity: Notice --> Undefined variable: supplierid C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 148
+ERROR - 2019-01-09 11:49:21 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:49:21 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:49:21 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:49:21 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 326
+ERROR - 2019-01-09 11:49:21 --> Severity: Notice --> Undefined variable: suppliername C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 149
+ERROR - 2019-01-09 11:49:21 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:49:22 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 326
+ERROR - 2019-01-09 11:49:22 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:49:22 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:49:22 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 327
+ERROR - 2019-01-09 11:49:22 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 327
+ERROR - 2019-01-09 11:49:22 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:49:22 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:49:22 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:49:22 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:49:22 --> Severity: Notice --> Undefined variable: record C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 356
+ERROR - 2019-01-09 11:49:23 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:49:23 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 356
+ERROR - 2019-01-09 11:49:23 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:49:23 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:49:23 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:49:23 --> Severity: Notice --> Undefined property: stdClass::$amountreceived C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 315
+ERROR - 2019-01-09 11:49:23 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:49:23 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 324
+ERROR - 2019-01-09 11:49:23 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:49:23 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 324
+ERROR - 2019-01-09 11:49:23 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:49:23 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:49:23 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:49:23 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 325
+ERROR - 2019-01-09 11:49:23 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:49:24 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:49:24 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:49:24 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:49:24 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:49:24 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 325
+ERROR - 2019-01-09 11:49:24 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 326
+ERROR - 2019-01-09 11:49:24 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:49:24 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:49:24 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:49:24 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 326
+ERROR - 2019-01-09 11:49:24 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:49:24 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:49:24 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:49:24 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 327
+ERROR - 2019-01-09 11:49:25 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:49:25 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 327
+ERROR - 2019-01-09 11:49:25 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:49:25 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:49:25 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:49:25 --> Severity: Notice --> Undefined variable: record C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 356
+ERROR - 2019-01-09 11:49:25 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:49:25 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:49:25 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 356
+ERROR - 2019-01-09 11:49:25 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:49:25 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:49:25 --> Severity: Notice --> Undefined property: stdClass::$amountreceived C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 315
+ERROR - 2019-01-09 11:49:25 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 324
+ERROR - 2019-01-09 11:49:25 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:49:26 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 324
+ERROR - 2019-01-09 11:49:26 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:49:26 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:49:26 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:49:26 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 325
+ERROR - 2019-01-09 11:49:26 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:49:26 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:49:26 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:49:26 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:49:26 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 325
+ERROR - 2019-01-09 11:49:26 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:49:26 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 326
+ERROR - 2019-01-09 11:49:26 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:49:26 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 326
+ERROR - 2019-01-09 11:49:26 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:49:26 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:49:26 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:49:26 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:49:26 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 327
+ERROR - 2019-01-09 11:49:26 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:49:26 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 327
+ERROR - 2019-01-09 11:49:26 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:49:26 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:49:26 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:49:26 --> Severity: Notice --> Undefined variable: record C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 356
+ERROR - 2019-01-09 11:49:26 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:49:26 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:49:27 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:49:27 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:49:27 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:49:27 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:49:27 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:49:27 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:49:27 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:49:27 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:49:27 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:49:27 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:49:27 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:49:27 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:49:27 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:49:27 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:49:27 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:49:27 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:49:27 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:49:27 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:49:27 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:49:28 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:49:28 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:49:28 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:49:28 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:49:28 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:49:28 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:49:28 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:49:28 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:49:28 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:49:28 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:49:28 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:49:28 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:49:28 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:49:28 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:49:28 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:49:28 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:49:28 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:49:28 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:49:28 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:49:28 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:49:29 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:49:29 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:49:29 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:49:29 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:49:29 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:49:29 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:49:29 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:49:29 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:49:29 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:49:29 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:49:29 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:49:29 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:49:29 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:49:29 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:49:29 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:49:29 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:49:29 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:49:29 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:49:30 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:49:30 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:49:30 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:49:30 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:49:30 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:49:30 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:49:30 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:49:30 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:49:30 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:49:30 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:49:30 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:49:30 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:49:30 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:49:30 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:49:30 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:49:30 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:49:30 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:49:30 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:49:30 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:49:30 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:49:31 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:49:31 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:49:31 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:49:31 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:49:31 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:49:31 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:49:31 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:49:31 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:49:31 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:49:31 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:49:31 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:49:31 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:49:31 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:49:31 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:49:31 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:49:31 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:49:31 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:49:31 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:49:31 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:49:31 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:49:32 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:49:32 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:49:32 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:49:32 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:49:32 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:49:32 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:49:32 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:49:32 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:49:32 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:49:32 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:49:32 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:49:32 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:49:32 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:49:32 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:49:33 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:49:33 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:49:33 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:49:33 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:49:33 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:49:33 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:49:33 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:49:33 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:49:33 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:49:33 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:49:33 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:49:33 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:49:33 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:49:33 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:49:33 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:49:33 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:49:34 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:49:34 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:49:34 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:49:34 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:49:34 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:49:34 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:49:34 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:49:34 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:49:34 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:49:34 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:49:34 --> Severity: Notice --> Undefined variable: suppliername C:\xampp\htdocs\ria\application\controllers\cashbook.php 1910
+ERROR - 2019-01-09 11:49:34 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:49:34 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:49:35 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:49:35 --> Severity: Notice --> Undefined variable: Customer C:\xampp\htdocs\ria\application\controllers\cashbook.php 1916
+ERROR - 2019-01-09 11:49:35 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:49:35 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:49:35 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:49:35 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:49:35 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:49:35 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:49:35 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:49:35 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:49:35 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:49:35 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:49:35 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:49:35 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:49:35 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:49:35 --> Severity: Notice --> Undefined variable: financialyear C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 10
+ERROR - 2019-01-09 11:49:35 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:49:35 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:49:36 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:49:36 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:49:36 --> Severity: Warning --> Invalid argument supplied for foreach() C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 10
+ERROR - 2019-01-09 11:49:36 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:49:36 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:49:36 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:49:36 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:49:36 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:49:36 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:49:36 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:49:36 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:49:36 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:49:36 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:49:36 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:49:36 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:49:36 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:49:36 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:49:36 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:49:36 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:49:36 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:49:36 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:49:36 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:49:36 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:49:36 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:49:36 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:49:36 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:49:36 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:49:37 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:49:37 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:49:37 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:49:37 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:49:37 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:49:37 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:49:37 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:49:37 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:49:37 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:49:37 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:49:37 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:49:37 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:49:37 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:49:37 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:49:37 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:49:37 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:49:37 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:49:37 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:49:37 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:49:37 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:49:37 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:49:37 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:49:37 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:49:37 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:49:38 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:49:38 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:49:38 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:49:38 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:49:38 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:49:38 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:49:38 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:49:38 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:49:38 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:49:38 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:49:38 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:49:38 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:49:38 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:49:38 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:49:38 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:49:38 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:49:38 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:49:38 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:49:38 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:49:38 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:49:38 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:49:38 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:49:38 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:49:38 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:49:38 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:49:38 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:49:38 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:49:39 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:49:39 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:49:39 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:49:39 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:49:39 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:49:39 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:49:39 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:49:39 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:49:39 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:49:39 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:49:39 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:49:39 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:49:39 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:49:39 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:49:39 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:49:39 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:49:39 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:49:39 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:49:39 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:49:39 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:49:39 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:49:39 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:49:39 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:49:39 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:49:40 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:49:40 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:49:40 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:49:40 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:49:40 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:49:40 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:49:40 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:49:40 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:49:40 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:49:40 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:49:40 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:49:40 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:49:40 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:49:40 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:49:40 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:49:40 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:49:40 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:49:40 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:49:40 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:49:40 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:49:40 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:49:40 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:49:40 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:49:40 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:49:41 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:49:41 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:49:41 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:49:41 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:49:41 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:49:41 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:49:41 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:49:41 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:49:41 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:49:41 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:49:41 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:49:41 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:49:41 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:49:41 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:49:41 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:49:41 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:49:41 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:49:41 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:49:41 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:49:41 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:49:41 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:49:41 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:49:41 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:49:41 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:49:41 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:49:41 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:49:41 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:49:42 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:49:42 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:49:42 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:49:42 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:49:42 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:49:42 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:49:42 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:49:42 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:49:42 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:49:42 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:49:42 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:49:42 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:49:42 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:49:42 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:49:42 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:49:42 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:49:42 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:49:42 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:49:42 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:49:42 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:49:42 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:49:42 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:49:42 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:49:42 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:49:42 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:49:42 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:49:43 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:49:43 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:49:43 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:49:43 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:49:43 --> Severity: Notice --> Undefined variable: tot_amount C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 144
+ERROR - 2019-01-09 11:49:43 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:49:43 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:49:43 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:49:43 --> Severity: Notice --> Undefined property: stdClass::$amountreceived C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 315
+ERROR - 2019-01-09 11:49:43 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:49:43 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:49:43 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 324
+ERROR - 2019-01-09 11:49:43 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:49:43 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 324
+ERROR - 2019-01-09 11:49:43 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:49:43 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 325
+ERROR - 2019-01-09 11:49:43 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:49:43 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:49:43 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:49:43 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 325
+ERROR - 2019-01-09 11:49:43 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:49:43 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 326
+ERROR - 2019-01-09 11:49:43 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:49:43 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:49:44 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:49:44 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 326
+ERROR - 2019-01-09 11:49:44 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:49:44 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 327
+ERROR - 2019-01-09 11:49:44 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:49:44 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:49:44 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:49:44 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:49:44 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 327
+ERROR - 2019-01-09 11:49:44 --> Severity: Notice --> Undefined variable: tot_balance C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 353
+ERROR - 2019-01-09 11:49:44 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:49:44 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:49:44 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:49:44 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:49:44 --> Severity: Notice --> Undefined variable: record C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 356
+ERROR - 2019-01-09 11:49:44 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 356
+ERROR - 2019-01-09 11:49:44 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:49:44 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:49:44 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:49:44 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:49:44 --> Severity: Notice --> Undefined property: stdClass::$amountreceived C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 315
+ERROR - 2019-01-09 11:49:44 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 324
+ERROR - 2019-01-09 11:49:44 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:49:44 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:49:44 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:49:44 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:49:44 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 324
+ERROR - 2019-01-09 11:49:45 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:49:45 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:49:45 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 325
+ERROR - 2019-01-09 11:49:45 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 325
+ERROR - 2019-01-09 11:49:45 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:49:45 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:49:45 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:49:45 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:49:45 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 326
+ERROR - 2019-01-09 11:49:45 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:49:45 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 326
+ERROR - 2019-01-09 11:49:45 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:49:45 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 327
+ERROR - 2019-01-09 11:49:45 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:49:45 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:49:45 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:49:45 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 327
+ERROR - 2019-01-09 11:49:45 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:49:45 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:49:45 --> Severity: Notice --> Undefined variable: record C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 356
+ERROR - 2019-01-09 11:49:45 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:49:46 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:49:46 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:49:46 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 356
+ERROR - 2019-01-09 11:49:46 --> Severity: Notice --> Undefined property: stdClass::$amountreceived C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 315
+ERROR - 2019-01-09 11:49:46 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:49:46 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:49:46 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 324
+ERROR - 2019-01-09 11:49:46 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:49:46 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:49:46 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 324
+ERROR - 2019-01-09 11:49:46 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:49:46 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:49:46 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:49:46 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:49:46 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 325
+ERROR - 2019-01-09 11:49:46 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:49:46 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 325
+ERROR - 2019-01-09 11:49:46 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:49:47 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 326
+ERROR - 2019-01-09 11:49:47 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:49:47 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:49:47 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:49:47 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 326
+ERROR - 2019-01-09 11:49:47 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:49:47 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 327
+ERROR - 2019-01-09 11:49:47 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:49:47 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:49:47 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 327
+ERROR - 2019-01-09 11:49:47 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:49:47 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:49:47 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:49:47 --> Severity: Notice --> Undefined variable: record C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 356
+ERROR - 2019-01-09 11:49:47 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:49:47 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:49:47 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 356
+ERROR - 2019-01-09 11:49:47 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:49:47 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:49:47 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:49:47 --> Severity: Notice --> Undefined property: stdClass::$amountreceived C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 315
+ERROR - 2019-01-09 11:49:47 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 324
+ERROR - 2019-01-09 11:49:47 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:49:47 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:49:48 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:49:48 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 324
+ERROR - 2019-01-09 11:49:48 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:49:48 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 325
+ERROR - 2019-01-09 11:49:48 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:49:48 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:49:48 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:49:48 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 325
+ERROR - 2019-01-09 11:49:48 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:49:48 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 326
+ERROR - 2019-01-09 11:49:48 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:49:48 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:49:48 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 326
+ERROR - 2019-01-09 11:49:48 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:49:48 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:49:48 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 327
+ERROR - 2019-01-09 11:49:48 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:49:48 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:49:48 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:49:48 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:49:49 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 327
+ERROR - 2019-01-09 11:49:49 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:49:49 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:49:49 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:49:49 --> Severity: Notice --> Undefined variable: record C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 356
+ERROR - 2019-01-09 11:49:49 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 356
+ERROR - 2019-01-09 11:49:49 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:49:49 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:49:49 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:49:49 --> Severity: Notice --> Undefined property: stdClass::$amountreceived C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 315
+ERROR - 2019-01-09 11:49:49 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:49:49 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:49:49 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 324
+ERROR - 2019-01-09 11:49:49 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 324
+ERROR - 2019-01-09 11:49:49 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:49:50 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:49:50 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:49:50 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 325
+ERROR - 2019-01-09 11:49:50 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:49:50 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:49:50 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 325
+ERROR - 2019-01-09 11:49:50 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:49:50 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:49:50 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:49:50 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:49:50 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 326
+ERROR - 2019-01-09 11:49:50 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 326
+ERROR - 2019-01-09 11:49:50 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:49:50 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:49:50 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:49:50 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 327
+ERROR - 2019-01-09 11:49:50 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:49:50 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:49:50 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 327
+ERROR - 2019-01-09 11:49:51 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:49:51 --> Severity: Notice --> Undefined variable: record C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 356
+ERROR - 2019-01-09 11:49:51 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:49:51 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:49:51 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 356
+ERROR - 2019-01-09 11:49:51 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:49:51 --> Severity: Notice --> Undefined property: stdClass::$amountreceived C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 315
+ERROR - 2019-01-09 11:49:51 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:49:51 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:49:51 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:49:51 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:49:51 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 324
+ERROR - 2019-01-09 11:49:51 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 324
+ERROR - 2019-01-09 11:49:51 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:49:51 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:49:51 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 325
+ERROR - 2019-01-09 11:49:51 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:49:51 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:49:51 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 325
+ERROR - 2019-01-09 11:49:51 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:49:51 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:49:52 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:49:52 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:49:52 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 326
+ERROR - 2019-01-09 11:49:52 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 326
+ERROR - 2019-01-09 11:49:52 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:49:52 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:49:52 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 327
+ERROR - 2019-01-09 11:49:52 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:49:52 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:49:52 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:49:52 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:49:52 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 327
+ERROR - 2019-01-09 11:49:52 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:49:52 --> Severity: Notice --> Undefined variable: record C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 356
+ERROR - 2019-01-09 11:49:52 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:49:52 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 356
+ERROR - 2019-01-09 11:49:52 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:49:52 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:49:52 --> Severity: Notice --> Undefined property: stdClass::$amountreceived C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 315
+ERROR - 2019-01-09 11:49:52 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:49:52 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:49:52 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 324
+ERROR - 2019-01-09 11:49:53 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:49:53 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 324
+ERROR - 2019-01-09 11:49:53 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:49:53 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:49:53 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:49:53 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 325
+ERROR - 2019-01-09 11:49:53 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 325
+ERROR - 2019-01-09 11:49:53 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:49:53 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:49:53 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:49:53 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:49:53 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 326
+ERROR - 2019-01-09 11:49:53 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:49:53 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 326
+ERROR - 2019-01-09 11:49:53 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:49:53 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:49:53 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:49:53 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 327
+ERROR - 2019-01-09 11:49:53 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:49:54 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:49:54 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 327
+ERROR - 2019-01-09 11:49:54 --> Severity: Notice --> Undefined variable: record C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 356
+ERROR - 2019-01-09 11:49:54 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:49:54 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:49:54 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:49:54 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 356
+ERROR - 2019-01-09 11:49:54 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:49:54 --> Severity: Notice --> Undefined property: stdClass::$amountreceived C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 315
+ERROR - 2019-01-09 11:49:54 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:49:54 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:49:54 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 324
+ERROR - 2019-01-09 11:49:54 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:49:54 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:49:54 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 324
+ERROR - 2019-01-09 11:49:55 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:49:55 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 325
+ERROR - 2019-01-09 11:49:55 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:49:55 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:49:55 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:49:55 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 325
+ERROR - 2019-01-09 11:49:55 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:49:56 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:49:56 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 326
+ERROR - 2019-01-09 11:49:56 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:49:56 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:49:56 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 326
+ERROR - 2019-01-09 11:49:56 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:49:56 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:49:56 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 327
+ERROR - 2019-01-09 11:49:56 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 327
+ERROR - 2019-01-09 11:49:56 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:49:56 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:49:57 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:49:57 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:49:57 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:49:57 --> Severity: Notice --> Undefined variable: record C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 356
+ERROR - 2019-01-09 11:49:57 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:49:57 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 356
+ERROR - 2019-01-09 11:49:57 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:49:57 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:49:57 --> Severity: Notice --> Undefined property: stdClass::$amountreceived C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 315
+ERROR - 2019-01-09 11:49:57 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:49:57 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:49:57 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 324
+ERROR - 2019-01-09 11:49:57 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:49:58 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 324
+ERROR - 2019-01-09 11:49:58 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:49:58 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:49:58 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:49:58 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 325
+ERROR - 2019-01-09 11:49:58 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:49:58 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 325
+ERROR - 2019-01-09 11:49:58 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:49:58 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 326
+ERROR - 2019-01-09 11:49:58 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:49:58 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:49:58 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:49:58 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 326
+ERROR - 2019-01-09 11:49:58 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:49:59 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:49:59 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 327
+ERROR - 2019-01-09 11:49:59 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:49:59 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:49:59 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 327
+ERROR - 2019-01-09 11:49:59 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:49:59 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:49:59 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:49:59 --> Severity: Notice --> Undefined variable: record C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 356
+ERROR - 2019-01-09 11:49:59 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:49:59 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:49:59 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:49:59 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 356
+ERROR - 2019-01-09 11:49:59 --> Severity: Notice --> Undefined property: stdClass::$amountreceived C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 315
+ERROR - 2019-01-09 11:49:59 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:49:59 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:49:59 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:49:59 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 324
+ERROR - 2019-01-09 11:49:59 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:50:00 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:50:00 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:50:00 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:50:00 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 324
+ERROR - 2019-01-09 11:50:00 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:50:00 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:50:00 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:50:00 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 325
+ERROR - 2019-01-09 11:50:00 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:50:00 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:50:00 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:50:00 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 325
+ERROR - 2019-01-09 11:50:00 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:50:00 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:50:00 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 326
+ERROR - 2019-01-09 11:50:00 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:50:00 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:50:00 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 326
+ERROR - 2019-01-09 11:50:00 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:50:00 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:50:00 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:50:00 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 327
+ERROR - 2019-01-09 11:50:01 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:50:01 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 327
+ERROR - 2019-01-09 11:50:01 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:50:01 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:50:01 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:50:01 --> Severity: Notice --> Undefined variable: record C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 356
+ERROR - 2019-01-09 11:50:01 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:50:01 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 356
+ERROR - 2019-01-09 11:50:01 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:50:01 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:50:01 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:50:01 --> Severity: Notice --> Undefined property: stdClass::$amountreceived C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 315
+ERROR - 2019-01-09 11:50:01 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:50:01 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:50:01 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 324
+ERROR - 2019-01-09 11:50:01 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:50:01 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:50:01 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:50:01 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 324
+ERROR - 2019-01-09 11:50:01 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 325
+ERROR - 2019-01-09 11:50:01 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:50:01 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:50:02 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:50:02 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 325
+ERROR - 2019-01-09 11:50:02 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:50:02 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:50:02 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:50:02 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 326
+ERROR - 2019-01-09 11:50:02 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:50:02 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 326
+ERROR - 2019-01-09 11:50:02 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:50:02 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:50:02 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:50:02 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 327
+ERROR - 2019-01-09 11:50:02 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 327
+ERROR - 2019-01-09 11:50:02 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:50:02 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:50:02 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:50:02 --> Severity: Notice --> Undefined variable: record C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 356
+ERROR - 2019-01-09 11:50:02 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:50:02 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 356
+ERROR - 2019-01-09 11:50:02 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:50:02 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:50:03 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:50:03 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:50:03 --> Severity: Notice --> Undefined property: stdClass::$amountreceived C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 315
+ERROR - 2019-01-09 11:50:03 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 324
+ERROR - 2019-01-09 11:50:03 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:50:03 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:50:03 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 324
+ERROR - 2019-01-09 11:50:03 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:50:03 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:50:03 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:50:03 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:50:03 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 325
+ERROR - 2019-01-09 11:50:03 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 325
+ERROR - 2019-01-09 11:50:03 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:50:03 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:50:03 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 326
+ERROR - 2019-01-09 11:50:03 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:50:03 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:50:03 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:50:03 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:50:03 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 326
+ERROR - 2019-01-09 11:50:03 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:50:03 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 327
+ERROR - 2019-01-09 11:50:03 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:50:03 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:50:03 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 327
+ERROR - 2019-01-09 11:50:03 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:50:04 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:50:04 --> Severity: Notice --> Undefined variable: record C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 356
+ERROR - 2019-01-09 11:50:04 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:50:04 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 356
+ERROR - 2019-01-09 11:50:04 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:50:04 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:50:04 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:50:04 --> Severity: Notice --> Undefined property: stdClass::$amountreceived C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 315
+ERROR - 2019-01-09 11:50:04 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:50:04 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:50:04 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 324
+ERROR - 2019-01-09 11:50:04 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:50:04 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 324
+ERROR - 2019-01-09 11:50:04 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:50:04 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:50:04 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 325
+ERROR - 2019-01-09 11:50:04 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:50:04 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:50:04 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:50:04 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 325
+ERROR - 2019-01-09 11:50:04 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:50:04 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:50:04 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:50:04 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 326
+ERROR - 2019-01-09 11:50:05 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:50:05 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:50:05 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 326
+ERROR - 2019-01-09 11:50:05 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:50:05 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:50:05 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 327
+ERROR - 2019-01-09 11:50:05 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:50:05 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 327
+ERROR - 2019-01-09 11:50:05 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:50:05 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:50:05 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:50:05 --> Severity: Notice --> Undefined variable: record C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 356
+ERROR - 2019-01-09 11:50:05 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 356
+ERROR - 2019-01-09 11:50:05 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:50:05 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:50:05 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:50:05 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:50:05 --> Severity: Notice --> Undefined property: stdClass::$amountreceived C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 315
+ERROR - 2019-01-09 11:50:05 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 324
+ERROR - 2019-01-09 11:50:05 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:50:05 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:50:05 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 324
+ERROR - 2019-01-09 11:50:05 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:50:05 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:50:05 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:50:05 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:50:05 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 325
+ERROR - 2019-01-09 11:50:06 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 325
+ERROR - 2019-01-09 11:50:06 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:50:06 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:50:06 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:50:06 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 326
+ERROR - 2019-01-09 11:50:06 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:50:06 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:50:06 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 326
+ERROR - 2019-01-09 11:50:06 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:50:06 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 327
+ERROR - 2019-01-09 11:50:06 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:50:06 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:50:06 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:50:06 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 327
+ERROR - 2019-01-09 11:50:06 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:50:06 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:50:06 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:50:06 --> Severity: Notice --> Undefined variable: record C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 356
+ERROR - 2019-01-09 11:50:06 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 356
+ERROR - 2019-01-09 11:50:06 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:50:06 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:50:06 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:50:06 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:50:06 --> Severity: Notice --> Undefined property: stdClass::$amountreceived C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 315
+ERROR - 2019-01-09 11:50:07 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:50:07 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:50:07 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 324
+ERROR - 2019-01-09 11:50:07 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:50:07 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:50:07 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 324
+ERROR - 2019-01-09 11:50:07 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:50:07 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 325
+ERROR - 2019-01-09 11:50:07 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:50:07 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:50:07 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:50:07 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 325
+ERROR - 2019-01-09 11:50:07 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:50:07 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:50:07 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 326
+ERROR - 2019-01-09 11:50:07 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 326
+ERROR - 2019-01-09 11:50:07 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:50:07 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:50:07 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:50:07 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 327
+ERROR - 2019-01-09 11:50:07 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:50:07 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:50:07 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 327
+ERROR - 2019-01-09 11:50:07 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:50:08 --> Severity: Notice --> Undefined variable: record C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 356
+ERROR - 2019-01-09 11:50:08 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:50:08 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:50:08 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:50:08 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:50:08 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 356
+ERROR - 2019-01-09 11:50:08 --> Severity: Notice --> Undefined property: stdClass::$amountreceived C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 315
+ERROR - 2019-01-09 11:50:08 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:50:08 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:50:08 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 324
+ERROR - 2019-01-09 11:50:08 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:50:08 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:50:08 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 324
+ERROR - 2019-01-09 11:50:08 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:50:08 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 325
+ERROR - 2019-01-09 11:50:08 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:50:08 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:50:08 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 325
+ERROR - 2019-01-09 11:50:08 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:50:08 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:50:08 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 326
+ERROR - 2019-01-09 11:50:08 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:50:08 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:50:09 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:50:09 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:50:09 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:50:09 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 326
+ERROR - 2019-01-09 11:50:09 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:50:09 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 327
+ERROR - 2019-01-09 11:50:09 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:50:09 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:50:09 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:50:09 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 327
+ERROR - 2019-01-09 11:50:09 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:50:09 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:50:09 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:50:09 --> Severity: Notice --> Undefined variable: record C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 356
+ERROR - 2019-01-09 11:50:09 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 356
+ERROR - 2019-01-09 11:50:09 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:50:09 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:50:09 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:50:09 --> Severity: Notice --> Undefined property: stdClass::$amountreceived C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 315
+ERROR - 2019-01-09 11:50:09 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:50:09 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:50:09 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 324
+ERROR - 2019-01-09 11:50:09 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:50:09 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:50:09 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 324
+ERROR - 2019-01-09 11:50:09 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:50:10 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 325
+ERROR - 2019-01-09 11:50:10 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:50:10 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:50:10 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:50:10 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:50:10 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 325
+ERROR - 2019-01-09 11:50:10 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:50:10 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:50:10 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 326
+ERROR - 2019-01-09 11:50:10 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:50:10 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:50:10 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 326
+ERROR - 2019-01-09 11:50:10 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 327
+ERROR - 2019-01-09 11:50:10 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:50:10 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:50:10 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 327
+ERROR - 2019-01-09 11:50:10 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:50:10 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:50:10 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:50:10 --> Severity: Notice --> Undefined variable: record C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 356
+ERROR - 2019-01-09 11:50:10 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:50:10 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 356
+ERROR - 2019-01-09 11:50:10 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:50:10 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:50:11 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:50:11 --> Severity: Notice --> Undefined property: stdClass::$amountreceived C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 315
+ERROR - 2019-01-09 11:50:11 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:50:11 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:50:11 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 324
+ERROR - 2019-01-09 11:50:11 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:50:11 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:50:11 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 324
+ERROR - 2019-01-09 11:50:11 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:50:11 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:50:11 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:50:11 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 325
+ERROR - 2019-01-09 11:50:11 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:50:11 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:50:11 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 325
+ERROR - 2019-01-09 11:50:11 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:50:11 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:50:11 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 326
+ERROR - 2019-01-09 11:50:11 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:50:11 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 326
+ERROR - 2019-01-09 11:50:11 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:50:11 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:50:11 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 327
+ERROR - 2019-01-09 11:50:11 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:50:11 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:50:11 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 327
+ERROR - 2019-01-09 11:50:11 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:50:12 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:50:12 --> Severity: Notice --> Undefined variable: record C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 356
+ERROR - 2019-01-09 11:50:12 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:50:12 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 356
+ERROR - 2019-01-09 11:50:12 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:50:12 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:50:12 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:50:12 --> Severity: Notice --> Undefined property: stdClass::$amountreceived C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 315
+ERROR - 2019-01-09 11:50:12 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:50:12 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:50:12 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:50:12 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 324
+ERROR - 2019-01-09 11:50:12 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:50:12 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 324
+ERROR - 2019-01-09 11:50:12 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:50:12 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 325
+ERROR - 2019-01-09 11:50:12 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:50:12 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:50:12 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:50:12 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:50:12 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 325
+ERROR - 2019-01-09 11:50:12 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:50:12 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 326
+ERROR - 2019-01-09 11:50:12 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:50:13 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:50:13 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:50:13 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 326
+ERROR - 2019-01-09 11:50:13 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 327
+ERROR - 2019-01-09 11:50:13 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:50:13 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:50:13 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:50:13 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 327
+ERROR - 2019-01-09 11:50:13 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:50:13 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:50:13 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:50:13 --> Severity: Notice --> Undefined variable: record C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 356
+ERROR - 2019-01-09 11:50:13 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:50:13 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:50:13 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 356
+ERROR - 2019-01-09 11:50:13 --> Severity: Notice --> Undefined property: stdClass::$amountreceived C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 315
+ERROR - 2019-01-09 11:50:13 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:50:13 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:50:13 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:50:13 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 324
+ERROR - 2019-01-09 11:50:13 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:50:13 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 324
+ERROR - 2019-01-09 11:50:13 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:50:13 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:50:14 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:50:14 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 325
+ERROR - 2019-01-09 11:50:14 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:50:14 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 325
+ERROR - 2019-01-09 11:50:14 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:50:14 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:50:14 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 326
+ERROR - 2019-01-09 11:50:14 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:50:14 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:50:14 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:50:14 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 326
+ERROR - 2019-01-09 11:50:14 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:50:14 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 327
+ERROR - 2019-01-09 11:50:14 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:50:14 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:50:14 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:50:14 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 327
+ERROR - 2019-01-09 11:50:14 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:50:14 --> Severity: Notice --> Undefined variable: record C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 356
+ERROR - 2019-01-09 11:50:14 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:50:14 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:50:14 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 356
+ERROR - 2019-01-09 11:50:14 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:50:14 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:50:14 --> Severity: Notice --> Undefined property: stdClass::$amountreceived C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 315
+ERROR - 2019-01-09 11:50:14 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:50:14 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:50:15 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 324
+ERROR - 2019-01-09 11:50:15 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:50:15 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:50:15 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 324
+ERROR - 2019-01-09 11:50:15 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:50:15 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:50:15 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:50:15 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:50:15 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 325
+ERROR - 2019-01-09 11:50:15 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:50:15 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 325
+ERROR - 2019-01-09 11:50:15 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:50:15 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 326
+ERROR - 2019-01-09 11:50:15 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:50:15 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:50:15 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 326
+ERROR - 2019-01-09 11:50:15 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:50:15 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:50:15 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 327
+ERROR - 2019-01-09 11:50:15 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:50:15 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:50:15 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:50:15 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:50:15 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 327
+ERROR - 2019-01-09 11:50:16 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:50:16 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:50:16 --> Severity: Notice --> Undefined variable: record C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 356
+ERROR - 2019-01-09 11:50:16 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:50:16 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 356
+ERROR - 2019-01-09 11:50:16 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:50:16 --> Severity: Notice --> Undefined property: stdClass::$amountreceived C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 315
+ERROR - 2019-01-09 11:50:16 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:50:16 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:50:16 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:50:16 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:50:16 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 324
+ERROR - 2019-01-09 11:50:16 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:50:16 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:50:16 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 324
+ERROR - 2019-01-09 11:50:16 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 325
+ERROR - 2019-01-09 11:50:16 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:50:16 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:50:16 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:50:16 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:50:16 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 325
+ERROR - 2019-01-09 11:50:16 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:50:16 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:50:16 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 326
+ERROR - 2019-01-09 11:50:17 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 326
+ERROR - 2019-01-09 11:50:17 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:50:17 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:50:17 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 327
+ERROR - 2019-01-09 11:50:17 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:50:17 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:50:17 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:50:17 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 327
+ERROR - 2019-01-09 11:50:17 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:50:17 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:50:17 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:50:17 --> Severity: Notice --> Undefined variable: record C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 356
+ERROR - 2019-01-09 11:50:17 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:50:17 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:50:17 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 356
+ERROR - 2019-01-09 11:50:17 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:50:17 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:50:17 --> Severity: Notice --> Undefined property: stdClass::$amountreceived C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 315
+ERROR - 2019-01-09 11:50:17 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 324
+ERROR - 2019-01-09 11:50:17 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:50:17 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:50:17 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:50:17 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:50:17 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 324
+ERROR - 2019-01-09 11:50:17 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:50:17 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 325
+ERROR - 2019-01-09 11:50:17 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:50:18 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:50:18 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 325
+ERROR - 2019-01-09 11:50:18 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:50:18 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 326
+ERROR - 2019-01-09 11:50:18 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:50:18 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:50:18 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:50:18 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:50:18 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 326
+ERROR - 2019-01-09 11:50:18 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:50:18 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:50:18 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 327
+ERROR - 2019-01-09 11:50:18 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:50:18 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 327
+ERROR - 2019-01-09 11:50:18 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:50:18 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:50:18 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:50:18 --> Severity: Notice --> Undefined variable: record C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 356
+ERROR - 2019-01-09 11:50:18 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:50:18 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 356
+ERROR - 2019-01-09 11:50:18 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:50:18 --> Severity: Notice --> Undefined property: stdClass::$amountreceived C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 315
+ERROR - 2019-01-09 11:50:18 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:50:18 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:50:19 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:50:19 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:50:19 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 324
+ERROR - 2019-01-09 11:50:19 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 324
+ERROR - 2019-01-09 11:50:19 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:50:19 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:50:19 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 325
+ERROR - 2019-01-09 11:50:19 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:50:19 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:50:19 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:50:19 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 325
+ERROR - 2019-01-09 11:50:19 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:50:19 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:50:19 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 326
+ERROR - 2019-01-09 11:50:19 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:50:19 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 326
+ERROR - 2019-01-09 11:50:19 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:50:19 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:50:19 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:50:19 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 327
+ERROR - 2019-01-09 11:50:19 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:50:19 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:50:19 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:50:19 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 327
+ERROR - 2019-01-09 11:50:20 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:50:20 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:50:20 --> Severity: Notice --> Undefined variable: record C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 356
+ERROR - 2019-01-09 11:50:20 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 356
+ERROR - 2019-01-09 11:50:20 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:50:20 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:50:20 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:50:20 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:50:20 --> Severity: Notice --> Undefined property: stdClass::$amountreceived C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 315
+ERROR - 2019-01-09 11:50:20 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:50:20 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:50:20 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 324
+ERROR - 2019-01-09 11:50:20 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 324
+ERROR - 2019-01-09 11:50:20 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:50:20 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:50:20 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:50:20 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 325
+ERROR - 2019-01-09 11:50:20 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:50:20 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:50:20 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 325
+ERROR - 2019-01-09 11:50:20 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:50:20 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:50:20 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:50:20 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 326
+ERROR - 2019-01-09 11:50:20 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:50:20 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 326
+ERROR - 2019-01-09 11:50:20 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:50:21 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 327
+ERROR - 2019-01-09 11:50:21 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:50:21 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:50:21 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:50:21 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 327
+ERROR - 2019-01-09 11:50:21 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:50:21 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:50:21 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:50:21 --> Severity: Notice --> Undefined variable: record C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 356
+ERROR - 2019-01-09 11:50:21 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:50:21 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 356
+ERROR - 2019-01-09 11:50:21 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:50:21 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:50:21 --> Severity: Notice --> Undefined property: stdClass::$amountreceived C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 315
+ERROR - 2019-01-09 11:50:21 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:50:21 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:50:21 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 324
+ERROR - 2019-01-09 11:50:21 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:50:21 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 324
+ERROR - 2019-01-09 11:50:21 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:50:21 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:50:21 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:50:21 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:50:21 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 325
+ERROR - 2019-01-09 11:50:22 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:50:22 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:50:22 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 325
+ERROR - 2019-01-09 11:50:22 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:50:22 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 326
+ERROR - 2019-01-09 11:50:22 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:50:22 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:50:22 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 326
+ERROR - 2019-01-09 11:50:22 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:50:22 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 327
+ERROR - 2019-01-09 11:50:22 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:50:22 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:50:22 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:50:22 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 327
+ERROR - 2019-01-09 11:50:22 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:50:22 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:50:22 --> Severity: Notice --> Undefined variable: record C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 356
+ERROR - 2019-01-09 11:50:22 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:50:22 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 356
+ERROR - 2019-01-09 11:50:22 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:50:22 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:50:22 --> Severity: Notice --> Undefined property: stdClass::$amountreceived C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 315
+ERROR - 2019-01-09 11:50:22 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:50:22 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:50:23 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 324
+ERROR - 2019-01-09 11:50:23 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:50:23 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:50:23 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:50:23 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 324
+ERROR - 2019-01-09 11:50:23 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:50:23 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:50:23 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 325
+ERROR - 2019-01-09 11:50:23 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:50:23 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 325
+ERROR - 2019-01-09 11:50:23 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:50:23 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 326
+ERROR - 2019-01-09 11:50:23 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:50:23 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:50:23 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:50:23 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:50:23 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 326
+ERROR - 2019-01-09 11:50:23 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:50:23 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:50:23 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 327
+ERROR - 2019-01-09 11:50:23 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 327
+ERROR - 2019-01-09 11:50:23 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:50:23 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:50:23 --> Severity: Notice --> Undefined variable: record C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 356
+ERROR - 2019-01-09 11:50:23 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:50:23 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:50:24 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:50:24 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 356
+ERROR - 2019-01-09 11:50:24 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:50:24 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:50:24 --> Severity: Notice --> Undefined property: stdClass::$amountreceived C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 315
+ERROR - 2019-01-09 11:50:24 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:50:24 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:50:24 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 324
+ERROR - 2019-01-09 11:50:24 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:50:24 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 324
+ERROR - 2019-01-09 11:50:24 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:50:24 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:50:24 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:50:24 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:50:24 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 325
+ERROR - 2019-01-09 11:50:24 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:50:24 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 325
+ERROR - 2019-01-09 11:50:24 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:50:24 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:50:24 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:50:24 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 326
+ERROR - 2019-01-09 11:50:24 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:50:24 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 326
+ERROR - 2019-01-09 11:50:24 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:50:25 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 327
+ERROR - 2019-01-09 11:50:25 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:50:25 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:50:25 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:50:25 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:50:25 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 327
+ERROR - 2019-01-09 11:50:25 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:50:25 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:50:25 --> Severity: Notice --> Undefined variable: record C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 356
+ERROR - 2019-01-09 11:50:25 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 356
+ERROR - 2019-01-09 11:50:25 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:50:25 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:50:25 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:50:25 --> Severity: Notice --> Undefined property: stdClass::$amountreceived C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 315
+ERROR - 2019-01-09 11:50:25 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:50:25 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 324
+ERROR - 2019-01-09 11:50:25 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:50:25 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:50:25 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:50:25 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 324
+ERROR - 2019-01-09 11:50:25 --> Severity: Notice --> Undefined variable: tot_amount C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 144
+ERROR - 2019-01-09 11:50:25 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 325
+ERROR - 2019-01-09 11:50:25 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:50:26 --> Severity: Notice --> Undefined property: stdClass::$amountreceived C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 315
+ERROR - 2019-01-09 11:50:26 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:50:26 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 325
+ERROR - 2019-01-09 11:50:26 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 324
+ERROR - 2019-01-09 11:50:26 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 326
+ERROR - 2019-01-09 11:50:26 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:50:26 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 326
+ERROR - 2019-01-09 11:50:26 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 324
+ERROR - 2019-01-09 11:50:26 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:50:26 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:50:26 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 325
+ERROR - 2019-01-09 11:50:26 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 327
+ERROR - 2019-01-09 11:50:26 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:50:26 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 327
+ERROR - 2019-01-09 11:50:26 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 325
+ERROR - 2019-01-09 11:50:26 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 326
+ERROR - 2019-01-09 11:50:26 --> Severity: Notice --> Undefined variable: record C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 356
+ERROR - 2019-01-09 11:50:26 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:50:26 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 356
+ERROR - 2019-01-09 11:50:26 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:50:26 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 326
+ERROR - 2019-01-09 11:50:26 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:50:26 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 327
+ERROR - 2019-01-09 11:50:26 --> Severity: Notice --> Undefined property: stdClass::$amountreceived C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 315
+ERROR - 2019-01-09 11:50:27 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 327
+ERROR - 2019-01-09 11:50:27 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 324
+ERROR - 2019-01-09 11:50:27 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:50:27 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:50:27 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 324
+ERROR - 2019-01-09 11:50:27 --> Severity: Notice --> Undefined variable: tot_balance C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 353
+ERROR - 2019-01-09 11:50:27 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:50:27 --> Severity: Notice --> Undefined variable: record C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 356
+ERROR - 2019-01-09 11:50:27 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 325
+ERROR - 2019-01-09 11:50:27 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 356
+ERROR - 2019-01-09 11:50:27 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 325
+ERROR - 2019-01-09 11:50:27 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:50:27 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:50:27 --> Severity: Notice --> Undefined property: stdClass::$amountreceived C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 315
+ERROR - 2019-01-09 11:50:27 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 326
+ERROR - 2019-01-09 11:50:27 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 324
+ERROR - 2019-01-09 11:50:27 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 326
+ERROR - 2019-01-09 11:50:27 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:50:27 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 327
+ERROR - 2019-01-09 11:50:27 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 324
+ERROR - 2019-01-09 11:50:27 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:50:27 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 325
+ERROR - 2019-01-09 11:50:27 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 327
+ERROR - 2019-01-09 11:50:28 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 325
+ERROR - 2019-01-09 11:50:28 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:50:28 --> Severity: Notice --> Undefined variable: record C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 356
+ERROR - 2019-01-09 11:50:28 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:50:28 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 356
+ERROR - 2019-01-09 11:50:28 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 326
+ERROR - 2019-01-09 11:50:28 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:50:28 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 326
+ERROR - 2019-01-09 11:50:28 --> Severity: Notice --> Undefined property: stdClass::$amountreceived C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 315
+ERROR - 2019-01-09 11:50:28 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 324
+ERROR - 2019-01-09 11:50:28 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 327
+ERROR - 2019-01-09 11:50:28 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:50:28 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 324
+ERROR - 2019-01-09 11:50:28 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:50:28 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 327
+ERROR - 2019-01-09 11:50:28 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 325
+ERROR - 2019-01-09 11:50:28 --> Severity: Notice --> Undefined variable: record C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 356
+ERROR - 2019-01-09 11:50:28 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:50:28 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 356
+ERROR - 2019-01-09 11:50:28 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:50:28 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 325
+ERROR - 2019-01-09 11:50:28 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 326
+ERROR - 2019-01-09 11:50:28 --> Severity: Notice --> Undefined property: stdClass::$amountreceived C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 315
+ERROR - 2019-01-09 11:50:28 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:50:29 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 326
+ERROR - 2019-01-09 11:50:29 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:50:29 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 324
+ERROR - 2019-01-09 11:50:29 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 324
+ERROR - 2019-01-09 11:50:29 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 327
+ERROR - 2019-01-09 11:50:29 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:50:29 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:50:29 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 325
+ERROR - 2019-01-09 11:50:29 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 327
+ERROR - 2019-01-09 11:50:29 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 325
+ERROR - 2019-01-09 11:50:29 --> Severity: Notice --> Undefined variable: record C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 356
+ERROR - 2019-01-09 11:50:29 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:50:29 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 356
+ERROR - 2019-01-09 11:50:29 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:50:29 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 326
+ERROR - 2019-01-09 11:50:29 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 326
+ERROR - 2019-01-09 11:50:29 --> Severity: Notice --> Undefined property: stdClass::$amountreceived C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 315
+ERROR - 2019-01-09 11:50:29 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:50:29 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 324
+ERROR - 2019-01-09 11:50:29 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:50:29 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 327
+ERROR - 2019-01-09 11:50:29 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 327
+ERROR - 2019-01-09 11:50:29 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 324
+ERROR - 2019-01-09 11:50:29 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:50:30 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:50:30 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 325
+ERROR - 2019-01-09 11:50:30 --> Severity: Notice --> Undefined variable: record C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 356
+ERROR - 2019-01-09 11:50:30 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 356
+ERROR - 2019-01-09 11:50:30 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 325
+ERROR - 2019-01-09 11:50:30 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:50:30 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 326
+ERROR - 2019-01-09 11:50:30 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:50:30 --> Severity: Notice --> Undefined property: stdClass::$amountreceived C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 315
+ERROR - 2019-01-09 11:50:30 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:50:30 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 326
+ERROR - 2019-01-09 11:50:30 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 324
+ERROR - 2019-01-09 11:50:30 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 327
+ERROR - 2019-01-09 11:50:30 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 324
+ERROR - 2019-01-09 11:50:30 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:50:30 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 327
+ERROR - 2019-01-09 11:50:30 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 325
+ERROR - 2019-01-09 11:50:30 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:50:30 --> Severity: Notice --> Undefined variable: record C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 356
+ERROR - 2019-01-09 11:50:30 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 325
+ERROR - 2019-01-09 11:50:30 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:50:30 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 356
+ERROR - 2019-01-09 11:50:30 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:50:30 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 326
+ERROR - 2019-01-09 11:50:31 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:50:31 --> Severity: Notice --> Undefined property: stdClass::$amountreceived C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 315
+ERROR - 2019-01-09 11:50:31 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 326
+ERROR - 2019-01-09 11:50:31 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 324
+ERROR - 2019-01-09 11:50:31 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 327
+ERROR - 2019-01-09 11:50:31 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:50:31 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 327
+ERROR - 2019-01-09 11:50:31 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 324
+ERROR - 2019-01-09 11:50:31 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:50:31 --> Severity: Notice --> Undefined variable: record C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 356
+ERROR - 2019-01-09 11:50:31 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:50:31 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 325
+ERROR - 2019-01-09 11:50:31 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 356
+ERROR - 2019-01-09 11:50:31 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:50:31 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:50:31 --> Severity: Notice --> Undefined property: stdClass::$amountreceived C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 315
+ERROR - 2019-01-09 11:50:31 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 325
+ERROR - 2019-01-09 11:50:31 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 324
+ERROR - 2019-01-09 11:50:31 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 326
+ERROR - 2019-01-09 11:50:31 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:50:31 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 324
+ERROR - 2019-01-09 11:50:31 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 326
+ERROR - 2019-01-09 11:50:31 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:50:31 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 327
+ERROR - 2019-01-09 11:50:31 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:50:31 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 325
+ERROR - 2019-01-09 11:50:32 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 325
+ERROR - 2019-01-09 11:50:32 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:50:32 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 327
+ERROR - 2019-01-09 11:50:32 --> Severity: Notice --> Undefined variable: record C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 356
+ERROR - 2019-01-09 11:50:32 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 326
+ERROR - 2019-01-09 11:50:32 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:50:32 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 326
+ERROR - 2019-01-09 11:50:32 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:50:32 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 356
+ERROR - 2019-01-09 11:50:32 --> Severity: Notice --> Undefined property: stdClass::$amountreceived C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 315
+ERROR - 2019-01-09 11:50:32 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:50:32 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 327
+ERROR - 2019-01-09 11:50:32 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:50:32 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 324
+ERROR - 2019-01-09 11:50:32 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 327
+ERROR - 2019-01-09 11:50:32 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:50:32 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 324
+ERROR - 2019-01-09 11:50:32 --> Severity: Notice --> Undefined variable: record C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 356
+ERROR - 2019-01-09 11:50:32 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 356
+ERROR - 2019-01-09 11:50:32 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 325
+ERROR - 2019-01-09 11:50:32 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:50:32 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 325
+ERROR - 2019-01-09 11:50:32 --> Severity: Notice --> Undefined property: stdClass::$amountreceived C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 315
+ERROR - 2019-01-09 11:50:32 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:50:33 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 326
+ERROR - 2019-01-09 11:50:33 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:50:33 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 324
+ERROR - 2019-01-09 11:50:33 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:50:33 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 326
+ERROR - 2019-01-09 11:50:33 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 324
+ERROR - 2019-01-09 11:50:33 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:50:33 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 327
+ERROR - 2019-01-09 11:50:33 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 327
+ERROR - 2019-01-09 11:50:33 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 325
+ERROR - 2019-01-09 11:50:33 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:50:33 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 325
+ERROR - 2019-01-09 11:50:33 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:50:33 --> Severity: Notice --> Undefined variable: record C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 356
+ERROR - 2019-01-09 11:50:33 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 326
+ERROR - 2019-01-09 11:50:33 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 356
+ERROR - 2019-01-09 11:50:33 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:50:33 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:50:33 --> Severity: Notice --> Undefined property: stdClass::$amountreceived C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 315
+ERROR - 2019-01-09 11:50:33 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 326
+ERROR - 2019-01-09 11:50:33 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:50:33 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 324
+ERROR - 2019-01-09 11:50:33 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 327
+ERROR - 2019-01-09 11:50:34 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:50:34 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 324
+ERROR - 2019-01-09 11:50:34 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 327
+ERROR - 2019-01-09 11:50:34 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:50:34 --> Severity: Notice --> Undefined variable: record C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 356
+ERROR - 2019-01-09 11:50:34 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 325
+ERROR - 2019-01-09 11:50:34 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 325
+ERROR - 2019-01-09 11:50:34 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 356
+ERROR - 2019-01-09 11:50:34 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:50:34 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:50:34 --> Severity: Notice --> Undefined property: stdClass::$amountreceived C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 315
+ERROR - 2019-01-09 11:50:34 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 326
+ERROR - 2019-01-09 11:50:34 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 324
+ERROR - 2019-01-09 11:50:34 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 326
+ERROR - 2019-01-09 11:50:34 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:50:34 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 327
+ERROR - 2019-01-09 11:50:34 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 324
+ERROR - 2019-01-09 11:50:34 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:50:34 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 325
+ERROR - 2019-01-09 11:50:34 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:50:34 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 327
+ERROR - 2019-01-09 11:50:34 --> Severity: Notice --> Undefined variable: record C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 356
+ERROR - 2019-01-09 11:50:34 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 325
+ERROR - 2019-01-09 11:50:34 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:50:35 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:50:35 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 326
+ERROR - 2019-01-09 11:50:35 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 356
+ERROR - 2019-01-09 11:50:35 --> Severity: Notice --> Undefined property: stdClass::$amountreceived C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 315
+ERROR - 2019-01-09 11:50:35 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 326
+ERROR - 2019-01-09 11:50:35 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:50:35 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 327
+ERROR - 2019-01-09 11:50:35 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 324
+ERROR - 2019-01-09 11:50:35 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:50:35 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 324
+ERROR - 2019-01-09 11:50:35 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:50:35 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 327
+ERROR - 2019-01-09 11:50:35 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:50:35 --> Severity: Notice --> Undefined variable: record C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 356
+ERROR - 2019-01-09 11:50:35 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 325
+ERROR - 2019-01-09 11:50:35 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 356
+ERROR - 2019-01-09 11:50:35 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:50:35 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 325
+ERROR - 2019-01-09 11:50:35 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 326
+ERROR - 2019-01-09 11:50:35 --> Severity: Notice --> Undefined property: stdClass::$amountreceived C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 315
+ERROR - 2019-01-09 11:50:35 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:50:35 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:50:35 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 326
+ERROR - 2019-01-09 11:50:35 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 324
+ERROR - 2019-01-09 11:50:36 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 324
+ERROR - 2019-01-09 11:50:36 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 327
+ERROR - 2019-01-09 11:50:36 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:50:36 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:50:36 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 327
+ERROR - 2019-01-09 11:50:36 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 325
+ERROR - 2019-01-09 11:50:36 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 325
+ERROR - 2019-01-09 11:50:36 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:50:36 --> Severity: Notice --> Undefined variable: record C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 356
+ERROR - 2019-01-09 11:50:36 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 356
+ERROR - 2019-01-09 11:50:36 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 326
+ERROR - 2019-01-09 11:50:36 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:50:36 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 326
+ERROR - 2019-01-09 11:50:36 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:50:36 --> Severity: Notice --> Undefined property: stdClass::$amountreceived C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 315
+ERROR - 2019-01-09 11:50:36 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 324
+ERROR - 2019-01-09 11:50:36 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:50:36 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 327
+ERROR - 2019-01-09 11:50:36 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:50:36 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 324
+ERROR - 2019-01-09 11:50:36 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 327
+ERROR - 2019-01-09 11:50:37 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 325
+ERROR - 2019-01-09 11:50:37 --> Severity: Notice --> Undefined variable: record C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 356
+ERROR - 2019-01-09 11:50:37 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:50:37 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:50:37 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 356
+ERROR - 2019-01-09 11:50:37 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 325
+ERROR - 2019-01-09 11:50:37 --> Severity: Notice --> Undefined property: stdClass::$amountreceived C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 315
+ERROR - 2019-01-09 11:50:37 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 326
+ERROR - 2019-01-09 11:50:37 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:50:37 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 324
+ERROR - 2019-01-09 11:50:37 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 326
+ERROR - 2019-01-09 11:50:37 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:50:37 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 327
+ERROR - 2019-01-09 11:50:37 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:50:37 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 324
+ERROR - 2019-01-09 11:50:37 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:50:37 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 325
+ERROR - 2019-01-09 11:50:37 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 327
+ERROR - 2019-01-09 11:50:37 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:50:37 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 325
+ERROR - 2019-01-09 11:50:37 --> Severity: Notice --> Undefined variable: record C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 356
+ERROR - 2019-01-09 11:50:37 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 356
+ERROR - 2019-01-09 11:50:37 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:50:37 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 326
+ERROR - 2019-01-09 11:50:38 --> Severity: Notice --> Undefined property: stdClass::$amountreceived C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 315
+ERROR - 2019-01-09 11:50:38 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:50:38 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 326
+ERROR - 2019-01-09 11:50:38 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:50:38 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 327
+ERROR - 2019-01-09 11:50:38 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 324
+ERROR - 2019-01-09 11:50:38 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:50:38 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 324
+ERROR - 2019-01-09 11:50:38 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 327
+ERROR - 2019-01-09 11:50:38 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:50:38 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 325
+ERROR - 2019-01-09 11:50:38 --> Severity: Notice --> Undefined variable: record C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 356
+ERROR - 2019-01-09 11:50:38 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 356
+ERROR - 2019-01-09 11:50:38 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 325
+ERROR - 2019-01-09 11:50:38 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:50:38 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 326
+ERROR - 2019-01-09 11:50:38 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:50:38 --> Severity: Notice --> Undefined property: stdClass::$amountreceived C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 315
+ERROR - 2019-01-09 11:50:38 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:50:38 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 326
+ERROR - 2019-01-09 11:50:38 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 324
+ERROR - 2019-01-09 11:50:38 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:50:38 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 327
+ERROR - 2019-01-09 11:50:38 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 324
+ERROR - 2019-01-09 11:50:39 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 327
+ERROR - 2019-01-09 11:50:39 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:50:39 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 325
+ERROR - 2019-01-09 11:50:39 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:50:39 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 325
+ERROR - 2019-01-09 11:50:39 --> Severity: Notice --> Undefined variable: record C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 356
+ERROR - 2019-01-09 11:50:39 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:50:39 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:50:39 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 356
+ERROR - 2019-01-09 11:50:39 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 326
+ERROR - 2019-01-09 11:50:39 --> Severity: Notice --> Undefined property: stdClass::$amountreceived C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 315
+ERROR - 2019-01-09 11:50:39 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:50:39 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 326
+ERROR - 2019-01-09 11:50:39 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 327
+ERROR - 2019-01-09 11:50:39 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:50:39 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 324
+ERROR - 2019-01-09 11:50:39 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 324
+ERROR - 2019-01-09 11:50:39 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:50:39 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 327
+ERROR - 2019-01-09 11:50:40 --> Severity: Notice --> Undefined variable: record C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 356
+ERROR - 2019-01-09 11:50:40 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:50:40 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 325
+ERROR - 2019-01-09 11:50:40 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 356
+ERROR - 2019-01-09 11:50:40 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:50:40 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 325
+ERROR - 2019-01-09 11:50:40 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 326
+ERROR - 2019-01-09 11:50:40 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:50:40 --> Severity: Notice --> Undefined property: stdClass::$amountreceived C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 315
+ERROR - 2019-01-09 11:50:40 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 326
+ERROR - 2019-01-09 11:50:40 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:50:40 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 324
+ERROR - 2019-01-09 11:50:40 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 324
+ERROR - 2019-01-09 11:50:40 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 327
+ERROR - 2019-01-09 11:50:40 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:50:40 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 325
+ERROR - 2019-01-09 11:50:40 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 327
+ERROR - 2019-01-09 11:50:40 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:50:40 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:50:40 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 325
+ERROR - 2019-01-09 11:50:40 --> Severity: Notice --> Undefined variable: record C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 356
+ERROR - 2019-01-09 11:50:40 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:50:40 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 326
+ERROR - 2019-01-09 11:50:40 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 356
+ERROR - 2019-01-09 11:50:41 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 326
+ERROR - 2019-01-09 11:50:41 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:50:41 --> Severity: Notice --> Undefined property: stdClass::$amountreceived C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 315
+ERROR - 2019-01-09 11:50:41 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:50:41 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 324
+ERROR - 2019-01-09 11:50:41 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 327
+ERROR - 2019-01-09 11:50:41 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 327
+ERROR - 2019-01-09 11:50:41 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:50:41 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 324
+ERROR - 2019-01-09 11:50:41 --> Severity: Notice --> Undefined variable: record C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 356
+ERROR - 2019-01-09 11:50:41 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:50:41 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 325
+ERROR - 2019-01-09 11:50:41 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:50:41 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 356
+ERROR - 2019-01-09 11:50:41 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 325
+ERROR - 2019-01-09 11:50:41 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 326
+ERROR - 2019-01-09 11:50:41 --> Severity: Notice --> Undefined property: stdClass::$amountreceived C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 315
+ERROR - 2019-01-09 11:50:41 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:50:41 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 324
+ERROR - 2019-01-09 11:50:41 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:50:41 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 326
+ERROR - 2019-01-09 11:50:41 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 327
+ERROR - 2019-01-09 11:50:41 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:50:41 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 324
+ERROR - 2019-01-09 11:50:42 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 327
+ERROR - 2019-01-09 11:50:42 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 325
+ERROR - 2019-01-09 11:50:42 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:50:42 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:50:42 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 325
+ERROR - 2019-01-09 11:50:42 --> Severity: Notice --> Undefined variable: record C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 356
+ERROR - 2019-01-09 11:50:42 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:50:42 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 356
+ERROR - 2019-01-09 11:50:42 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 326
+ERROR - 2019-01-09 11:50:42 --> Severity: Notice --> Undefined property: stdClass::$amountreceived C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 315
+ERROR - 2019-01-09 11:50:42 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 326
+ERROR - 2019-01-09 11:50:42 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:50:42 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 327
+ERROR - 2019-01-09 11:50:42 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 324
+ERROR - 2019-01-09 11:50:42 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:50:42 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 324
+ERROR - 2019-01-09 11:50:42 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:50:42 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 327
+ERROR - 2019-01-09 11:50:42 --> Severity: Notice --> Undefined variable: record C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 356
+ERROR - 2019-01-09 11:50:42 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 325
+ERROR - 2019-01-09 11:50:42 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:50:43 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:50:43 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 325
+ERROR - 2019-01-09 11:50:43 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 356
+ERROR - 2019-01-09 11:50:43 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 326
+ERROR - 2019-01-09 11:50:43 --> Severity: Notice --> Undefined property: stdClass::$amountreceived C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 315
+ERROR - 2019-01-09 11:50:43 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:50:43 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:50:43 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 326
+ERROR - 2019-01-09 11:50:43 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 324
+ERROR - 2019-01-09 11:50:43 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:50:43 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 324
+ERROR - 2019-01-09 11:50:43 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 327
+ERROR - 2019-01-09 11:50:43 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 325
+ERROR - 2019-01-09 11:50:43 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:50:43 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 325
+ERROR - 2019-01-09 11:50:43 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 327
+ERROR - 2019-01-09 11:50:43 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:50:43 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:50:43 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 326
+ERROR - 2019-01-09 11:50:43 --> Severity: Notice --> Undefined variable: record C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 356
+ERROR - 2019-01-09 11:50:44 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 356
+ERROR - 2019-01-09 11:50:44 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 326
+ERROR - 2019-01-09 11:50:44 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:50:44 --> Severity: Notice --> Undefined property: stdClass::$amountreceived C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 315
+ERROR - 2019-01-09 11:50:44 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:50:44 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 327
+ERROR - 2019-01-09 11:50:44 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 327
+ERROR - 2019-01-09 11:50:44 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:50:44 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 324
+ERROR - 2019-01-09 11:50:44 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:50:44 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 324
+ERROR - 2019-01-09 11:50:44 --> Severity: Notice --> Undefined variable: record C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 356
+ERROR - 2019-01-09 11:50:44 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:50:44 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 356
+ERROR - 2019-01-09 11:50:44 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 325
+ERROR - 2019-01-09 11:50:44 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 325
+ERROR - 2019-01-09 11:50:44 --> Severity: Notice --> Undefined property: stdClass::$amountreceived C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 315
+ERROR - 2019-01-09 11:50:44 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:50:44 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:50:44 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 326
+ERROR - 2019-01-09 11:50:44 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 324
+ERROR - 2019-01-09 11:50:44 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 324
+ERROR - 2019-01-09 11:50:44 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 326
+ERROR - 2019-01-09 11:50:44 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:50:45 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 327
+ERROR - 2019-01-09 11:50:45 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:50:45 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 325
+ERROR - 2019-01-09 11:50:45 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 325
+ERROR - 2019-01-09 11:50:45 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:50:45 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 327
+ERROR - 2019-01-09 11:50:45 --> Severity: Notice --> Undefined variable: record C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 356
+ERROR - 2019-01-09 11:50:45 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 326
+ERROR - 2019-01-09 11:50:45 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:50:45 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:50:45 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 356
+ERROR - 2019-01-09 11:50:45 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 326
+ERROR - 2019-01-09 11:50:45 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:50:45 --> Severity: Notice --> Undefined property: stdClass::$amountreceived C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 315
+ERROR - 2019-01-09 11:50:45 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 327
+ERROR - 2019-01-09 11:50:45 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 327
+ERROR - 2019-01-09 11:50:45 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:50:45 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 324
+ERROR - 2019-01-09 11:50:45 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 324
+ERROR - 2019-01-09 11:50:45 --> Severity: Notice --> Undefined variable: record C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 356
+ERROR - 2019-01-09 11:50:45 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:50:45 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:50:45 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 325
+ERROR - 2019-01-09 11:50:45 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 356
+ERROR - 2019-01-09 11:50:46 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 325
+ERROR - 2019-01-09 11:50:46 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:50:46 --> Severity: Notice --> Undefined property: stdClass::$amountreceived C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 315
+ERROR - 2019-01-09 11:50:46 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:50:46 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 326
+ERROR - 2019-01-09 11:50:46 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 324
+ERROR - 2019-01-09 11:50:46 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 324
+ERROR - 2019-01-09 11:50:46 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:50:46 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 326
+ERROR - 2019-01-09 11:50:46 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 327
+ERROR - 2019-01-09 11:50:46 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 325
+ERROR - 2019-01-09 11:50:46 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:50:46 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 327
+ERROR - 2019-01-09 11:50:46 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:50:46 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 325
+ERROR - 2019-01-09 11:50:46 --> Severity: Notice --> Undefined variable: record C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 356
+ERROR - 2019-01-09 11:50:46 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:50:46 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 326
+ERROR - 2019-01-09 11:50:46 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 326
+ERROR - 2019-01-09 11:50:46 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 356
+ERROR - 2019-01-09 11:50:46 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:50:46 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:50:46 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 327
+ERROR - 2019-01-09 11:50:46 --> Severity: Notice --> Undefined property: stdClass::$amountreceived C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 315
+ERROR - 2019-01-09 11:50:47 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 327
+ERROR - 2019-01-09 11:50:47 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:50:47 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 324
+ERROR - 2019-01-09 11:50:47 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 324
+ERROR - 2019-01-09 11:50:47 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:50:47 --> Severity: Notice --> Undefined variable: record C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 356
+ERROR - 2019-01-09 11:50:47 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 325
+ERROR - 2019-01-09 11:50:47 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:50:47 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 325
+ERROR - 2019-01-09 11:50:47 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 356
+ERROR - 2019-01-09 11:50:47 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 326
+ERROR - 2019-01-09 11:50:47 --> Severity: Notice --> Undefined property: stdClass::$amountreceived C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 315
+ERROR - 2019-01-09 11:50:47 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:50:47 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:50:47 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 324
+ERROR - 2019-01-09 11:50:47 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 326
+ERROR - 2019-01-09 11:50:47 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:50:47 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 327
+ERROR - 2019-01-09 11:50:47 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 324
+ERROR - 2019-01-09 11:50:47 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 327
+ERROR - 2019-01-09 11:50:47 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:50:47 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 325
+ERROR - 2019-01-09 11:50:48 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:50:48 --> Severity: Notice --> Undefined variable: record C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 356
+ERROR - 2019-01-09 11:50:48 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 325
+ERROR - 2019-01-09 11:50:48 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 356
+ERROR - 2019-01-09 11:50:48 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:50:48 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 326
+ERROR - 2019-01-09 11:50:48 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:50:48 --> Severity: Notice --> Undefined property: stdClass::$amountreceived C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 315
+ERROR - 2019-01-09 11:50:48 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 326
+ERROR - 2019-01-09 11:50:48 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:50:48 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 327
+ERROR - 2019-01-09 11:50:48 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 324
+ERROR - 2019-01-09 11:50:48 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 327
+ERROR - 2019-01-09 11:50:48 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 324
+ERROR - 2019-01-09 11:50:48 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:50:48 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 325
+ERROR - 2019-01-09 11:50:48 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:50:48 --> Severity: Notice --> Undefined variable: record C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 356
+ERROR - 2019-01-09 11:50:48 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:50:48 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 325
+ERROR - 2019-01-09 11:50:48 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 356
+ERROR - 2019-01-09 11:50:49 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 326
+ERROR - 2019-01-09 11:50:49 --> Severity: Notice --> Undefined property: stdClass::$amountreceived C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 315
+ERROR - 2019-01-09 11:50:49 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:50:49 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:50:49 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 324
+ERROR - 2019-01-09 11:50:49 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 326
+ERROR - 2019-01-09 11:50:49 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 324
+ERROR - 2019-01-09 11:50:49 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 327
+ERROR - 2019-01-09 11:50:49 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:50:49 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 327
+ERROR - 2019-01-09 11:50:49 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 325
+ERROR - 2019-01-09 11:50:49 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:50:49 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:50:49 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 325
+ERROR - 2019-01-09 11:50:49 --> Severity: Notice --> Undefined variable: record C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 356
+ERROR - 2019-01-09 11:50:49 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 326
+ERROR - 2019-01-09 11:50:49 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 356
+ERROR - 2019-01-09 11:50:49 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:50:49 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 326
+ERROR - 2019-01-09 11:50:49 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:50:49 --> Severity: Notice --> Undefined property: stdClass::$amountreceived C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 315
+ERROR - 2019-01-09 11:50:49 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:50:49 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 324
+ERROR - 2019-01-09 11:50:49 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 327
+ERROR - 2019-01-09 11:50:50 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 327
+ERROR - 2019-01-09 11:50:50 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:50:50 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 324
+ERROR - 2019-01-09 11:50:50 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:50:50 --> Severity: Notice --> Undefined variable: record C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 356
+ERROR - 2019-01-09 11:50:50 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 325
+ERROR - 2019-01-09 11:50:50 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 325
+ERROR - 2019-01-09 11:50:50 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:50:50 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 356
+ERROR - 2019-01-09 11:50:50 --> Severity: Notice --> Undefined property: stdClass::$amountreceived C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 315
+ERROR - 2019-01-09 11:50:50 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 326
+ERROR - 2019-01-09 11:50:50 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:50:50 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 326
+ERROR - 2019-01-09 11:50:50 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:50:50 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 324
+ERROR - 2019-01-09 11:50:50 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 324
+ERROR - 2019-01-09 11:50:50 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:50:50 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 327
+ERROR - 2019-01-09 11:50:50 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 327
+ERROR - 2019-01-09 11:50:50 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:50:50 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 325
+ERROR - 2019-01-09 11:50:50 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:50:50 --> Severity: Notice --> Undefined variable: record C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 356
+ERROR - 2019-01-09 11:50:50 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 325
+ERROR - 2019-01-09 11:50:51 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 356
+ERROR - 2019-01-09 11:50:51 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:50:51 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 326
+ERROR - 2019-01-09 11:50:51 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:50:51 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 326
+ERROR - 2019-01-09 11:50:51 --> Severity: Notice --> Undefined property: stdClass::$amountreceived C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 315
+ERROR - 2019-01-09 11:50:51 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 324
+ERROR - 2019-01-09 11:50:51 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 327
+ERROR - 2019-01-09 11:50:51 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:50:51 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 324
+ERROR - 2019-01-09 11:50:51 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 327
+ERROR - 2019-01-09 11:50:51 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:50:51 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:50:51 --> Severity: Notice --> Undefined variable: record C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 356
+ERROR - 2019-01-09 11:50:51 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 325
+ERROR - 2019-01-09 11:50:51 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 356
+ERROR - 2019-01-09 11:50:51 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 325
+ERROR - 2019-01-09 11:50:51 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:50:51 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 326
+ERROR - 2019-01-09 11:50:51 --> Severity: Notice --> Undefined property: stdClass::$amountreceived C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 315
+ERROR - 2019-01-09 11:50:51 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:50:51 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:50:51 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 326
+ERROR - 2019-01-09 11:50:51 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 324
+ERROR - 2019-01-09 11:50:52 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 327
+ERROR - 2019-01-09 11:50:52 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:50:52 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 324
+ERROR - 2019-01-09 11:50:52 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:50:52 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 327
+ERROR - 2019-01-09 11:50:52 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 325
+ERROR - 2019-01-09 11:50:52 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 325
+ERROR - 2019-01-09 11:50:52 --> Severity: Notice --> Undefined variable: record C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 356
+ERROR - 2019-01-09 11:50:52 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:50:52 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 326
+ERROR - 2019-01-09 11:50:52 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 356
+ERROR - 2019-01-09 11:50:52 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:50:52 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 326
+ERROR - 2019-01-09 11:50:52 --> Severity: Notice --> Undefined property: stdClass::$amountreceived C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 315
+ERROR - 2019-01-09 11:50:52 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:50:52 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:50:52 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 327
+ERROR - 2019-01-09 11:50:52 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 324
+ERROR - 2019-01-09 11:50:52 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:50:52 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 324
+ERROR - 2019-01-09 11:50:52 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 327
+ERROR - 2019-01-09 11:50:52 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 325
+ERROR - 2019-01-09 11:50:52 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:50:52 --> Severity: Notice --> Undefined variable: record C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 356
+ERROR - 2019-01-09 11:50:53 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 325
+ERROR - 2019-01-09 11:50:53 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 356
+ERROR - 2019-01-09 11:50:53 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:50:53 --> Severity: Notice --> Undefined property: stdClass::$amountreceived C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 315
+ERROR - 2019-01-09 11:50:53 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 326
+ERROR - 2019-01-09 11:50:53 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:50:53 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:50:53 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 324
+ERROR - 2019-01-09 11:50:53 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 326
+ERROR - 2019-01-09 11:50:53 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 327
+ERROR - 2019-01-09 11:50:53 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 324
+ERROR - 2019-01-09 11:50:53 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:50:53 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:50:53 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 327
+ERROR - 2019-01-09 11:50:53 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 325
+ERROR - 2019-01-09 11:50:53 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:50:53 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 325
+ERROR - 2019-01-09 11:50:53 --> Severity: Notice --> Undefined variable: record C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 356
+ERROR - 2019-01-09 11:50:53 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 326
+ERROR - 2019-01-09 11:50:53 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 356
+ERROR - 2019-01-09 11:50:53 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:50:53 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 326
+ERROR - 2019-01-09 11:50:53 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:50:53 --> Severity: Notice --> Undefined property: stdClass::$amountreceived C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 315
+ERROR - 2019-01-09 11:50:54 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:50:54 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 327
+ERROR - 2019-01-09 11:50:54 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 324
+ERROR - 2019-01-09 11:50:54 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 327
+ERROR - 2019-01-09 11:50:54 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 324
+ERROR - 2019-01-09 11:50:54 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:50:54 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:50:54 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 325
+ERROR - 2019-01-09 11:50:54 --> Severity: Notice --> Undefined variable: record C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 356
+ERROR - 2019-01-09 11:50:54 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:50:54 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 356
+ERROR - 2019-01-09 11:50:54 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 325
+ERROR - 2019-01-09 11:50:54 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 326
+ERROR - 2019-01-09 11:50:54 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:50:54 --> Severity: Notice --> Undefined property: stdClass::$amountreceived C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 315
+ERROR - 2019-01-09 11:50:54 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 324
+ERROR - 2019-01-09 11:50:54 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:50:54 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 326
+ERROR - 2019-01-09 11:50:54 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 324
+ERROR - 2019-01-09 11:50:54 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:50:54 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 327
+ERROR - 2019-01-09 11:50:54 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:50:54 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 325
+ERROR - 2019-01-09 11:50:54 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 327
+ERROR - 2019-01-09 11:50:55 --> Severity: Notice --> Undefined variable: record C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 356
+ERROR - 2019-01-09 11:50:55 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:50:55 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 325
+ERROR - 2019-01-09 11:50:55 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 356
+ERROR - 2019-01-09 11:50:55 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:50:55 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 326
+ERROR - 2019-01-09 11:50:55 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:50:55 --> Severity: Notice --> Undefined property: stdClass::$amountreceived C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 315
+ERROR - 2019-01-09 11:50:55 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 326
+ERROR - 2019-01-09 11:50:55 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 324
+ERROR - 2019-01-09 11:50:55 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 327
+ERROR - 2019-01-09 11:50:55 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:50:55 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 324
+ERROR - 2019-01-09 11:50:55 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 327
+ERROR - 2019-01-09 11:50:55 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:50:55 --> Severity: Notice --> Undefined variable: record C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 356
+ERROR - 2019-01-09 11:50:55 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:50:55 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 325
+ERROR - 2019-01-09 11:50:55 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 356
+ERROR - 2019-01-09 11:50:55 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:50:55 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 325
+ERROR - 2019-01-09 11:50:55 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 326
+ERROR - 2019-01-09 11:50:55 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:50:55 --> Severity: Notice --> Undefined property: stdClass::$amountreceived C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 315
+ERROR - 2019-01-09 11:50:56 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 326
+ERROR - 2019-01-09 11:50:56 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 324
+ERROR - 2019-01-09 11:50:56 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:50:56 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:50:56 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 327
+ERROR - 2019-01-09 11:50:56 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 324
+ERROR - 2019-01-09 11:50:56 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 327
+ERROR - 2019-01-09 11:50:56 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:50:56 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 325
+ERROR - 2019-01-09 11:50:56 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 325
+ERROR - 2019-01-09 11:50:56 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:50:56 --> Severity: Notice --> Undefined variable: record C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 356
+ERROR - 2019-01-09 11:50:56 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:50:56 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 326
+ERROR - 2019-01-09 11:50:56 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 356
+ERROR - 2019-01-09 11:50:56 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 326
+ERROR - 2019-01-09 11:50:56 --> Severity: Notice --> Undefined property: stdClass::$amountreceived C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 315
+ERROR - 2019-01-09 11:50:56 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:50:56 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:50:56 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 327
+ERROR - 2019-01-09 11:50:56 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 324
+ERROR - 2019-01-09 11:50:57 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 324
+ERROR - 2019-01-09 11:50:57 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 327
+ERROR - 2019-01-09 11:50:57 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:50:57 --> Severity: Notice --> Undefined variable: record C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 356
+ERROR - 2019-01-09 11:50:57 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:50:57 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 325
+ERROR - 2019-01-09 11:50:57 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 325
+ERROR - 2019-01-09 11:50:57 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 356
+ERROR - 2019-01-09 11:50:57 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:50:57 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 326
+ERROR - 2019-01-09 11:50:57 --> Severity: Notice --> Undefined property: stdClass::$amountreceived C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 315
+ERROR - 2019-01-09 11:50:57 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:50:57 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 326
+ERROR - 2019-01-09 11:50:57 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 324
+ERROR - 2019-01-09 11:50:57 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:50:57 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 324
+ERROR - 2019-01-09 11:50:57 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:50:57 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 327
+ERROR - 2019-01-09 11:50:58 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 327
+ERROR - 2019-01-09 11:50:58 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 325
+ERROR - 2019-01-09 11:50:58 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:50:58 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:50:58 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 325
+ERROR - 2019-01-09 11:50:58 --> Severity: Notice --> Undefined variable: record C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 356
+ERROR - 2019-01-09 11:50:58 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 356
+ERROR - 2019-01-09 11:50:58 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 326
+ERROR - 2019-01-09 11:50:58 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:50:58 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 326
+ERROR - 2019-01-09 11:50:58 --> Severity: Notice --> Undefined property: stdClass::$amountreceived C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 315
+ERROR - 2019-01-09 11:50:58 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:50:58 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 324
+ERROR - 2019-01-09 11:50:58 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:50:58 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 327
+ERROR - 2019-01-09 11:50:58 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:50:58 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 327
+ERROR - 2019-01-09 11:50:58 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 324
+ERROR - 2019-01-09 11:50:58 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:50:58 --> Severity: Notice --> Undefined variable: record C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 356
+ERROR - 2019-01-09 11:50:58 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 325
+ERROR - 2019-01-09 11:50:58 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 325
+ERROR - 2019-01-09 11:50:58 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 356
+ERROR - 2019-01-09 11:50:58 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:50:59 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 326
+ERROR - 2019-01-09 11:50:59 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:50:59 --> Severity: Notice --> Undefined property: stdClass::$amountreceived C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 315
+ERROR - 2019-01-09 11:50:59 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:50:59 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 326
+ERROR - 2019-01-09 11:50:59 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 324
+ERROR - 2019-01-09 11:50:59 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 327
+ERROR - 2019-01-09 11:50:59 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:50:59 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 324
+ERROR - 2019-01-09 11:50:59 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 325
+ERROR - 2019-01-09 11:50:59 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 327
+ERROR - 2019-01-09 11:50:59 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:50:59 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 325
+ERROR - 2019-01-09 11:50:59 --> Severity: Notice --> Undefined variable: record C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 356
+ERROR - 2019-01-09 11:50:59 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:50:59 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 326
+ERROR - 2019-01-09 11:50:59 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 356
+ERROR - 2019-01-09 11:50:59 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:50:59 --> Severity: Notice --> Undefined property: stdClass::$amountreceived C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 315
+ERROR - 2019-01-09 11:50:59 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 326
+ERROR - 2019-01-09 11:50:59 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:50:59 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 324
+ERROR - 2019-01-09 11:50:59 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 327
+ERROR - 2019-01-09 11:50:59 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:51:00 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:51:00 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 324
+ERROR - 2019-01-09 11:51:00 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 327
+ERROR - 2019-01-09 11:51:00 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 325
+ERROR - 2019-01-09 11:51:00 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:51:00 --> Severity: Notice --> Undefined variable: record C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 356
+ERROR - 2019-01-09 11:51:00 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:51:00 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 325
+ERROR - 2019-01-09 11:51:00 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 356
+ERROR - 2019-01-09 11:51:00 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 326
+ERROR - 2019-01-09 11:51:00 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:51:00 --> Severity: Notice --> Undefined property: stdClass::$amountreceived C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 315
+ERROR - 2019-01-09 11:51:00 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 326
+ERROR - 2019-01-09 11:51:00 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 324
+ERROR - 2019-01-09 11:51:00 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:51:00 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 327
+ERROR - 2019-01-09 11:51:00 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 324
+ERROR - 2019-01-09 11:51:00 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:51:00 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 325
+ERROR - 2019-01-09 11:51:00 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 327
+ERROR - 2019-01-09 11:51:00 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:51:01 --> Severity: Notice --> Undefined variable: record C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 356
+ERROR - 2019-01-09 11:51:01 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 325
+ERROR - 2019-01-09 11:51:01 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:51:01 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:51:01 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 356
+ERROR - 2019-01-09 11:51:01 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 326
+ERROR - 2019-01-09 11:51:01 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 326
+ERROR - 2019-01-09 11:51:01 --> Severity: Notice --> Undefined property: stdClass::$amountreceived C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 315
+ERROR - 2019-01-09 11:51:01 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:51:01 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 327
+ERROR - 2019-01-09 11:51:01 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 324
+ERROR - 2019-01-09 11:51:01 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:51:01 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:51:01 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 324
+ERROR - 2019-01-09 11:51:01 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 327
+ERROR - 2019-01-09 11:51:01 --> Severity: Notice --> Undefined variable: record C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 356
+ERROR - 2019-01-09 11:51:01 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 325
+ERROR - 2019-01-09 11:51:01 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:51:01 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 356
+ERROR - 2019-01-09 11:51:01 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 325
+ERROR - 2019-01-09 11:51:01 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:51:01 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 326
+ERROR - 2019-01-09 11:51:01 --> Severity: Notice --> Undefined property: stdClass::$amountreceived C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 315
+ERROR - 2019-01-09 11:51:01 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:51:02 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:51:02 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 324
+ERROR - 2019-01-09 11:51:02 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 326
+ERROR - 2019-01-09 11:51:02 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 324
+ERROR - 2019-01-09 11:51:02 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 327
+ERROR - 2019-01-09 11:51:02 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:51:02 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 327
+ERROR - 2019-01-09 11:51:02 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 325
+ERROR - 2019-01-09 11:51:02 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:51:02 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 325
+ERROR - 2019-01-09 11:51:02 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:51:02 --> Severity: Notice --> Undefined variable: record C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 356
+ERROR - 2019-01-09 11:51:02 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:51:02 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 356
+ERROR - 2019-01-09 11:51:02 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 326
+ERROR - 2019-01-09 11:51:02 --> Severity: Notice --> Undefined property: stdClass::$amountreceived C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 315
+ERROR - 2019-01-09 11:51:02 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:51:02 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 326
+ERROR - 2019-01-09 11:51:02 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 324
+ERROR - 2019-01-09 11:51:02 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 327
+ERROR - 2019-01-09 11:51:02 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:51:03 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 327
+ERROR - 2019-01-09 11:51:03 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 324
+ERROR - 2019-01-09 11:51:03 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:51:03 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 325
+ERROR - 2019-01-09 11:51:03 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:51:03 --> Severity: Notice --> Undefined variable: record C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 356
+ERROR - 2019-01-09 11:51:03 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:51:03 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 325
+ERROR - 2019-01-09 11:51:03 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 356
+ERROR - 2019-01-09 11:51:03 --> Severity: Notice --> Undefined property: stdClass::$amountreceived C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 315
+ERROR - 2019-01-09 11:51:03 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 326
+ERROR - 2019-01-09 11:51:03 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:51:03 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:51:03 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 324
+ERROR - 2019-01-09 11:51:03 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 326
+ERROR - 2019-01-09 11:51:03 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 327
+ERROR - 2019-01-09 11:51:03 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 324
+ERROR - 2019-01-09 11:51:03 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 327
+ERROR - 2019-01-09 11:51:03 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:51:03 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 325
+ERROR - 2019-01-09 11:51:03 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:51:03 --> Severity: Notice --> Undefined variable: record C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 356
+ERROR - 2019-01-09 11:51:03 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 325
+ERROR - 2019-01-09 11:51:04 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 356
+ERROR - 2019-01-09 11:51:04 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 326
+ERROR - 2019-01-09 11:51:04 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:51:04 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 326
+ERROR - 2019-01-09 11:51:04 --> Severity: Notice --> Undefined property: stdClass::$amountreceived C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 315
+ERROR - 2019-01-09 11:51:04 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:51:04 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 324
+ERROR - 2019-01-09 11:51:04 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:51:04 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 327
+ERROR - 2019-01-09 11:51:04 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 327
+ERROR - 2019-01-09 11:51:04 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 324
+ERROR - 2019-01-09 11:51:04 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:51:04 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:51:04 --> Severity: Notice --> Undefined variable: record C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 356
+ERROR - 2019-01-09 11:51:04 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 325
+ERROR - 2019-01-09 11:51:04 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:51:04 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 356
+ERROR - 2019-01-09 11:51:04 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 325
+ERROR - 2019-01-09 11:51:04 --> Severity: Notice --> Undefined property: stdClass::$amountreceived C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 315
+ERROR - 2019-01-09 11:51:04 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 326
+ERROR - 2019-01-09 11:51:04 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:51:04 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:51:04 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 326
+ERROR - 2019-01-09 11:51:04 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 324
+ERROR - 2019-01-09 11:51:05 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 327
+ERROR - 2019-01-09 11:51:05 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:51:05 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 324
+ERROR - 2019-01-09 11:51:05 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 325
+ERROR - 2019-01-09 11:51:05 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 327
+ERROR - 2019-01-09 11:51:05 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:51:05 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 325
+ERROR - 2019-01-09 11:51:05 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:51:05 --> Severity: Notice --> Undefined variable: record C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 356
+ERROR - 2019-01-09 11:51:05 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 326
+ERROR - 2019-01-09 11:51:05 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 356
+ERROR - 2019-01-09 11:51:05 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:51:05 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 326
+ERROR - 2019-01-09 11:51:05 --> Severity: Notice --> Undefined property: stdClass::$amountreceived C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 315
+ERROR - 2019-01-09 11:51:05 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:51:05 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 327
+ERROR - 2019-01-09 11:51:05 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 324
+ERROR - 2019-01-09 11:51:05 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:51:05 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 324
+ERROR - 2019-01-09 11:51:05 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:51:05 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 327
+ERROR - 2019-01-09 11:51:05 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 325
+ERROR - 2019-01-09 11:51:05 --> Severity: Notice --> Undefined variable: record C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 356
+ERROR - 2019-01-09 11:51:05 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:51:06 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 325
+ERROR - 2019-01-09 11:51:06 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 356
+ERROR - 2019-01-09 11:51:06 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:51:06 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:51:06 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 326
+ERROR - 2019-01-09 11:51:06 --> Severity: Notice --> Undefined property: stdClass::$amountreceived C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 315
+ERROR - 2019-01-09 11:51:06 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 324
+ERROR - 2019-01-09 11:51:06 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:51:06 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 324
+ERROR - 2019-01-09 11:51:06 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:51:06 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:51:06 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 325
+ERROR - 2019-01-09 11:51:06 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:51:06 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 325
+ERROR - 2019-01-09 11:51:06 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:51:06 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 326
+ERROR - 2019-01-09 11:51:07 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 326
+ERROR - 2019-01-09 11:51:07 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:51:07 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:51:07 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 327
+ERROR - 2019-01-09 11:51:07 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 327
+ERROR - 2019-01-09 11:51:07 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:51:07 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:51:07 --> Severity: Notice --> Undefined variable: record C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 356
+ERROR - 2019-01-09 11:51:07 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:51:07 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 356
+ERROR - 2019-01-09 11:51:07 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:51:07 --> Severity: Notice --> Undefined property: stdClass::$amountreceived C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 315
+ERROR - 2019-01-09 11:51:07 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:51:07 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 324
+ERROR - 2019-01-09 11:51:07 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 324
+ERROR - 2019-01-09 11:51:07 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:51:08 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:51:08 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 325
+ERROR - 2019-01-09 11:51:08 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:51:08 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 325
+ERROR - 2019-01-09 11:51:08 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 326
+ERROR - 2019-01-09 11:51:08 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:51:08 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:51:08 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 326
+ERROR - 2019-01-09 11:51:08 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 327
+ERROR - 2019-01-09 11:51:08 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:51:08 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:51:08 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 327
+ERROR - 2019-01-09 11:51:08 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:51:08 --> Severity: Notice --> Undefined variable: record C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 356
+ERROR - 2019-01-09 11:51:09 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:51:09 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 356
+ERROR - 2019-01-09 11:51:09 --> Severity: Notice --> Undefined property: stdClass::$amountreceived C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 315
+ERROR - 2019-01-09 11:51:09 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:51:09 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 324
+ERROR - 2019-01-09 11:51:09 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:51:09 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 324
+ERROR - 2019-01-09 11:51:09 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:51:09 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:51:09 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 325
+ERROR - 2019-01-09 11:51:09 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 325
+ERROR - 2019-01-09 11:51:09 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:51:09 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 326
+ERROR - 2019-01-09 11:51:09 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:51:09 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 326
+ERROR - 2019-01-09 11:51:09 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:51:10 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:51:10 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 327
+ERROR - 2019-01-09 11:51:10 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 327
+ERROR - 2019-01-09 11:51:10 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:51:10 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:51:10 --> Severity: Notice --> Undefined variable: record C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 356
+ERROR - 2019-01-09 11:51:10 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 356
+ERROR - 2019-01-09 11:51:10 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:51:10 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:51:10 --> Severity: Notice --> Undefined property: stdClass::$amountreceived C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 315
+ERROR - 2019-01-09 11:51:10 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:51:10 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 324
+ERROR - 2019-01-09 11:51:10 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 324
+ERROR - 2019-01-09 11:51:10 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:51:10 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 325
+ERROR - 2019-01-09 11:51:10 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:51:11 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:51:11 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 325
+ERROR - 2019-01-09 11:51:11 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 326
+ERROR - 2019-01-09 11:51:11 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:51:11 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:51:11 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 326
+ERROR - 2019-01-09 11:51:11 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 327
+ERROR - 2019-01-09 11:51:11 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:51:11 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 327
+ERROR - 2019-01-09 11:51:11 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:51:11 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:51:11 --> Severity: Notice --> Undefined variable: record C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 356
+ERROR - 2019-01-09 11:51:11 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:51:11 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 356
+ERROR - 2019-01-09 11:51:12 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:51:12 --> Severity: Notice --> Undefined property: stdClass::$amountreceived C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 315
+ERROR - 2019-01-09 11:51:12 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 324
+ERROR - 2019-01-09 11:51:12 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:51:12 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:51:12 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 324
+ERROR - 2019-01-09 11:51:12 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:51:12 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 325
+ERROR - 2019-01-09 11:51:12 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 325
+ERROR - 2019-01-09 11:51:12 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:51:12 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:51:12 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 326
+ERROR - 2019-01-09 11:51:12 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:51:12 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 326
+ERROR - 2019-01-09 11:51:12 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 327
+ERROR - 2019-01-09 11:51:12 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:51:13 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 327
+ERROR - 2019-01-09 11:51:13 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:51:13 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:51:13 --> Severity: Notice --> Undefined variable: record C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 356
+ERROR - 2019-01-09 11:51:13 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:51:13 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 356
+ERROR - 2019-01-09 11:51:13 --> Severity: Notice --> Undefined property: stdClass::$amountreceived C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 315
+ERROR - 2019-01-09 11:51:13 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:51:13 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:51:13 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 324
+ERROR - 2019-01-09 11:51:13 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 324
+ERROR - 2019-01-09 11:51:13 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:51:13 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 325
+ERROR - 2019-01-09 11:51:13 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:51:14 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:51:14 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 325
+ERROR - 2019-01-09 11:51:14 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 326
+ERROR - 2019-01-09 11:51:14 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:51:14 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:51:14 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 326
+ERROR - 2019-01-09 11:51:14 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 327
+ERROR - 2019-01-09 11:51:14 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:51:14 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:51:14 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 327
+ERROR - 2019-01-09 11:51:14 --> Severity: Notice --> Undefined variable: record C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 356
+ERROR - 2019-01-09 11:51:14 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:51:14 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:51:14 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 356
+ERROR - 2019-01-09 11:51:14 --> Severity: Notice --> Undefined property: stdClass::$amountreceived C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 315
+ERROR - 2019-01-09 11:51:14 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:51:15 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:51:15 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 324
+ERROR - 2019-01-09 11:51:15 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:51:15 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 324
+ERROR - 2019-01-09 11:51:15 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 325
+ERROR - 2019-01-09 11:51:15 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:51:15 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:51:15 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 325
+ERROR - 2019-01-09 11:51:15 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 326
+ERROR - 2019-01-09 11:51:15 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:51:15 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:51:15 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 326
+ERROR - 2019-01-09 11:51:15 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:51:15 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 327
+ERROR - 2019-01-09 11:51:15 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 327
+ERROR - 2019-01-09 11:51:15 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:51:16 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:51:16 --> Severity: Notice --> Undefined variable: record C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 356
+ERROR - 2019-01-09 11:51:16 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 356
+ERROR - 2019-01-09 11:51:16 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:51:16 --> Severity: Notice --> Undefined property: stdClass::$amountreceived C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 315
+ERROR - 2019-01-09 11:51:16 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:51:16 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 324
+ERROR - 2019-01-09 11:51:16 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:51:16 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 324
+ERROR - 2019-01-09 11:51:16 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:51:16 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:51:16 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 325
+ERROR - 2019-01-09 11:51:16 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 325
+ERROR - 2019-01-09 11:51:16 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:51:17 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:51:17 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 326
+ERROR - 2019-01-09 11:51:17 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 326
+ERROR - 2019-01-09 11:51:17 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:51:17 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:51:17 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 327
+ERROR - 2019-01-09 11:51:17 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 327
+ERROR - 2019-01-09 11:51:17 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:51:17 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:51:17 --> Severity: Notice --> Undefined variable: record C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 356
+ERROR - 2019-01-09 11:51:17 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 356
+ERROR - 2019-01-09 11:51:17 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:51:17 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:51:17 --> Severity: Notice --> Undefined property: stdClass::$amountreceived C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 315
+ERROR - 2019-01-09 11:51:17 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:51:17 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 324
+ERROR - 2019-01-09 11:51:18 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:51:18 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 324
+ERROR - 2019-01-09 11:51:18 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:51:18 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 325
+ERROR - 2019-01-09 11:51:18 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:51:18 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 325
+ERROR - 2019-01-09 11:51:18 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 326
+ERROR - 2019-01-09 11:51:18 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:51:18 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 326
+ERROR - 2019-01-09 11:51:18 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:51:18 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:51:18 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 327
+ERROR - 2019-01-09 11:51:18 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 327
+ERROR - 2019-01-09 11:51:18 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:51:19 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:51:19 --> Severity: Notice --> Undefined variable: record C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 356
+ERROR - 2019-01-09 11:51:19 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 356
+ERROR - 2019-01-09 11:51:19 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:51:19 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:51:19 --> Severity: Notice --> Undefined property: stdClass::$amountreceived C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 315
+ERROR - 2019-01-09 11:51:19 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 324
+ERROR - 2019-01-09 11:51:19 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:51:19 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:51:19 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 324
+ERROR - 2019-01-09 11:51:19 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:51:19 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 325
+ERROR - 2019-01-09 11:51:19 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 325
+ERROR - 2019-01-09 11:51:19 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:51:19 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 326
+ERROR - 2019-01-09 11:51:19 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:51:20 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:51:20 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 326
+ERROR - 2019-01-09 11:51:20 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 327
+ERROR - 2019-01-09 11:51:20 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:51:20 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:51:20 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 327
+ERROR - 2019-01-09 11:51:20 --> Severity: Notice --> Undefined variable: record C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 356
+ERROR - 2019-01-09 11:51:20 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:51:20 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:51:20 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 356
+ERROR - 2019-01-09 11:51:20 --> Severity: Notice --> Undefined property: stdClass::$amountreceived C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 315
+ERROR - 2019-01-09 11:51:20 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:51:20 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 324
+ERROR - 2019-01-09 11:51:20 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:51:20 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 324
+ERROR - 2019-01-09 11:51:20 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:51:21 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:51:21 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 325
+ERROR - 2019-01-09 11:51:21 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:51:21 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 325
+ERROR - 2019-01-09 11:51:21 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 326
+ERROR - 2019-01-09 11:51:21 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:51:21 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 326
+ERROR - 2019-01-09 11:51:21 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:51:21 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 327
+ERROR - 2019-01-09 11:51:21 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:51:21 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 327
+ERROR - 2019-01-09 11:51:21 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:51:21 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:51:21 --> Severity: Notice --> Undefined variable: record C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 356
+ERROR - 2019-01-09 11:51:22 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:51:22 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 356
+ERROR - 2019-01-09 11:51:22 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:51:22 --> Severity: Notice --> Undefined property: stdClass::$amountreceived C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 315
+ERROR - 2019-01-09 11:51:22 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 324
+ERROR - 2019-01-09 11:51:22 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:51:22 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:51:22 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 324
+ERROR - 2019-01-09 11:51:22 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 325
+ERROR - 2019-01-09 11:51:22 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:51:22 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:51:22 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 325
+ERROR - 2019-01-09 11:51:22 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 326
+ERROR - 2019-01-09 11:51:22 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:51:22 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:51:22 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 326
+ERROR - 2019-01-09 11:51:23 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 327
+ERROR - 2019-01-09 11:51:23 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:51:23 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 327
+ERROR - 2019-01-09 11:51:23 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:51:23 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:51:23 --> Severity: Notice --> Undefined variable: record C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 356
+ERROR - 2019-01-09 11:51:23 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 356
+ERROR - 2019-01-09 11:51:23 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:51:23 --> Severity: Notice --> Undefined property: stdClass::$amountreceived C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 315
+ERROR - 2019-01-09 11:51:23 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:51:23 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:51:23 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 324
+ERROR - 2019-01-09 11:51:23 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 324
+ERROR - 2019-01-09 11:51:23 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:51:24 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:51:24 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 325
+ERROR - 2019-01-09 11:51:24 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:51:24 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 325
+ERROR - 2019-01-09 11:51:24 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 326
+ERROR - 2019-01-09 11:51:24 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:51:24 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 326
+ERROR - 2019-01-09 11:51:24 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:51:24 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 327
+ERROR - 2019-01-09 11:51:24 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:51:24 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:51:24 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 327
+ERROR - 2019-01-09 11:51:24 --> Severity: Notice --> Undefined variable: record C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 356
+ERROR - 2019-01-09 11:51:24 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:51:24 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 356
+ERROR - 2019-01-09 11:51:24 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:51:25 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:51:25 --> Severity: Notice --> Undefined property: stdClass::$amountreceived C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 315
+ERROR - 2019-01-09 11:51:25 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 324
+ERROR - 2019-01-09 11:51:25 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:51:25 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 324
+ERROR - 2019-01-09 11:51:25 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:51:25 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 325
+ERROR - 2019-01-09 11:51:25 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:51:25 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:51:25 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 325
+ERROR - 2019-01-09 11:51:25 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 326
+ERROR - 2019-01-09 11:51:25 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:51:25 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 326
+ERROR - 2019-01-09 11:51:25 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:51:25 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:51:25 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 327
+ERROR - 2019-01-09 11:51:26 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:51:26 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 327
+ERROR - 2019-01-09 11:51:26 --> Severity: Notice --> Undefined variable: record C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 356
+ERROR - 2019-01-09 11:51:26 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:51:26 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:51:26 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 356
+ERROR - 2019-01-09 11:51:26 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:51:26 --> Severity: Notice --> Undefined property: stdClass::$amountreceived C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 315
+ERROR - 2019-01-09 11:51:26 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:51:26 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 324
+ERROR - 2019-01-09 11:51:26 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 324
+ERROR - 2019-01-09 11:51:26 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:51:26 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:51:26 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 325
+ERROR - 2019-01-09 11:51:27 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 325
+ERROR - 2019-01-09 11:51:27 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:51:27 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 326
+ERROR - 2019-01-09 11:51:27 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:51:27 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 326
+ERROR - 2019-01-09 11:51:27 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:51:27 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:51:27 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 327
+ERROR - 2019-01-09 11:51:27 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 327
+ERROR - 2019-01-09 11:51:27 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:51:27 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:51:27 --> Severity: Notice --> Undefined variable: record C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 356
+ERROR - 2019-01-09 11:51:27 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 356
+ERROR - 2019-01-09 11:51:27 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:51:27 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:51:27 --> Severity: Notice --> Undefined property: stdClass::$amountreceived C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 315
+ERROR - 2019-01-09 11:51:28 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:51:28 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 324
+ERROR - 2019-01-09 11:51:28 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:51:28 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 324
+ERROR - 2019-01-09 11:51:28 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:51:28 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 325
+ERROR - 2019-01-09 11:51:28 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 325
+ERROR - 2019-01-09 11:51:28 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:51:28 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 326
+ERROR - 2019-01-09 11:51:28 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:51:28 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:51:28 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 326
+ERROR - 2019-01-09 11:51:28 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:51:28 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 327
+ERROR - 2019-01-09 11:51:29 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:51:29 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 327
+ERROR - 2019-01-09 11:51:29 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:51:29 --> Severity: Notice --> Undefined variable: record C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 356
+ERROR - 2019-01-09 11:51:29 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 356
+ERROR - 2019-01-09 11:51:29 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:51:29 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:51:29 --> Severity: Notice --> Undefined property: stdClass::$amountreceived C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 315
+ERROR - 2019-01-09 11:51:29 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 324
+ERROR - 2019-01-09 11:51:29 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:51:29 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:51:29 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 324
+ERROR - 2019-01-09 11:51:29 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:51:29 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 325
+ERROR - 2019-01-09 11:51:30 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 325
+ERROR - 2019-01-09 11:51:30 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:51:30 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 326
+ERROR - 2019-01-09 11:51:30 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:51:30 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:51:30 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:51:30 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:51:30 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:51:30 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:51:30 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:51:31 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:51:31 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:51:31 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:51:31 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:51:31 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:51:31 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:51:31 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:51:31 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:51:32 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:51:32 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:51:32 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:51:32 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:51:32 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:51:32 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:51:32 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:51:33 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:51:33 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:51:33 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:51:33 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:51:33 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:51:33 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:51:33 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:51:33 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:51:34 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:51:34 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:51:34 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:51:34 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:51:34 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:51:34 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:51:34 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:51:35 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:51:35 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:51:35 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:51:35 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:51:35 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:51:35 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:51:35 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:51:35 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:51:36 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:51:36 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:51:36 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:51:36 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:51:36 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:51:36 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:51:36 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:51:37 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:51:37 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:51:37 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:51:37 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:51:37 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:51:37 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:51:37 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:51:37 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:51:38 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:51:38 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:51:38 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:51:38 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:51:38 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:51:38 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:51:38 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:51:39 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:51:39 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:51:39 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:51:39 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:51:39 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:51:39 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:51:39 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:51:40 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:51:40 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:51:40 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:51:40 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:51:40 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:51:40 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:51:40 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:51:40 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:51:41 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:51:41 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:51:41 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:51:41 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:51:41 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:51:41 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:51:41 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:51:42 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:51:42 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:51:42 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:51:42 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:51:42 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:51:42 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:51:42 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:51:43 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:51:43 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:51:43 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:51:43 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:51:43 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:51:44 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:51:44 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:51:44 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:51:44 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:51:45 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:51:45 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:51:45 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:51:45 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:51:46 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:51:46 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:51:46 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:51:46 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:51:46 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:51:46 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:51:47 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:51:47 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:51:47 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:51:47 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:51:47 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:51:47 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:51:47 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:51:47 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:51:47 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:51:48 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:51:48 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:51:48 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:51:48 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:51:48 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:51:48 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:51:48 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:51:48 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:51:48 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:51:48 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:51:49 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:51:49 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:51:49 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:51:49 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:51:49 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:51:49 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:51:49 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:51:49 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:51:49 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:51:50 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:51:50 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:51:50 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:51:50 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:51:50 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:51:50 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:51:50 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:51:50 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:51:50 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:51:51 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:51:51 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:51:51 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:51:51 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:51:51 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:51:51 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:51:51 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:51:51 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:51:51 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:51:51 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:51:51 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:51:51 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:51:52 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:51:52 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:51:52 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:51:52 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:51:52 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:51:52 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:51:52 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:51:52 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:51:52 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:51:52 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:51:52 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:51:53 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:51:53 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:51:53 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:51:53 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:51:53 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:51:53 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:51:53 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:51:54 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:51:54 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:51:54 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:51:54 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:51:54 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:51:54 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:51:54 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:51:55 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:51:55 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:51:55 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:51:55 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:51:55 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:51:55 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:51:55 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:51:56 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:51:56 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:51:56 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:51:56 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:51:56 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:51:56 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:51:57 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:51:57 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:51:57 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:51:57 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:51:57 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:51:57 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:51:57 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:51:58 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:51:58 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:51:58 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:51:58 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:51:58 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:51:58 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:51:58 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:51:59 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:51:59 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:51:59 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:51:59 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:51:59 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:51:59 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:52:00 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:52:00 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:52:00 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:52:00 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:52:00 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:52:00 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:52:01 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:52:01 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:52:01 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:52:01 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:52:01 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:52:01 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:52:02 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:52:02 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:52:02 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:52:02 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:52:02 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:52:02 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:52:03 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:52:03 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:52:03 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:52:03 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:52:03 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:52:04 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:52:04 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:52:04 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:52:04 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:52:04 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:52:04 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:52:04 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:52:05 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:52:05 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:52:05 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:52:05 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:52:05 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:52:05 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:52:05 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:52:06 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:52:06 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:52:06 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:52:06 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:52:06 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:52:06 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:52:06 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:52:07 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:52:07 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:52:07 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:52:07 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:52:07 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:52:07 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:52:07 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:52:08 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:52:08 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:52:08 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:52:08 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:52:08 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:52:08 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:52:08 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:52:09 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:52:09 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:52:09 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:52:09 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:52:09 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:52:10 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:52:10 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:52:10 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:52:10 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:52:10 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:52:11 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:52:11 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:52:11 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:52:11 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:52:12 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:52:12 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:52:12 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:52:12 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:52:12 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:52:13 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:52:13 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:52:13 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:52:13 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:52:13 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:52:13 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:52:14 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:52:14 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:52:14 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:52:14 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:52:14 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:52:14 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:52:15 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:52:15 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:52:15 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:52:15 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:52:15 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:52:15 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:52:16 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:52:16 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:52:16 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:52:16 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:52:16 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:52:16 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:52:16 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:52:16 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:52:17 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:52:17 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:52:17 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:52:17 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:52:17 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:52:17 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:52:17 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:52:18 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:52:18 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:52:18 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:52:18 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:52:18 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:52:19 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:52:19 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:52:19 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:52:19 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:52:19 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:52:19 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:52:19 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:52:20 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:52:20 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:52:20 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:52:20 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:52:20 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:52:20 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:52:20 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:52:21 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:52:21 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:52:21 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:52:21 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:52:21 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:52:21 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:52:22 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:52:22 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:52:22 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:52:22 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:52:22 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:52:22 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:52:22 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:52:23 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:52:23 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:52:23 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:52:23 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:52:24 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:52:24 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:52:24 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:52:24 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:52:24 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:52:25 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:52:25 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:52:25 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:52:25 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:52:25 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:52:25 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:52:26 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:52:26 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:52:26 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:52:26 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:52:26 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:52:26 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:52:26 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:52:27 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:52:27 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:52:27 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:52:27 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:52:27 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:52:27 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:52:27 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:52:28 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:52:28 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:52:28 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:52:28 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:52:28 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:52:28 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:52:28 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:52:29 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:52:29 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:52:29 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:52:29 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:52:29 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:52:29 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:52:29 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:52:30 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:52:30 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:52:30 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:52:30 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:52:30 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:52:30 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:52:30 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:52:31 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:52:31 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:52:31 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:52:31 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:52:31 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:52:31 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:52:31 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:52:31 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:52:32 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:52:32 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:52:32 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:52:32 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:52:32 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:52:32 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:52:32 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:52:33 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:52:33 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:52:33 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:52:33 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:52:33 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:52:33 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:52:33 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:52:34 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:52:34 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:52:34 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:52:34 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:52:34 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:52:34 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:52:34 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:52:35 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:52:35 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:52:35 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:52:35 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:52:35 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:52:35 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:52:35 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:52:35 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:52:36 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:52:36 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:52:36 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:52:36 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:52:36 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:52:36 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:52:36 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:52:37 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:52:37 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:52:37 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:52:37 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:52:37 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:52:37 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:52:37 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:52:38 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:52:38 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:52:38 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:52:38 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:52:38 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:52:38 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:52:38 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:52:39 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:52:39 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:52:39 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:52:39 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:52:39 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:52:39 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:52:39 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:52:40 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:52:40 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:52:40 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:52:40 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:52:40 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:52:40 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:52:40 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:52:41 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:52:41 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:52:41 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:52:41 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:52:41 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:52:41 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:52:41 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:52:42 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:52:42 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:52:42 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:52:42 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:52:42 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:52:42 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:52:42 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:52:43 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:52:43 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:52:43 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:52:43 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:52:43 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:52:43 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:52:43 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:52:43 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:52:44 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:52:44 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:52:44 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:52:44 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:52:44 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:52:44 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:52:44 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:52:45 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:52:45 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:52:45 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:52:45 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:52:45 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:52:45 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:52:45 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:52:46 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:52:46 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:52:46 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:52:46 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:52:46 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:52:46 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:52:46 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:52:47 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:52:47 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:52:47 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:52:47 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:52:47 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:52:47 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:52:47 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:52:48 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:52:48 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:52:48 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:52:48 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:52:48 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:52:48 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:52:48 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:52:48 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:52:49 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:52:49 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:52:49 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:52:49 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:52:49 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:52:49 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:52:49 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:52:50 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:52:50 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:52:50 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:52:50 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:52:50 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:52:50 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:52:50 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:52:51 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:52:51 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:52:51 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:52:51 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:52:51 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:52:51 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:52:51 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:52:52 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:52:52 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:52:52 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:52:52 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:52:52 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:52:52 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:52:52 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:52:53 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:52:53 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:52:53 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:52:53 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:52:53 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:52:53 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:52:53 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:52:54 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:52:54 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:52:54 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:52:54 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:52:54 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:52:54 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:52:54 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:52:55 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:52:55 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:52:55 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:52:55 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:52:55 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:52:55 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:52:55 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:52:56 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:52:56 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:52:56 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:52:56 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:52:56 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:52:56 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:52:56 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:52:56 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:52:57 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:52:57 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:52:57 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:52:57 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:52:57 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:52:57 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:52:57 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:52:58 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:52:58 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:52:58 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:52:58 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:52:58 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:52:58 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:52:58 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:52:59 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:52:59 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:52:59 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:52:59 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:52:59 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:52:59 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:52:59 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:53:00 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:53:00 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:53:00 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:53:00 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:53:00 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:53:00 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:53:00 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:53:01 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:53:01 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:53:01 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:53:01 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:53:01 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:53:01 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:53:01 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:53:02 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:53:02 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:53:02 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:53:02 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:53:02 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:53:02 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:53:02 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:53:03 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:53:03 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:53:03 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:53:03 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:53:03 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:53:03 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:53:03 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:53:04 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:53:04 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:53:04 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:53:04 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:53:04 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:53:04 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:53:04 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:53:05 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:53:05 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:53:05 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:53:05 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:53:05 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:53:05 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:53:05 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:53:06 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:53:06 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:53:06 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:53:06 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:53:06 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:53:06 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:53:06 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:53:06 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:53:07 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:53:07 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:53:07 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:53:07 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:53:07 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:53:07 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:53:07 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:53:08 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:53:08 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:53:08 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:53:08 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:53:08 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:53:08 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:53:08 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:53:09 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:53:09 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:53:09 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:53:09 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:53:09 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:53:09 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:53:10 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:53:10 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:53:11 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:53:11 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:53:11 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:53:11 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:53:12 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:53:12 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:53:12 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:53:12 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:53:12 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:53:13 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:53:13 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:53:13 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:53:13 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:53:13 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:53:13 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:53:13 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:53:14 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:53:14 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:53:14 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:53:14 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:53:14 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:53:14 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:53:14 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:53:14 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:53:15 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:53:15 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:53:15 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:53:15 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:53:15 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:53:15 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:53:15 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:53:16 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:53:16 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:53:16 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:53:16 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:53:16 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:53:16 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:53:16 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:53:17 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:53:17 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:53:17 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:53:17 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:53:17 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:53:17 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:53:17 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:53:18 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:53:18 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:53:18 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:53:18 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:53:18 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:53:18 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:53:18 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:53:19 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:53:19 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:53:19 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:53:19 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:53:19 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:53:19 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:53:19 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:53:20 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:53:20 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:53:20 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:53:20 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:53:20 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:53:20 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:53:20 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:53:20 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:53:21 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:53:21 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:53:21 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:53:21 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:53:21 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:53:21 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:53:22 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:53:22 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:53:22 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:53:22 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:53:22 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:53:22 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:53:22 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:53:23 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:53:23 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:53:23 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:53:23 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:53:23 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:53:23 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:53:23 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:53:24 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:53:24 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:53:24 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:53:24 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:53:24 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:53:24 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:53:24 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:53:25 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:53:25 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:53:25 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:53:25 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:53:25 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:53:25 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:53:25 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:53:26 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:53:26 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:53:26 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:53:26 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:53:26 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:53:26 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:53:26 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:53:27 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:53:27 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:53:27 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:53:27 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:53:27 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:53:27 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:53:27 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:53:28 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:53:28 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:53:28 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:53:28 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:53:28 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:53:28 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:53:28 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:53:29 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:53:29 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:53:29 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:53:29 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:53:29 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:53:29 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:53:29 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:53:29 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:53:30 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:53:30 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:53:30 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:53:30 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:53:30 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:53:30 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:53:30 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:53:31 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:53:31 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:53:31 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:53:31 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:53:31 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:53:31 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:53:32 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:53:32 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:53:32 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:53:32 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:53:32 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:53:32 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:53:32 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:53:33 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:53:33 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:53:33 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:53:33 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:53:34 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:53:34 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:53:34 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:53:34 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:53:35 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:53:35 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:53:35 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:53:35 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:53:35 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:53:36 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:53:36 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:53:36 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:53:36 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:53:36 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:53:36 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:53:37 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:53:37 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:53:37 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:53:37 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:53:37 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:53:37 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:53:39 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:53:39 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:53:39 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:53:39 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:53:39 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:53:40 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:53:40 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:53:40 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:53:40 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:53:40 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:53:40 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:53:41 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:53:41 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:53:41 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:53:41 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:53:41 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:53:42 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:53:42 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:53:42 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:53:42 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:53:42 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:53:42 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:53:43 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:53:43 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:53:43 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:53:43 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:53:43 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:53:44 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:53:44 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:53:44 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:53:44 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:53:44 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:53:45 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:53:45 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:53:45 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:53:45 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:53:45 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:53:45 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:53:46 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:53:46 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:53:46 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:53:46 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:53:46 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:53:46 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:53:46 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:53:47 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:53:47 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:53:47 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:53:47 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:53:47 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:53:47 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:53:47 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:53:47 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:53:48 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:53:48 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:53:48 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:53:48 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:53:48 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:53:48 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:53:48 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:53:49 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:53:49 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:53:49 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:53:49 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:53:49 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:53:50 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:53:50 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:53:50 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:53:50 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:53:50 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:53:50 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:53:50 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:53:51 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:53:51 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:53:51 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:53:51 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:53:51 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:53:51 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:53:51 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:53:52 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:53:52 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:53:52 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:53:52 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:53:52 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:53:52 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:53:53 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:53:53 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:53:53 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:53:53 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:53:53 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:53:53 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:53:53 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:53:54 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:53:54 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:53:54 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:53:54 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:53:54 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:53:54 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:53:54 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:53:55 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:53:55 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:53:55 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:53:55 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:53:55 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:53:55 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:53:55 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:53:56 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:53:56 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:53:56 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:53:56 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:53:56 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:53:56 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:53:56 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:53:57 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:53:57 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:53:57 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:53:57 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:53:57 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:53:57 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:53:57 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:53:58 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:53:58 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:53:58 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:53:58 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:53:58 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:53:58 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:53:58 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:53:59 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:53:59 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:53:59 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:53:59 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:53:59 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:53:59 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:53:59 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:54:00 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:54:00 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:54:00 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:54:00 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:54:00 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:54:00 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:54:01 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:54:01 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:54:01 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:54:01 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:54:01 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:54:01 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:54:01 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:54:01 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:54:02 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:54:02 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:54:02 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:54:02 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:54:02 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:54:02 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:54:03 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:54:03 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:54:03 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:54:03 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:54:03 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:54:03 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:54:03 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:54:04 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:54:04 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:54:04 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:54:04 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:54:04 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:54:04 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:54:04 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:54:05 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:54:05 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:54:05 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:54:05 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:54:05 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:54:05 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:54:05 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:54:06 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:54:06 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:54:06 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:54:06 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:54:06 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:54:06 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:54:06 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:54:07 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:54:07 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:54:07 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:54:07 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:54:07 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:54:07 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:54:07 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:54:08 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:54:08 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:54:08 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:54:08 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:54:08 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:54:08 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:54:08 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:54:09 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:54:09 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:54:09 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:54:09 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:54:09 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:54:09 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:54:09 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:54:10 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:54:10 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:54:10 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:54:10 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:54:10 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:54:10 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:54:10 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:54:11 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:54:11 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:54:11 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:54:11 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:54:11 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:54:11 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:54:11 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:54:12 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:54:12 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:54:12 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:54:12 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:54:12 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:54:12 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:54:12 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:54:13 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:54:13 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:54:13 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:54:13 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:54:13 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:54:13 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:54:13 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:54:14 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:54:14 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:54:14 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:54:14 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:54:14 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:54:14 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:54:14 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:54:15 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:54:15 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:54:15 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:54:15 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:54:15 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:54:15 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:54:16 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:54:16 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:54:16 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:54:16 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:54:16 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:54:16 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:54:17 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:54:17 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:54:17 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:54:17 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:54:17 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:54:18 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:54:18 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:54:18 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:54:18 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:54:18 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:54:19 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:54:19 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:54:19 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:54:19 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:54:19 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:54:19 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:54:19 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:54:20 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:54:20 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:54:20 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:54:20 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:54:20 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:54:20 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:54:20 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:54:21 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:54:21 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:54:21 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:54:21 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:54:21 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:54:22 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:54:22 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:54:22 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:54:22 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:54:22 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:54:22 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:54:23 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:54:23 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:54:23 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:54:23 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:54:23 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:54:23 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:54:24 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:54:24 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:54:24 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:54:24 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:54:24 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:54:24 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:54:24 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:54:25 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:54:25 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:54:25 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:54:25 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:54:25 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:54:26 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:54:26 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:54:26 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:54:26 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:54:26 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:54:27 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:54:27 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:54:27 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:54:27 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:54:27 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:54:28 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:54:28 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:54:28 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:54:28 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:54:28 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:54:29 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:54:29 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:54:29 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:54:29 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:54:29 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:54:29 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:54:29 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:54:30 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:54:30 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:54:30 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:54:30 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:54:30 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:54:30 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:54:30 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:54:31 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:54:31 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:54:31 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:54:31 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:54:31 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:54:31 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:54:31 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:54:32 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:54:32 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:54:32 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:54:32 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:54:32 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:54:32 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:54:33 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:54:33 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:54:33 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:54:33 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:54:33 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:54:33 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:54:33 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 11:54:34 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 12:02:58 --> Severity: Notice --> Undefined variable: openingbalance C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 6
+ERROR - 2019-01-09 12:02:59 --> Severity: Warning --> Invalid argument supplied for foreach() C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 6
+ERROR - 2019-01-09 12:02:59 --> Severity: Notice --> Undefined variable: financialyear C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 10
+ERROR - 2019-01-09 12:02:59 --> Severity: Warning --> Invalid argument supplied for foreach() C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 10
+ERROR - 2019-01-09 12:02:59 --> Severity: Notice --> Undefined variable: customerledger C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 138
+ERROR - 2019-01-09 12:02:59 --> Severity: Warning --> Invalid argument supplied for foreach() C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 138
+ERROR - 2019-01-09 12:02:59 --> Severity: Notice --> Undefined variable: clientname C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 143
+ERROR - 2019-01-09 12:02:59 --> Severity: Notice --> Undefined variable: tot_amount C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 144
+ERROR - 2019-01-09 12:03:00 --> Severity: Notice --> Undefined variable: supplierid C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 148
+ERROR - 2019-01-09 12:03:00 --> Severity: Notice --> Undefined variable: suppliername C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 149
+ERROR - 2019-01-09 12:06:38 --> Severity: Notice --> Undefined variable: suppliername C:\xampp\htdocs\ria\application\controllers\cashbook.php 1910
+ERROR - 2019-01-09 12:06:39 --> Severity: Notice --> Undefined variable: Customer C:\xampp\htdocs\ria\application\controllers\cashbook.php 1916
+ERROR - 2019-01-09 12:06:39 --> Severity: Notice --> Undefined variable: financialyear C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 10
+ERROR - 2019-01-09 12:06:39 --> Severity: Warning --> Invalid argument supplied for foreach() C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 10
+ERROR - 2019-01-09 12:06:40 --> Severity: Notice --> Undefined variable: clientname C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 143
+ERROR - 2019-01-09 12:06:40 --> Severity: Notice --> Undefined variable: tot_amount C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 144
+ERROR - 2019-01-09 12:07:02 --> Severity: Notice --> Undefined variable: suppliername C:\xampp\htdocs\ria\application\controllers\cashbook.php 1910
+ERROR - 2019-01-09 12:07:02 --> Severity: Notice --> Undefined variable: Customer C:\xampp\htdocs\ria\application\controllers\cashbook.php 1916
+ERROR - 2019-01-09 12:07:03 --> Severity: Notice --> Undefined variable: financialyear C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 10
+ERROR - 2019-01-09 12:07:03 --> Severity: Warning --> Invalid argument supplied for foreach() C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 10
+ERROR - 2019-01-09 12:07:03 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 12:07:03 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 12:07:04 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 12:07:04 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 12:07:04 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 12:07:04 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 12:07:04 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 12:07:04 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 12:07:04 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 12:07:05 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 12:07:05 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 12:07:05 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 12:07:05 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 12:07:05 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 12:07:05 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 12:07:05 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 12:07:06 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 12:07:06 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 12:07:06 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 12:07:06 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 12:07:06 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 12:07:06 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 12:07:06 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 12:07:07 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 12:07:07 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 12:07:07 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 12:07:07 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 12:07:07 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 12:07:07 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 12:07:08 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 12:07:08 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 12:07:08 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 12:07:08 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 12:07:08 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 12:07:08 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 12:07:08 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 12:07:09 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 12:07:09 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 12:07:09 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 12:07:09 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 12:07:09 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 12:07:09 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 12:07:09 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 12:07:10 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 12:07:10 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 12:07:10 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 12:07:10 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 12:07:10 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 12:07:10 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 12:07:11 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 12:07:11 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 12:07:11 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 12:07:11 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 12:07:11 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 12:07:11 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 12:07:11 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 12:07:12 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 12:07:12 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 12:07:12 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 12:07:12 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 12:07:12 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 12:07:12 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 12:07:13 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 12:07:13 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 12:07:13 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 12:07:13 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 12:07:13 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 12:07:13 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 12:07:14 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 12:07:14 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 12:07:14 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 12:07:14 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 12:07:14 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 12:07:14 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 12:07:14 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 12:07:15 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 12:07:15 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 12:07:15 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 12:07:15 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 12:07:15 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 12:07:15 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 12:07:16 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 12:07:16 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 12:07:16 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 12:07:16 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 12:07:16 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 12:07:16 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 12:07:16 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 12:07:17 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 12:07:17 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 12:07:17 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 12:07:17 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 12:07:17 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 12:07:17 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 12:07:17 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 12:07:18 --> Severity: Notice --> Undefined variable: tot_amount C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 144
+ERROR - 2019-01-09 12:07:18 --> Severity: Notice --> Undefined property: stdClass::$amountreceived C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 315
+ERROR - 2019-01-09 12:07:18 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 324
+ERROR - 2019-01-09 12:07:18 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 324
+ERROR - 2019-01-09 12:07:18 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 325
+ERROR - 2019-01-09 12:07:18 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 325
+ERROR - 2019-01-09 12:07:18 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 326
+ERROR - 2019-01-09 12:07:19 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 326
+ERROR - 2019-01-09 12:07:19 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 327
+ERROR - 2019-01-09 12:07:19 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 327
+ERROR - 2019-01-09 12:07:19 --> Severity: Notice --> Undefined variable: tot_balance C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 353
+ERROR - 2019-01-09 12:07:19 --> Severity: Notice --> Undefined variable: record C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 356
+ERROR - 2019-01-09 12:07:19 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 356
+ERROR - 2019-01-09 12:07:19 --> Severity: Notice --> Undefined property: stdClass::$amountreceived C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 315
+ERROR - 2019-01-09 12:07:20 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 324
+ERROR - 2019-01-09 12:07:20 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 324
+ERROR - 2019-01-09 12:07:20 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 325
+ERROR - 2019-01-09 12:07:20 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 325
+ERROR - 2019-01-09 12:07:20 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 326
+ERROR - 2019-01-09 12:07:20 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 326
+ERROR - 2019-01-09 12:07:20 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 327
+ERROR - 2019-01-09 12:07:21 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 327
+ERROR - 2019-01-09 12:07:21 --> Severity: Notice --> Undefined variable: record C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 356
+ERROR - 2019-01-09 12:07:21 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 356
+ERROR - 2019-01-09 12:07:21 --> Severity: Notice --> Undefined property: stdClass::$amountreceived C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 315
+ERROR - 2019-01-09 12:07:21 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 324
+ERROR - 2019-01-09 12:07:21 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 324
+ERROR - 2019-01-09 12:07:21 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 325
+ERROR - 2019-01-09 12:07:22 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 325
+ERROR - 2019-01-09 12:07:22 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 326
+ERROR - 2019-01-09 12:07:22 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 326
+ERROR - 2019-01-09 12:07:22 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 327
+ERROR - 2019-01-09 12:07:22 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 327
+ERROR - 2019-01-09 12:07:23 --> Severity: Notice --> Undefined variable: record C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 356
+ERROR - 2019-01-09 12:07:23 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 356
+ERROR - 2019-01-09 12:07:23 --> Severity: Notice --> Undefined property: stdClass::$amountreceived C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 315
+ERROR - 2019-01-09 12:07:23 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 324
+ERROR - 2019-01-09 12:07:24 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 324
+ERROR - 2019-01-09 12:07:24 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 325
+ERROR - 2019-01-09 12:07:24 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 325
+ERROR - 2019-01-09 12:07:24 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 326
+ERROR - 2019-01-09 12:07:24 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 326
+ERROR - 2019-01-09 12:07:25 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 327
+ERROR - 2019-01-09 12:07:25 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 327
+ERROR - 2019-01-09 12:07:25 --> Severity: Notice --> Undefined variable: record C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 356
+ERROR - 2019-01-09 12:07:25 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 356
+ERROR - 2019-01-09 12:07:25 --> Severity: Notice --> Undefined property: stdClass::$amountreceived C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 315
+ERROR - 2019-01-09 12:07:26 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 324
+ERROR - 2019-01-09 12:07:26 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 324
+ERROR - 2019-01-09 12:07:26 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 325
+ERROR - 2019-01-09 12:07:26 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 325
+ERROR - 2019-01-09 12:07:26 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 326
+ERROR - 2019-01-09 12:07:27 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 326
+ERROR - 2019-01-09 12:07:27 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 327
+ERROR - 2019-01-09 12:07:27 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 327
+ERROR - 2019-01-09 12:07:27 --> Severity: Notice --> Undefined variable: record C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 356
+ERROR - 2019-01-09 12:07:27 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 356
+ERROR - 2019-01-09 12:07:27 --> Severity: Notice --> Undefined property: stdClass::$amountreceived C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 315
+ERROR - 2019-01-09 12:07:28 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 324
+ERROR - 2019-01-09 12:07:28 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 324
+ERROR - 2019-01-09 12:07:28 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 325
+ERROR - 2019-01-09 12:07:28 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 325
+ERROR - 2019-01-09 12:07:28 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 326
+ERROR - 2019-01-09 12:07:28 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 326
+ERROR - 2019-01-09 12:07:29 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 327
+ERROR - 2019-01-09 12:07:29 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 327
+ERROR - 2019-01-09 12:07:29 --> Severity: Notice --> Undefined variable: record C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 356
+ERROR - 2019-01-09 12:07:29 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 356
+ERROR - 2019-01-09 12:07:29 --> Severity: Notice --> Undefined property: stdClass::$amountreceived C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 315
+ERROR - 2019-01-09 12:07:29 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 324
+ERROR - 2019-01-09 12:07:30 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 324
+ERROR - 2019-01-09 12:07:30 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 325
+ERROR - 2019-01-09 12:07:30 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 325
+ERROR - 2019-01-09 12:07:30 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 326
+ERROR - 2019-01-09 12:07:30 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 326
+ERROR - 2019-01-09 12:07:30 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 327
+ERROR - 2019-01-09 12:07:30 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 327
+ERROR - 2019-01-09 12:07:31 --> Severity: Notice --> Undefined variable: record C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 356
+ERROR - 2019-01-09 12:07:31 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 356
+ERROR - 2019-01-09 12:07:31 --> Severity: Notice --> Undefined property: stdClass::$amountreceived C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 315
+ERROR - 2019-01-09 12:07:31 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 324
+ERROR - 2019-01-09 12:07:31 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 324
+ERROR - 2019-01-09 12:07:32 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 325
+ERROR - 2019-01-09 12:07:32 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 325
+ERROR - 2019-01-09 12:07:32 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 326
+ERROR - 2019-01-09 12:07:32 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 326
+ERROR - 2019-01-09 12:07:32 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 327
+ERROR - 2019-01-09 12:07:32 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 327
+ERROR - 2019-01-09 12:07:33 --> Severity: Notice --> Undefined variable: record C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 356
+ERROR - 2019-01-09 12:07:33 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 356
+ERROR - 2019-01-09 12:07:33 --> Severity: Notice --> Undefined property: stdClass::$amountreceived C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 315
+ERROR - 2019-01-09 12:07:33 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 324
+ERROR - 2019-01-09 12:07:33 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 324
+ERROR - 2019-01-09 12:07:34 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 325
+ERROR - 2019-01-09 12:07:34 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 325
+ERROR - 2019-01-09 12:07:34 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 326
+ERROR - 2019-01-09 12:07:34 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 326
+ERROR - 2019-01-09 12:07:34 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 327
+ERROR - 2019-01-09 12:07:34 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 327
+ERROR - 2019-01-09 12:07:35 --> Severity: Notice --> Undefined variable: record C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 356
+ERROR - 2019-01-09 12:07:35 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 356
+ERROR - 2019-01-09 12:07:35 --> Severity: Notice --> Undefined property: stdClass::$amountreceived C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 315
+ERROR - 2019-01-09 12:07:35 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 324
+ERROR - 2019-01-09 12:07:35 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 324
+ERROR - 2019-01-09 12:07:35 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 325
+ERROR - 2019-01-09 12:07:35 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 325
+ERROR - 2019-01-09 12:07:36 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 326
+ERROR - 2019-01-09 12:07:36 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 326
+ERROR - 2019-01-09 12:07:36 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 327
+ERROR - 2019-01-09 12:07:36 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 327
+ERROR - 2019-01-09 12:07:36 --> Severity: Notice --> Undefined variable: record C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 356
+ERROR - 2019-01-09 12:07:36 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 356
+ERROR - 2019-01-09 12:07:37 --> Severity: Notice --> Undefined property: stdClass::$amountreceived C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 315
+ERROR - 2019-01-09 12:07:37 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 324
+ERROR - 2019-01-09 12:07:37 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 324
+ERROR - 2019-01-09 12:07:37 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 325
+ERROR - 2019-01-09 12:07:37 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 325
+ERROR - 2019-01-09 12:07:38 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 326
+ERROR - 2019-01-09 12:07:38 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 326
+ERROR - 2019-01-09 12:07:38 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 327
+ERROR - 2019-01-09 12:07:38 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 327
+ERROR - 2019-01-09 12:07:38 --> Severity: Notice --> Undefined variable: record C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 356
+ERROR - 2019-01-09 12:07:39 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 356
+ERROR - 2019-01-09 12:07:39 --> Severity: Notice --> Undefined property: stdClass::$amountreceived C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 315
+ERROR - 2019-01-09 12:07:39 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 324
+ERROR - 2019-01-09 12:07:39 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 324
+ERROR - 2019-01-09 12:07:39 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 325
+ERROR - 2019-01-09 12:07:40 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 325
+ERROR - 2019-01-09 12:07:40 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 326
+ERROR - 2019-01-09 12:07:40 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 326
+ERROR - 2019-01-09 12:07:40 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 327
+ERROR - 2019-01-09 12:07:40 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 327
+ERROR - 2019-01-09 12:07:41 --> Severity: Notice --> Undefined variable: record C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 356
+ERROR - 2019-01-09 12:07:41 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 356
+ERROR - 2019-01-09 12:07:41 --> Severity: Notice --> Undefined property: stdClass::$amountreceived C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 315
+ERROR - 2019-01-09 12:07:41 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 324
+ERROR - 2019-01-09 12:07:41 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 324
+ERROR - 2019-01-09 12:07:42 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 325
+ERROR - 2019-01-09 12:07:42 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 325
+ERROR - 2019-01-09 12:07:42 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 326
+ERROR - 2019-01-09 12:07:42 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 326
+ERROR - 2019-01-09 12:07:42 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 327
+ERROR - 2019-01-09 12:07:42 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 327
+ERROR - 2019-01-09 12:07:43 --> Severity: Notice --> Undefined variable: record C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 356
+ERROR - 2019-01-09 12:07:43 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 356
+ERROR - 2019-01-09 12:07:43 --> Severity: Notice --> Undefined property: stdClass::$amountreceived C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 315
+ERROR - 2019-01-09 12:07:43 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 324
+ERROR - 2019-01-09 12:07:43 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 324
+ERROR - 2019-01-09 12:07:44 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 325
+ERROR - 2019-01-09 12:07:44 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 325
+ERROR - 2019-01-09 12:07:44 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 326
+ERROR - 2019-01-09 12:07:44 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 326
+ERROR - 2019-01-09 12:07:45 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 327
+ERROR - 2019-01-09 12:07:45 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 327
+ERROR - 2019-01-09 12:07:45 --> Severity: Notice --> Undefined variable: record C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 356
+ERROR - 2019-01-09 12:07:46 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 356
+ERROR - 2019-01-09 12:07:46 --> Severity: Notice --> Undefined property: stdClass::$amountreceived C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 315
+ERROR - 2019-01-09 12:07:46 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 324
+ERROR - 2019-01-09 12:07:46 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 324
+ERROR - 2019-01-09 12:07:46 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 325
+ERROR - 2019-01-09 12:07:46 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 325
+ERROR - 2019-01-09 12:07:47 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 326
+ERROR - 2019-01-09 12:07:47 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 326
+ERROR - 2019-01-09 12:07:47 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 327
+ERROR - 2019-01-09 12:07:47 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 327
+ERROR - 2019-01-09 12:07:47 --> Severity: Notice --> Undefined variable: record C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 356
+ERROR - 2019-01-09 12:07:48 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 356
+ERROR - 2019-01-09 12:07:48 --> Severity: Notice --> Undefined property: stdClass::$amountreceived C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 315
+ERROR - 2019-01-09 12:07:48 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 324
+ERROR - 2019-01-09 12:07:48 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 324
+ERROR - 2019-01-09 12:07:48 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 325
+ERROR - 2019-01-09 12:07:49 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 325
+ERROR - 2019-01-09 12:07:49 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 326
+ERROR - 2019-01-09 12:07:49 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 326
+ERROR - 2019-01-09 12:07:49 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 327
+ERROR - 2019-01-09 12:07:50 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 327
+ERROR - 2019-01-09 12:07:50 --> Severity: Notice --> Undefined variable: record C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 356
+ERROR - 2019-01-09 12:07:50 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 356
+ERROR - 2019-01-09 12:07:50 --> Severity: Notice --> Undefined property: stdClass::$amountreceived C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 315
+ERROR - 2019-01-09 12:07:50 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 324
+ERROR - 2019-01-09 12:07:51 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 324
+ERROR - 2019-01-09 12:07:51 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 325
+ERROR - 2019-01-09 12:07:51 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 325
+ERROR - 2019-01-09 12:07:51 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 326
+ERROR - 2019-01-09 12:07:51 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 326
+ERROR - 2019-01-09 12:07:52 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 327
+ERROR - 2019-01-09 12:07:52 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 327
+ERROR - 2019-01-09 12:07:52 --> Severity: Notice --> Undefined variable: record C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 356
+ERROR - 2019-01-09 12:07:52 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 356
+ERROR - 2019-01-09 12:07:52 --> Severity: Notice --> Undefined property: stdClass::$amountreceived C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 315
+ERROR - 2019-01-09 12:07:53 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 324
+ERROR - 2019-01-09 12:07:53 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 324
+ERROR - 2019-01-09 12:07:53 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 325
+ERROR - 2019-01-09 12:07:53 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 325
+ERROR - 2019-01-09 12:07:54 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 326
+ERROR - 2019-01-09 12:07:54 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 326
+ERROR - 2019-01-09 12:07:54 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 327
+ERROR - 2019-01-09 12:07:54 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 327
+ERROR - 2019-01-09 12:07:54 --> Severity: Notice --> Undefined variable: record C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 356
+ERROR - 2019-01-09 12:07:55 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 356
+ERROR - 2019-01-09 12:07:55 --> Severity: Notice --> Undefined property: stdClass::$amountreceived C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 315
+ERROR - 2019-01-09 12:07:55 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 324
+ERROR - 2019-01-09 12:07:55 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 324
+ERROR - 2019-01-09 12:07:55 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 325
+ERROR - 2019-01-09 12:07:55 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 325
+ERROR - 2019-01-09 12:07:56 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 326
+ERROR - 2019-01-09 12:07:56 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 326
+ERROR - 2019-01-09 12:07:56 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 327
+ERROR - 2019-01-09 12:07:56 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 327
+ERROR - 2019-01-09 12:07:56 --> Severity: Notice --> Undefined variable: record C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 356
+ERROR - 2019-01-09 12:07:56 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 356
+ERROR - 2019-01-09 12:07:56 --> Severity: Notice --> Undefined property: stdClass::$amountreceived C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 315
+ERROR - 2019-01-09 12:07:57 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 324
+ERROR - 2019-01-09 12:07:57 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 324
+ERROR - 2019-01-09 12:07:57 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 325
+ERROR - 2019-01-09 12:07:57 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 325
+ERROR - 2019-01-09 12:07:57 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 326
+ERROR - 2019-01-09 12:07:58 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 326
+ERROR - 2019-01-09 12:07:58 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 327
+ERROR - 2019-01-09 12:07:58 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 327
+ERROR - 2019-01-09 12:07:58 --> Severity: Notice --> Undefined variable: record C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 356
+ERROR - 2019-01-09 12:07:58 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 356
+ERROR - 2019-01-09 12:07:59 --> Severity: Notice --> Undefined property: stdClass::$amountreceived C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 315
+ERROR - 2019-01-09 12:07:59 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 324
+ERROR - 2019-01-09 12:07:59 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 324
+ERROR - 2019-01-09 12:07:59 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 325
+ERROR - 2019-01-09 12:07:59 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 325
+ERROR - 2019-01-09 12:07:59 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 326
+ERROR - 2019-01-09 12:08:00 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 326
+ERROR - 2019-01-09 12:08:00 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 327
+ERROR - 2019-01-09 12:08:00 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 327
+ERROR - 2019-01-09 12:08:00 --> Severity: Notice --> Undefined variable: record C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 356
+ERROR - 2019-01-09 12:08:00 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 356
+ERROR - 2019-01-09 12:08:00 --> Severity: Notice --> Undefined property: stdClass::$amountreceived C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 315
+ERROR - 2019-01-09 12:08:01 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 324
+ERROR - 2019-01-09 12:08:01 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 324
+ERROR - 2019-01-09 12:08:01 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 325
+ERROR - 2019-01-09 12:08:01 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 325
+ERROR - 2019-01-09 12:08:01 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 326
+ERROR - 2019-01-09 12:08:01 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 326
+ERROR - 2019-01-09 12:08:01 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 327
+ERROR - 2019-01-09 12:08:02 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 327
+ERROR - 2019-01-09 12:08:02 --> Severity: Notice --> Undefined variable: record C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 356
+ERROR - 2019-01-09 12:08:02 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 356
+ERROR - 2019-01-09 12:08:02 --> Severity: Notice --> Undefined property: stdClass::$amountreceived C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 315
+ERROR - 2019-01-09 12:08:02 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 324
+ERROR - 2019-01-09 12:08:02 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 324
+ERROR - 2019-01-09 12:08:03 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 325
+ERROR - 2019-01-09 12:08:03 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 325
+ERROR - 2019-01-09 12:08:03 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 326
+ERROR - 2019-01-09 12:08:03 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 326
+ERROR - 2019-01-09 12:08:03 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 327
+ERROR - 2019-01-09 12:08:04 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 327
+ERROR - 2019-01-09 12:08:04 --> Severity: Notice --> Undefined variable: record C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 356
+ERROR - 2019-01-09 12:08:04 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 356
+ERROR - 2019-01-09 12:08:04 --> Severity: Notice --> Undefined property: stdClass::$amountreceived C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 315
+ERROR - 2019-01-09 12:08:05 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 324
+ERROR - 2019-01-09 12:08:05 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 324
+ERROR - 2019-01-09 12:08:05 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 325
+ERROR - 2019-01-09 12:08:05 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 325
+ERROR - 2019-01-09 12:08:05 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 326
+ERROR - 2019-01-09 12:08:05 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 326
+ERROR - 2019-01-09 12:08:06 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 327
+ERROR - 2019-01-09 12:08:06 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 327
+ERROR - 2019-01-09 12:08:06 --> Severity: Notice --> Undefined variable: record C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 356
+ERROR - 2019-01-09 12:08:06 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 356
+ERROR - 2019-01-09 12:08:06 --> Severity: Notice --> Undefined property: stdClass::$amountreceived C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 315
+ERROR - 2019-01-09 12:08:07 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 324
+ERROR - 2019-01-09 12:08:07 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 324
+ERROR - 2019-01-09 12:08:07 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 325
+ERROR - 2019-01-09 12:08:07 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 325
+ERROR - 2019-01-09 12:08:07 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 326
+ERROR - 2019-01-09 12:08:07 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 326
+ERROR - 2019-01-09 12:08:08 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 327
+ERROR - 2019-01-09 12:08:08 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 327
+ERROR - 2019-01-09 12:08:08 --> Severity: Notice --> Undefined variable: record C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 356
+ERROR - 2019-01-09 12:08:08 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 356
+ERROR - 2019-01-09 12:08:08 --> Severity: Notice --> Undefined property: stdClass::$amountreceived C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 315
+ERROR - 2019-01-09 12:08:08 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 324
+ERROR - 2019-01-09 12:08:09 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 324
+ERROR - 2019-01-09 12:08:09 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 325
+ERROR - 2019-01-09 12:08:09 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 325
+ERROR - 2019-01-09 12:08:09 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 326
+ERROR - 2019-01-09 12:08:09 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 326
+ERROR - 2019-01-09 12:08:09 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 327
+ERROR - 2019-01-09 12:08:09 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 327
+ERROR - 2019-01-09 12:08:09 --> Severity: Notice --> Undefined variable: record C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 356
+ERROR - 2019-01-09 12:08:10 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 356
+ERROR - 2019-01-09 12:08:10 --> Severity: Notice --> Undefined property: stdClass::$amountreceived C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 315
+ERROR - 2019-01-09 12:08:10 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 324
+ERROR - 2019-01-09 12:08:10 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 324
+ERROR - 2019-01-09 12:08:10 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 325
+ERROR - 2019-01-09 12:08:10 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 325
+ERROR - 2019-01-09 12:08:10 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 326
+ERROR - 2019-01-09 12:08:11 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 326
+ERROR - 2019-01-09 12:08:11 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 327
+ERROR - 2019-01-09 12:08:11 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 327
+ERROR - 2019-01-09 12:08:11 --> Severity: Notice --> Undefined variable: record C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 356
+ERROR - 2019-01-09 12:08:11 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 356
+ERROR - 2019-01-09 12:08:11 --> Severity: Notice --> Undefined property: stdClass::$amountreceived C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 315
+ERROR - 2019-01-09 12:08:12 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 324
+ERROR - 2019-01-09 12:08:12 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 324
+ERROR - 2019-01-09 12:08:12 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 325
+ERROR - 2019-01-09 12:08:12 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 325
+ERROR - 2019-01-09 12:08:12 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 326
+ERROR - 2019-01-09 12:08:12 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 326
+ERROR - 2019-01-09 12:08:12 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 327
+ERROR - 2019-01-09 12:08:13 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 327
+ERROR - 2019-01-09 12:08:13 --> Severity: Notice --> Undefined variable: record C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 356
+ERROR - 2019-01-09 12:08:13 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 356
+ERROR - 2019-01-09 12:08:13 --> Severity: Notice --> Undefined property: stdClass::$amountreceived C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 315
+ERROR - 2019-01-09 12:08:13 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 324
+ERROR - 2019-01-09 12:08:14 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 324
+ERROR - 2019-01-09 12:08:14 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 325
+ERROR - 2019-01-09 12:08:14 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 325
+ERROR - 2019-01-09 12:08:15 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 326
+ERROR - 2019-01-09 12:08:15 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 326
+ERROR - 2019-01-09 12:08:15 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 327
+ERROR - 2019-01-09 12:08:16 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 327
+ERROR - 2019-01-09 12:08:16 --> Severity: Notice --> Undefined variable: record C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 356
+ERROR - 2019-01-09 12:08:16 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 356
+ERROR - 2019-01-09 12:08:16 --> Severity: Notice --> Undefined property: stdClass::$amountreceived C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 315
+ERROR - 2019-01-09 12:08:16 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 324
+ERROR - 2019-01-09 12:08:16 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 324
+ERROR - 2019-01-09 12:08:17 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 325
+ERROR - 2019-01-09 12:08:17 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 325
+ERROR - 2019-01-09 12:08:17 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 326
+ERROR - 2019-01-09 12:08:17 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 326
+ERROR - 2019-01-09 12:08:17 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 327
+ERROR - 2019-01-09 12:08:18 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 327
+ERROR - 2019-01-09 12:08:18 --> Severity: Notice --> Undefined variable: record C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 356
+ERROR - 2019-01-09 12:08:18 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 356
+ERROR - 2019-01-09 12:08:18 --> Severity: Notice --> Undefined property: stdClass::$amountreceived C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 315
+ERROR - 2019-01-09 12:08:18 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 324
+ERROR - 2019-01-09 12:08:19 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 324
+ERROR - 2019-01-09 12:08:19 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 325
+ERROR - 2019-01-09 12:08:19 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 325
+ERROR - 2019-01-09 12:08:19 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 326
+ERROR - 2019-01-09 12:08:19 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 326
+ERROR - 2019-01-09 12:08:19 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 327
+ERROR - 2019-01-09 12:08:19 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 327
+ERROR - 2019-01-09 12:08:20 --> Severity: Notice --> Undefined variable: record C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 356
+ERROR - 2019-01-09 12:08:20 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 356
+ERROR - 2019-01-09 12:08:20 --> Severity: Notice --> Undefined property: stdClass::$amountreceived C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 315
+ERROR - 2019-01-09 12:08:20 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 324
+ERROR - 2019-01-09 12:08:20 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 324
+ERROR - 2019-01-09 12:08:20 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 325
+ERROR - 2019-01-09 12:08:20 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 325
+ERROR - 2019-01-09 12:08:21 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 326
+ERROR - 2019-01-09 12:08:21 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 326
+ERROR - 2019-01-09 12:08:21 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 327
+ERROR - 2019-01-09 12:08:21 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 327
+ERROR - 2019-01-09 12:08:21 --> Severity: Notice --> Undefined variable: record C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 356
+ERROR - 2019-01-09 12:08:21 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 356
+ERROR - 2019-01-09 12:08:22 --> Severity: Notice --> Undefined property: stdClass::$amountreceived C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 315
+ERROR - 2019-01-09 12:08:22 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 324
+ERROR - 2019-01-09 12:08:22 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 324
+ERROR - 2019-01-09 12:08:23 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 325
+ERROR - 2019-01-09 12:08:23 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 325
+ERROR - 2019-01-09 12:08:23 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 326
+ERROR - 2019-01-09 12:08:23 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 326
+ERROR - 2019-01-09 12:08:23 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 327
+ERROR - 2019-01-09 12:08:23 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 327
+ERROR - 2019-01-09 12:08:24 --> Severity: Notice --> Undefined variable: record C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 356
+ERROR - 2019-01-09 12:08:24 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 356
+ERROR - 2019-01-09 12:08:24 --> Severity: Notice --> Undefined property: stdClass::$amountreceived C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 315
+ERROR - 2019-01-09 12:08:24 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 324
+ERROR - 2019-01-09 12:08:24 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 324
+ERROR - 2019-01-09 12:08:24 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 325
+ERROR - 2019-01-09 12:08:25 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 325
+ERROR - 2019-01-09 12:08:25 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 326
+ERROR - 2019-01-09 12:08:25 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 326
+ERROR - 2019-01-09 12:08:25 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 327
+ERROR - 2019-01-09 12:08:25 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 327
+ERROR - 2019-01-09 12:08:25 --> Severity: Notice --> Undefined variable: record C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 356
+ERROR - 2019-01-09 12:08:25 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 356
+ERROR - 2019-01-09 12:08:26 --> Severity: Notice --> Undefined property: stdClass::$amountreceived C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 315
+ERROR - 2019-01-09 12:08:26 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 324
+ERROR - 2019-01-09 12:08:26 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 324
+ERROR - 2019-01-09 12:08:26 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 325
+ERROR - 2019-01-09 12:08:26 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 325
+ERROR - 2019-01-09 12:08:26 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 326
+ERROR - 2019-01-09 12:08:27 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 326
+ERROR - 2019-01-09 12:08:27 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 327
+ERROR - 2019-01-09 12:08:27 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 327
+ERROR - 2019-01-09 12:08:27 --> Severity: Notice --> Undefined variable: record C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 356
+ERROR - 2019-01-09 12:08:27 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 356
+ERROR - 2019-01-09 12:08:27 --> Severity: Notice --> Undefined property: stdClass::$amountreceived C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 315
+ERROR - 2019-01-09 12:08:27 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 324
+ERROR - 2019-01-09 12:08:28 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 324
+ERROR - 2019-01-09 12:08:28 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 325
+ERROR - 2019-01-09 12:08:28 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 325
+ERROR - 2019-01-09 12:08:28 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 326
+ERROR - 2019-01-09 12:08:28 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 326
+ERROR - 2019-01-09 12:08:28 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 327
+ERROR - 2019-01-09 12:08:28 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 327
+ERROR - 2019-01-09 12:08:29 --> Severity: Notice --> Undefined variable: record C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 356
+ERROR - 2019-01-09 12:08:29 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 356
+ERROR - 2019-01-09 12:08:29 --> Severity: Notice --> Undefined property: stdClass::$amountreceived C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 315
+ERROR - 2019-01-09 12:08:29 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 324
+ERROR - 2019-01-09 12:08:29 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 324
+ERROR - 2019-01-09 12:08:29 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 325
+ERROR - 2019-01-09 12:08:30 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 325
+ERROR - 2019-01-09 12:08:30 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 326
+ERROR - 2019-01-09 12:08:30 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 326
+ERROR - 2019-01-09 12:08:30 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 327
+ERROR - 2019-01-09 12:08:30 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 327
+ERROR - 2019-01-09 12:08:30 --> Severity: Notice --> Undefined variable: record C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 356
+ERROR - 2019-01-09 12:08:30 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 356
+ERROR - 2019-01-09 12:08:31 --> Severity: Notice --> Undefined property: stdClass::$amountreceived C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 315
+ERROR - 2019-01-09 12:08:31 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 324
+ERROR - 2019-01-09 12:08:31 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 324
+ERROR - 2019-01-09 12:08:31 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 325
+ERROR - 2019-01-09 12:08:31 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 325
+ERROR - 2019-01-09 12:08:31 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 326
+ERROR - 2019-01-09 12:08:31 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 326
+ERROR - 2019-01-09 12:08:32 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 327
+ERROR - 2019-01-09 12:08:32 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 327
+ERROR - 2019-01-09 12:08:32 --> Severity: Notice --> Undefined variable: record C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 356
+ERROR - 2019-01-09 12:08:32 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 356
+ERROR - 2019-01-09 12:08:32 --> Severity: Notice --> Undefined property: stdClass::$amountreceived C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 315
+ERROR - 2019-01-09 12:08:32 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 324
+ERROR - 2019-01-09 12:08:33 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 324
+ERROR - 2019-01-09 12:08:33 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 325
+ERROR - 2019-01-09 12:08:33 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 325
+ERROR - 2019-01-09 12:08:33 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 326
+ERROR - 2019-01-09 12:08:33 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 326
+ERROR - 2019-01-09 12:08:33 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 327
+ERROR - 2019-01-09 12:08:33 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 327
+ERROR - 2019-01-09 12:08:34 --> Severity: Notice --> Undefined variable: record C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 356
+ERROR - 2019-01-09 12:08:34 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 356
+ERROR - 2019-01-09 12:08:34 --> Severity: Notice --> Undefined property: stdClass::$amountreceived C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 315
+ERROR - 2019-01-09 12:08:34 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 324
+ERROR - 2019-01-09 12:08:34 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 324
+ERROR - 2019-01-09 12:08:34 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 325
+ERROR - 2019-01-09 12:08:34 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 325
+ERROR - 2019-01-09 12:08:35 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 326
+ERROR - 2019-01-09 12:08:35 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 326
+ERROR - 2019-01-09 12:08:35 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 327
+ERROR - 2019-01-09 12:08:35 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 327
+ERROR - 2019-01-09 12:08:35 --> Severity: Notice --> Undefined variable: record C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 356
+ERROR - 2019-01-09 12:08:35 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 356
+ERROR - 2019-01-09 12:08:35 --> Severity: Notice --> Undefined property: stdClass::$amountreceived C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 315
+ERROR - 2019-01-09 12:08:36 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 324
+ERROR - 2019-01-09 12:08:36 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 324
+ERROR - 2019-01-09 12:08:36 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 325
+ERROR - 2019-01-09 12:08:36 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 325
+ERROR - 2019-01-09 12:08:36 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 326
+ERROR - 2019-01-09 12:08:36 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 326
+ERROR - 2019-01-09 12:08:37 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 327
+ERROR - 2019-01-09 12:08:37 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 327
+ERROR - 2019-01-09 12:08:37 --> Severity: Notice --> Undefined variable: record C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 356
+ERROR - 2019-01-09 12:08:37 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 356
+ERROR - 2019-01-09 12:08:37 --> Severity: Notice --> Undefined property: stdClass::$amountreceived C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 315
+ERROR - 2019-01-09 12:08:37 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 324
+ERROR - 2019-01-09 12:08:37 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 324
+ERROR - 2019-01-09 12:08:38 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 325
+ERROR - 2019-01-09 12:08:38 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 325
+ERROR - 2019-01-09 12:08:38 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 326
+ERROR - 2019-01-09 12:08:38 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 326
+ERROR - 2019-01-09 12:08:38 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 327
+ERROR - 2019-01-09 12:08:38 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 327
+ERROR - 2019-01-09 12:08:38 --> Severity: Notice --> Undefined variable: record C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 356
+ERROR - 2019-01-09 12:08:39 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 356
+ERROR - 2019-01-09 12:08:39 --> Severity: Notice --> Undefined property: stdClass::$amountreceived C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 315
+ERROR - 2019-01-09 12:08:39 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 324
+ERROR - 2019-01-09 12:08:39 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 324
+ERROR - 2019-01-09 12:08:39 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 325
+ERROR - 2019-01-09 12:08:39 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 325
+ERROR - 2019-01-09 12:08:39 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 326
+ERROR - 2019-01-09 12:08:40 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 326
+ERROR - 2019-01-09 12:08:40 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 327
+ERROR - 2019-01-09 12:08:40 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 327
+ERROR - 2019-01-09 12:08:40 --> Severity: Notice --> Undefined variable: record C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 356
+ERROR - 2019-01-09 12:08:40 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 356
+ERROR - 2019-01-09 12:08:40 --> Severity: Notice --> Undefined property: stdClass::$amountreceived C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 315
+ERROR - 2019-01-09 12:08:40 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 324
+ERROR - 2019-01-09 12:08:41 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 324
+ERROR - 2019-01-09 12:08:41 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 325
+ERROR - 2019-01-09 12:08:41 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 325
+ERROR - 2019-01-09 12:08:41 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 326
+ERROR - 2019-01-09 12:08:41 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 326
+ERROR - 2019-01-09 12:08:41 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 327
+ERROR - 2019-01-09 12:08:42 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 327
+ERROR - 2019-01-09 12:08:42 --> Severity: Notice --> Undefined variable: record C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 356
+ERROR - 2019-01-09 12:08:42 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 356
+ERROR - 2019-01-09 12:08:42 --> Severity: Notice --> Undefined property: stdClass::$amountreceived C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 315
+ERROR - 2019-01-09 12:08:42 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 324
+ERROR - 2019-01-09 12:08:42 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 324
+ERROR - 2019-01-09 12:08:43 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 325
+ERROR - 2019-01-09 12:08:43 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 325
+ERROR - 2019-01-09 12:08:43 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 326
+ERROR - 2019-01-09 12:08:43 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 326
+ERROR - 2019-01-09 12:08:43 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 327
+ERROR - 2019-01-09 12:08:43 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 327
+ERROR - 2019-01-09 12:08:44 --> Severity: Notice --> Undefined variable: record C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 356
+ERROR - 2019-01-09 12:08:44 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 356
+ERROR - 2019-01-09 12:08:44 --> Severity: Notice --> Undefined property: stdClass::$amountreceived C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 315
+ERROR - 2019-01-09 12:08:44 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 324
+ERROR - 2019-01-09 12:08:44 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 324
+ERROR - 2019-01-09 12:08:44 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 325
+ERROR - 2019-01-09 12:08:44 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 325
+ERROR - 2019-01-09 12:08:45 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 326
+ERROR - 2019-01-09 12:08:45 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 326
+ERROR - 2019-01-09 12:08:45 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 327
+ERROR - 2019-01-09 12:08:45 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 327
+ERROR - 2019-01-09 12:08:46 --> Severity: Notice --> Undefined variable: record C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 356
+ERROR - 2019-01-09 12:08:46 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 356
+ERROR - 2019-01-09 12:08:46 --> Severity: Notice --> Undefined property: stdClass::$amountreceived C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 315
+ERROR - 2019-01-09 12:08:46 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 324
+ERROR - 2019-01-09 12:08:46 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 324
+ERROR - 2019-01-09 12:08:47 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 325
+ERROR - 2019-01-09 12:08:47 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 325
+ERROR - 2019-01-09 12:08:47 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 326
+ERROR - 2019-01-09 12:08:47 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 326
+ERROR - 2019-01-09 12:08:47 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 327
+ERROR - 2019-01-09 12:08:48 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 327
+ERROR - 2019-01-09 12:08:48 --> Severity: Notice --> Undefined variable: record C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 356
+ERROR - 2019-01-09 12:08:48 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 356
+ERROR - 2019-01-09 12:08:48 --> Severity: Notice --> Undefined property: stdClass::$amountreceived C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 315
+ERROR - 2019-01-09 12:08:48 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 324
+ERROR - 2019-01-09 12:08:49 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 324
+ERROR - 2019-01-09 12:08:49 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 325
+ERROR - 2019-01-09 12:08:49 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 325
+ERROR - 2019-01-09 12:08:49 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 326
+ERROR - 2019-01-09 12:08:49 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 326
+ERROR - 2019-01-09 12:08:49 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 327
+ERROR - 2019-01-09 12:08:50 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 327
+ERROR - 2019-01-09 12:08:50 --> Severity: Notice --> Undefined variable: record C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 356
+ERROR - 2019-01-09 12:08:50 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 356
+ERROR - 2019-01-09 12:08:50 --> Severity: Notice --> Undefined property: stdClass::$amountreceived C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 315
+ERROR - 2019-01-09 12:08:50 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 324
+ERROR - 2019-01-09 12:08:51 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 324
+ERROR - 2019-01-09 12:08:51 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 325
+ERROR - 2019-01-09 12:08:51 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 325
+ERROR - 2019-01-09 12:08:51 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 326
+ERROR - 2019-01-09 12:08:52 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 326
+ERROR - 2019-01-09 12:08:52 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 327
+ERROR - 2019-01-09 12:08:52 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 327
+ERROR - 2019-01-09 12:08:52 --> Severity: Notice --> Undefined variable: record C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 356
+ERROR - 2019-01-09 12:08:52 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 356
+ERROR - 2019-01-09 12:08:52 --> Severity: Notice --> Undefined property: stdClass::$amountreceived C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 315
+ERROR - 2019-01-09 12:08:52 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 324
+ERROR - 2019-01-09 12:08:53 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 324
+ERROR - 2019-01-09 12:08:53 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 325
+ERROR - 2019-01-09 12:08:53 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 325
+ERROR - 2019-01-09 12:08:53 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 326
+ERROR - 2019-01-09 12:08:53 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 326
+ERROR - 2019-01-09 12:08:53 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 327
+ERROR - 2019-01-09 12:08:53 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 327
+ERROR - 2019-01-09 12:08:54 --> Severity: Notice --> Undefined variable: record C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 356
+ERROR - 2019-01-09 12:08:54 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 356
+ERROR - 2019-01-09 12:08:54 --> Severity: Notice --> Undefined property: stdClass::$amountreceived C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 315
+ERROR - 2019-01-09 12:08:54 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 324
+ERROR - 2019-01-09 12:08:54 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 324
+ERROR - 2019-01-09 12:08:55 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 325
+ERROR - 2019-01-09 12:08:55 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 325
+ERROR - 2019-01-09 12:08:55 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 326
+ERROR - 2019-01-09 12:08:55 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 326
+ERROR - 2019-01-09 12:08:55 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 327
+ERROR - 2019-01-09 12:08:55 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 327
+ERROR - 2019-01-09 12:08:56 --> Severity: Notice --> Undefined variable: record C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 356
+ERROR - 2019-01-09 12:08:56 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 356
+ERROR - 2019-01-09 12:08:56 --> Severity: Notice --> Undefined property: stdClass::$amountreceived C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 315
+ERROR - 2019-01-09 12:08:56 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 324
+ERROR - 2019-01-09 12:08:56 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 324
+ERROR - 2019-01-09 12:08:57 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 325
+ERROR - 2019-01-09 12:08:57 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 325
+ERROR - 2019-01-09 12:08:57 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 326
+ERROR - 2019-01-09 12:08:57 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 326
+ERROR - 2019-01-09 12:08:58 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 327
+ERROR - 2019-01-09 12:08:58 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 327
+ERROR - 2019-01-09 12:08:58 --> Severity: Notice --> Undefined variable: record C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 356
+ERROR - 2019-01-09 12:08:58 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 356
+ERROR - 2019-01-09 12:08:58 --> Severity: Notice --> Undefined property: stdClass::$amountreceived C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 315
+ERROR - 2019-01-09 12:08:58 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 324
+ERROR - 2019-01-09 12:08:59 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 324
+ERROR - 2019-01-09 12:08:59 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 325
+ERROR - 2019-01-09 12:08:59 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 325
+ERROR - 2019-01-09 12:08:59 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 326
+ERROR - 2019-01-09 12:08:59 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 326
+ERROR - 2019-01-09 12:09:00 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 327
+ERROR - 2019-01-09 12:09:00 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 327
+ERROR - 2019-01-09 12:09:00 --> Severity: Notice --> Undefined variable: record C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 356
+ERROR - 2019-01-09 12:09:00 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 356
+ERROR - 2019-01-09 12:09:00 --> Severity: Notice --> Undefined property: stdClass::$amountreceived C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 315
+ERROR - 2019-01-09 12:09:00 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 324
+ERROR - 2019-01-09 12:09:01 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 324
+ERROR - 2019-01-09 12:09:01 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 325
+ERROR - 2019-01-09 12:09:01 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 325
+ERROR - 2019-01-09 12:09:02 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 326
+ERROR - 2019-01-09 12:09:02 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 326
+ERROR - 2019-01-09 12:09:02 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 327
+ERROR - 2019-01-09 12:09:02 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 327
+ERROR - 2019-01-09 12:09:02 --> Severity: Notice --> Undefined variable: record C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 356
+ERROR - 2019-01-09 12:09:03 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 356
+ERROR - 2019-01-09 12:09:03 --> Severity: Notice --> Undefined property: stdClass::$amountreceived C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 315
+ERROR - 2019-01-09 12:09:03 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 324
+ERROR - 2019-01-09 12:09:03 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 324
+ERROR - 2019-01-09 12:09:03 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 325
+ERROR - 2019-01-09 12:09:04 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 325
+ERROR - 2019-01-09 12:09:04 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 326
+ERROR - 2019-01-09 12:09:04 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 326
+ERROR - 2019-01-09 12:09:04 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 327
+ERROR - 2019-01-09 12:09:04 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 327
+ERROR - 2019-01-09 12:09:04 --> Severity: Notice --> Undefined variable: record C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 356
+ERROR - 2019-01-09 12:09:04 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 356
+ERROR - 2019-01-09 12:09:05 --> Severity: Notice --> Undefined property: stdClass::$amountreceived C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 315
+ERROR - 2019-01-09 12:09:05 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 324
+ERROR - 2019-01-09 12:09:05 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 324
+ERROR - 2019-01-09 12:09:05 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 325
+ERROR - 2019-01-09 12:09:05 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 325
+ERROR - 2019-01-09 12:09:06 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 326
+ERROR - 2019-01-09 12:09:06 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 326
+ERROR - 2019-01-09 12:09:06 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 327
+ERROR - 2019-01-09 12:09:06 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 327
+ERROR - 2019-01-09 12:09:06 --> Severity: Notice --> Undefined variable: record C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 356
+ERROR - 2019-01-09 12:09:06 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 356
+ERROR - 2019-01-09 12:09:07 --> Severity: Notice --> Undefined property: stdClass::$amountreceived C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 315
+ERROR - 2019-01-09 12:09:07 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 324
+ERROR - 2019-01-09 12:09:07 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 324
+ERROR - 2019-01-09 12:09:07 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 325
+ERROR - 2019-01-09 12:09:07 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 325
+ERROR - 2019-01-09 12:09:08 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 326
+ERROR - 2019-01-09 12:09:08 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 326
+ERROR - 2019-01-09 12:09:08 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 327
+ERROR - 2019-01-09 12:09:08 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 327
+ERROR - 2019-01-09 12:09:08 --> Severity: Notice --> Undefined variable: record C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 356
+ERROR - 2019-01-09 12:09:09 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 356
+ERROR - 2019-01-09 12:09:09 --> Severity: Notice --> Undefined property: stdClass::$amountreceived C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 315
+ERROR - 2019-01-09 12:09:09 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 324
+ERROR - 2019-01-09 12:09:09 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 324
+ERROR - 2019-01-09 12:09:09 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 325
+ERROR - 2019-01-09 12:09:10 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 325
+ERROR - 2019-01-09 12:09:10 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 326
+ERROR - 2019-01-09 12:09:10 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 326
+ERROR - 2019-01-09 12:09:10 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 327
+ERROR - 2019-01-09 12:09:10 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 327
+ERROR - 2019-01-09 12:09:11 --> Severity: Notice --> Undefined variable: record C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 356
+ERROR - 2019-01-09 12:09:11 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 356
+ERROR - 2019-01-09 12:09:11 --> Severity: Notice --> Undefined property: stdClass::$amountreceived C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 315
+ERROR - 2019-01-09 12:09:12 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 324
+ERROR - 2019-01-09 12:09:12 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 324
+ERROR - 2019-01-09 12:09:12 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 325
+ERROR - 2019-01-09 12:09:12 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 325
+ERROR - 2019-01-09 12:09:12 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 326
+ERROR - 2019-01-09 12:09:13 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 326
+ERROR - 2019-01-09 12:09:13 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 327
+ERROR - 2019-01-09 12:09:13 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 327
+ERROR - 2019-01-09 12:09:13 --> Severity: Notice --> Undefined variable: record C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 356
+ERROR - 2019-01-09 12:09:13 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 356
+ERROR - 2019-01-09 12:09:14 --> Severity: Notice --> Undefined property: stdClass::$amountreceived C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 315
+ERROR - 2019-01-09 12:09:14 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 324
+ERROR - 2019-01-09 12:09:14 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 324
+ERROR - 2019-01-09 12:09:14 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 325
+ERROR - 2019-01-09 12:09:14 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 325
+ERROR - 2019-01-09 12:09:14 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 326
+ERROR - 2019-01-09 12:09:15 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 326
+ERROR - 2019-01-09 12:09:15 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 327
+ERROR - 2019-01-09 12:09:15 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 327
+ERROR - 2019-01-09 12:09:15 --> Severity: Notice --> Undefined variable: record C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 356
+ERROR - 2019-01-09 12:09:15 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 356
+ERROR - 2019-01-09 12:09:16 --> Severity: Notice --> Undefined property: stdClass::$amountreceived C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 315
+ERROR - 2019-01-09 12:09:16 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 324
+ERROR - 2019-01-09 12:09:16 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 324
+ERROR - 2019-01-09 12:09:16 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 325
+ERROR - 2019-01-09 12:09:16 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 325
+ERROR - 2019-01-09 12:09:16 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 326
+ERROR - 2019-01-09 12:09:17 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 326
+ERROR - 2019-01-09 12:09:17 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 327
+ERROR - 2019-01-09 12:09:17 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 327
+ERROR - 2019-01-09 12:09:17 --> Severity: Notice --> Undefined variable: record C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 356
+ERROR - 2019-01-09 12:09:17 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 356
+ERROR - 2019-01-09 12:09:17 --> Severity: Notice --> Undefined property: stdClass::$amountreceived C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 315
+ERROR - 2019-01-09 12:09:18 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 324
+ERROR - 2019-01-09 12:09:18 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 324
+ERROR - 2019-01-09 12:09:18 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 325
+ERROR - 2019-01-09 12:09:19 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 325
+ERROR - 2019-01-09 12:09:19 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 326
+ERROR - 2019-01-09 12:09:19 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 326
+ERROR - 2019-01-09 12:09:19 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 327
+ERROR - 2019-01-09 12:09:19 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 327
+ERROR - 2019-01-09 12:09:20 --> Severity: Notice --> Undefined variable: record C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 356
+ERROR - 2019-01-09 12:09:20 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 356
+ERROR - 2019-01-09 12:09:20 --> Severity: Notice --> Undefined property: stdClass::$amountreceived C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 315
+ERROR - 2019-01-09 12:09:20 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 324
+ERROR - 2019-01-09 12:09:20 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 324
+ERROR - 2019-01-09 12:09:20 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 325
+ERROR - 2019-01-09 12:09:21 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 325
+ERROR - 2019-01-09 12:09:21 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 326
+ERROR - 2019-01-09 12:09:21 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 326
+ERROR - 2019-01-09 12:09:21 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 327
+ERROR - 2019-01-09 12:09:21 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 327
+ERROR - 2019-01-09 12:09:22 --> Severity: Notice --> Undefined variable: record C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 356
+ERROR - 2019-01-09 12:09:22 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 356
+ERROR - 2019-01-09 12:09:22 --> Severity: Notice --> Undefined property: stdClass::$amountreceived C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 315
+ERROR - 2019-01-09 12:09:22 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 324
+ERROR - 2019-01-09 12:09:22 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 324
+ERROR - 2019-01-09 12:09:22 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 325
+ERROR - 2019-01-09 12:09:23 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 325
+ERROR - 2019-01-09 12:09:23 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 326
+ERROR - 2019-01-09 12:09:23 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 326
+ERROR - 2019-01-09 12:09:23 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 327
+ERROR - 2019-01-09 12:09:23 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 327
+ERROR - 2019-01-09 12:09:23 --> Severity: Notice --> Undefined variable: record C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 356
+ERROR - 2019-01-09 12:09:24 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 356
+ERROR - 2019-01-09 12:09:24 --> Severity: Notice --> Undefined property: stdClass::$amountreceived C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 315
+ERROR - 2019-01-09 12:09:24 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 324
+ERROR - 2019-01-09 12:09:24 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 324
+ERROR - 2019-01-09 12:09:24 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 325
+ERROR - 2019-01-09 12:09:24 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 325
+ERROR - 2019-01-09 12:09:25 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 326
+ERROR - 2019-01-09 12:09:25 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 326
+ERROR - 2019-01-09 12:09:25 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 327
+ERROR - 2019-01-09 12:09:26 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 327
+ERROR - 2019-01-09 12:09:26 --> Severity: Notice --> Undefined variable: record C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 356
+ERROR - 2019-01-09 12:09:26 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 356
+ERROR - 2019-01-09 12:09:26 --> Severity: Notice --> Undefined property: stdClass::$amountreceived C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 315
+ERROR - 2019-01-09 12:09:26 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 324
+ERROR - 2019-01-09 12:09:26 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 324
+ERROR - 2019-01-09 12:09:27 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 325
+ERROR - 2019-01-09 12:09:27 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 325
+ERROR - 2019-01-09 12:09:27 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 326
+ERROR - 2019-01-09 12:09:27 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 326
+ERROR - 2019-01-09 12:09:28 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 327
+ERROR - 2019-01-09 12:09:28 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 327
+ERROR - 2019-01-09 12:09:28 --> Severity: Notice --> Undefined variable: record C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 356
+ERROR - 2019-01-09 12:09:28 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 356
+ERROR - 2019-01-09 12:09:28 --> Severity: Notice --> Undefined property: stdClass::$amountreceived C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 315
+ERROR - 2019-01-09 12:09:29 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 324
+ERROR - 2019-01-09 12:09:29 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 324
+ERROR - 2019-01-09 12:09:29 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 325
+ERROR - 2019-01-09 12:09:29 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 325
+ERROR - 2019-01-09 12:09:29 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 326
+ERROR - 2019-01-09 12:09:30 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 326
+ERROR - 2019-01-09 12:09:30 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 327
+ERROR - 2019-01-09 12:09:30 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 327
+ERROR - 2019-01-09 12:09:30 --> Severity: Notice --> Undefined variable: record C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 356
+ERROR - 2019-01-09 12:09:30 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 356
+ERROR - 2019-01-09 12:09:30 --> Severity: Notice --> Undefined property: stdClass::$amountreceived C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 315
+ERROR - 2019-01-09 12:09:31 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 324
+ERROR - 2019-01-09 12:09:31 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 324
+ERROR - 2019-01-09 12:09:31 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 325
+ERROR - 2019-01-09 12:09:31 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 325
+ERROR - 2019-01-09 12:09:31 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 326
+ERROR - 2019-01-09 12:09:31 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 326
+ERROR - 2019-01-09 12:09:32 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 327
+ERROR - 2019-01-09 12:09:32 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 327
+ERROR - 2019-01-09 12:09:32 --> Severity: Notice --> Undefined variable: record C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 356
+ERROR - 2019-01-09 12:09:32 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 356
+ERROR - 2019-01-09 12:09:32 --> Severity: Notice --> Undefined property: stdClass::$amountreceived C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 315
+ERROR - 2019-01-09 12:09:32 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 324
+ERROR - 2019-01-09 12:09:33 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 324
+ERROR - 2019-01-09 12:09:33 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 325
+ERROR - 2019-01-09 12:09:33 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 325
+ERROR - 2019-01-09 12:09:33 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 326
+ERROR - 2019-01-09 12:09:33 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 326
+ERROR - 2019-01-09 12:09:33 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 327
+ERROR - 2019-01-09 12:09:34 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 327
+ERROR - 2019-01-09 12:09:34 --> Severity: Notice --> Undefined variable: record C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 356
+ERROR - 2019-01-09 12:09:34 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 356
+ERROR - 2019-01-09 12:09:34 --> Severity: Notice --> Undefined property: stdClass::$amountreceived C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 315
+ERROR - 2019-01-09 12:09:34 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 324
+ERROR - 2019-01-09 12:09:34 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 324
+ERROR - 2019-01-09 12:09:35 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 325
+ERROR - 2019-01-09 12:09:35 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 325
+ERROR - 2019-01-09 12:09:35 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 326
+ERROR - 2019-01-09 12:09:35 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 326
+ERROR - 2019-01-09 12:09:35 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 327
+ERROR - 2019-01-09 12:09:35 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 327
+ERROR - 2019-01-09 12:09:35 --> Severity: Notice --> Undefined variable: record C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 356
+ERROR - 2019-01-09 12:09:36 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 356
+ERROR - 2019-01-09 12:09:36 --> Severity: Notice --> Undefined property: stdClass::$amountreceived C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 315
+ERROR - 2019-01-09 12:09:36 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 324
+ERROR - 2019-01-09 12:09:36 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 324
+ERROR - 2019-01-09 12:09:36 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 325
+ERROR - 2019-01-09 12:09:36 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 325
+ERROR - 2019-01-09 12:09:37 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 326
+ERROR - 2019-01-09 12:09:37 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 326
+ERROR - 2019-01-09 12:09:37 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 327
+ERROR - 2019-01-09 12:09:37 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 327
+ERROR - 2019-01-09 12:09:37 --> Severity: Notice --> Undefined variable: record C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 356
+ERROR - 2019-01-09 12:09:37 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 356
+ERROR - 2019-01-09 12:09:38 --> Severity: Notice --> Undefined property: stdClass::$amountreceived C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 315
+ERROR - 2019-01-09 12:09:38 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 324
+ERROR - 2019-01-09 12:09:38 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 324
+ERROR - 2019-01-09 12:09:38 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 325
+ERROR - 2019-01-09 12:09:38 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 325
+ERROR - 2019-01-09 12:09:38 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 326
+ERROR - 2019-01-09 12:09:38 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 326
+ERROR - 2019-01-09 12:09:39 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 327
+ERROR - 2019-01-09 12:09:39 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 327
+ERROR - 2019-01-09 12:09:39 --> Severity: Notice --> Undefined variable: record C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 356
+ERROR - 2019-01-09 12:09:39 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 356
+ERROR - 2019-01-09 12:09:39 --> Severity: Notice --> Undefined property: stdClass::$amountreceived C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 315
+ERROR - 2019-01-09 12:09:40 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 324
+ERROR - 2019-01-09 12:09:40 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 324
+ERROR - 2019-01-09 12:09:40 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 325
+ERROR - 2019-01-09 12:09:40 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 325
+ERROR - 2019-01-09 12:09:40 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 326
+ERROR - 2019-01-09 12:09:40 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 326
+ERROR - 2019-01-09 12:09:41 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 327
+ERROR - 2019-01-09 12:09:41 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 327
+ERROR - 2019-01-09 12:09:41 --> Severity: Notice --> Undefined variable: record C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 356
+ERROR - 2019-01-09 12:09:41 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 356
+ERROR - 2019-01-09 12:09:41 --> Severity: Notice --> Undefined property: stdClass::$amountreceived C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 315
+ERROR - 2019-01-09 12:09:41 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 324
+ERROR - 2019-01-09 12:09:42 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 324
+ERROR - 2019-01-09 12:09:42 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 325
+ERROR - 2019-01-09 12:09:42 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 325
+ERROR - 2019-01-09 12:09:42 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 326
+ERROR - 2019-01-09 12:09:42 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 326
+ERROR - 2019-01-09 12:09:42 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 327
+ERROR - 2019-01-09 12:09:43 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 327
+ERROR - 2019-01-09 12:09:43 --> Severity: Notice --> Undefined variable: record C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 356
+ERROR - 2019-01-09 12:09:43 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 356
+ERROR - 2019-01-09 12:09:43 --> Severity: Notice --> Undefined property: stdClass::$amountreceived C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 315
+ERROR - 2019-01-09 12:09:43 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 324
+ERROR - 2019-01-09 12:09:43 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 324
+ERROR - 2019-01-09 12:09:43 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 325
+ERROR - 2019-01-09 12:09:44 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 325
+ERROR - 2019-01-09 12:09:44 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 326
+ERROR - 2019-01-09 12:09:44 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 326
+ERROR - 2019-01-09 12:09:44 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 327
+ERROR - 2019-01-09 12:09:44 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 327
+ERROR - 2019-01-09 12:09:45 --> Severity: Notice --> Undefined variable: record C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 356
+ERROR - 2019-01-09 12:09:45 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 356
+ERROR - 2019-01-09 12:09:45 --> Severity: Notice --> Undefined property: stdClass::$amountreceived C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 315
+ERROR - 2019-01-09 12:09:45 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 324
+ERROR - 2019-01-09 12:09:45 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 324
+ERROR - 2019-01-09 12:09:46 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 325
+ERROR - 2019-01-09 12:09:46 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 325
+ERROR - 2019-01-09 12:09:46 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 326
+ERROR - 2019-01-09 12:09:46 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 326
+ERROR - 2019-01-09 12:09:46 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 327
+ERROR - 2019-01-09 12:09:47 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 327
+ERROR - 2019-01-09 12:09:47 --> Severity: Notice --> Undefined variable: record C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 356
+ERROR - 2019-01-09 12:09:47 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 356
+ERROR - 2019-01-09 12:09:47 --> Severity: Notice --> Undefined property: stdClass::$amountreceived C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 315
+ERROR - 2019-01-09 12:09:48 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 324
+ERROR - 2019-01-09 12:09:48 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 324
+ERROR - 2019-01-09 12:09:48 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 325
+ERROR - 2019-01-09 12:09:48 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 325
+ERROR - 2019-01-09 12:09:48 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 326
+ERROR - 2019-01-09 12:09:48 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 326
+ERROR - 2019-01-09 12:09:49 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 327
+ERROR - 2019-01-09 12:09:49 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 327
+ERROR - 2019-01-09 12:09:49 --> Severity: Notice --> Undefined variable: record C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 356
+ERROR - 2019-01-09 12:09:49 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 356
+ERROR - 2019-01-09 12:09:49 --> Severity: Notice --> Undefined property: stdClass::$amountreceived C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 315
+ERROR - 2019-01-09 12:09:49 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 324
+ERROR - 2019-01-09 12:09:50 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 324
+ERROR - 2019-01-09 12:09:50 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 325
+ERROR - 2019-01-09 12:09:50 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 325
+ERROR - 2019-01-09 12:09:50 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 326
+ERROR - 2019-01-09 12:09:50 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 326
+ERROR - 2019-01-09 12:09:50 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 327
+ERROR - 2019-01-09 12:09:50 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 327
+ERROR - 2019-01-09 12:09:51 --> Severity: Notice --> Undefined variable: record C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 356
+ERROR - 2019-01-09 12:09:51 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 356
+ERROR - 2019-01-09 12:09:51 --> Severity: Notice --> Undefined property: stdClass::$amountreceived C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 315
+ERROR - 2019-01-09 12:09:51 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 324
+ERROR - 2019-01-09 12:09:51 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 324
+ERROR - 2019-01-09 12:09:51 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 325
+ERROR - 2019-01-09 12:09:52 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 325
+ERROR - 2019-01-09 12:09:52 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 326
+ERROR - 2019-01-09 12:09:52 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 326
+ERROR - 2019-01-09 12:09:52 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 327
+ERROR - 2019-01-09 12:09:52 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 327
+ERROR - 2019-01-09 12:09:52 --> Severity: Notice --> Undefined variable: record C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 356
+ERROR - 2019-01-09 12:09:53 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 356
+ERROR - 2019-01-09 12:09:53 --> Severity: Notice --> Undefined property: stdClass::$amountreceived C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 315
+ERROR - 2019-01-09 12:09:53 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 324
+ERROR - 2019-01-09 12:09:53 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 324
+ERROR - 2019-01-09 12:09:53 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 325
+ERROR - 2019-01-09 12:09:53 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 325
+ERROR - 2019-01-09 12:09:53 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 326
+ERROR - 2019-01-09 12:09:54 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 326
+ERROR - 2019-01-09 12:09:54 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 327
+ERROR - 2019-01-09 12:09:54 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 327
+ERROR - 2019-01-09 12:09:54 --> Severity: Notice --> Undefined variable: record C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 356
+ERROR - 2019-01-09 12:09:54 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 356
+ERROR - 2019-01-09 12:09:55 --> Severity: Notice --> Undefined property: stdClass::$amountreceived C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 315
+ERROR - 2019-01-09 12:09:55 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 324
+ERROR - 2019-01-09 12:09:55 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 324
+ERROR - 2019-01-09 12:09:55 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 325
+ERROR - 2019-01-09 12:09:56 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 325
+ERROR - 2019-01-09 12:09:56 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 326
+ERROR - 2019-01-09 12:09:56 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 326
+ERROR - 2019-01-09 12:09:56 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 327
+ERROR - 2019-01-09 12:09:56 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 327
+ERROR - 2019-01-09 12:09:56 --> Severity: Notice --> Undefined variable: record C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 356
+ERROR - 2019-01-09 12:09:57 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 356
+ERROR - 2019-01-09 12:09:57 --> Severity: Notice --> Undefined property: stdClass::$amountreceived C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 315
+ERROR - 2019-01-09 12:09:57 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 324
+ERROR - 2019-01-09 12:09:57 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 324
+ERROR - 2019-01-09 12:09:58 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 325
+ERROR - 2019-01-09 12:09:58 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 325
+ERROR - 2019-01-09 12:09:58 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 326
+ERROR - 2019-01-09 12:09:58 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 326
+ERROR - 2019-01-09 12:09:58 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 327
+ERROR - 2019-01-09 12:09:58 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 327
+ERROR - 2019-01-09 12:09:58 --> Severity: Notice --> Undefined variable: record C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 356
+ERROR - 2019-01-09 12:09:59 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 356
+ERROR - 2019-01-09 12:09:59 --> Severity: Notice --> Undefined property: stdClass::$amountreceived C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 315
+ERROR - 2019-01-09 12:09:59 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 324
+ERROR - 2019-01-09 12:09:59 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 324
+ERROR - 2019-01-09 12:09:59 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 325
+ERROR - 2019-01-09 12:10:00 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 325
+ERROR - 2019-01-09 12:10:00 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 326
+ERROR - 2019-01-09 12:10:00 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 326
+ERROR - 2019-01-09 12:10:00 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 327
+ERROR - 2019-01-09 12:10:00 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 327
+ERROR - 2019-01-09 12:10:01 --> Severity: Notice --> Undefined variable: record C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 356
+ERROR - 2019-01-09 12:10:01 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 356
+ERROR - 2019-01-09 12:10:01 --> Severity: Notice --> Undefined property: stdClass::$amountreceived C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 315
+ERROR - 2019-01-09 12:10:01 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 324
+ERROR - 2019-01-09 12:10:02 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 324
+ERROR - 2019-01-09 12:10:02 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 325
+ERROR - 2019-01-09 12:10:02 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 325
+ERROR - 2019-01-09 12:10:02 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 326
+ERROR - 2019-01-09 12:10:02 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 326
+ERROR - 2019-01-09 12:10:02 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 327
+ERROR - 2019-01-09 12:10:03 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 327
+ERROR - 2019-01-09 12:10:03 --> Severity: Notice --> Undefined variable: record C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 356
+ERROR - 2019-01-09 12:10:03 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 356
+ERROR - 2019-01-09 12:10:03 --> Severity: Notice --> Undefined property: stdClass::$amountreceived C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 315
+ERROR - 2019-01-09 12:10:03 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 324
+ERROR - 2019-01-09 12:10:04 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 324
+ERROR - 2019-01-09 12:10:04 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 325
+ERROR - 2019-01-09 12:10:04 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 325
+ERROR - 2019-01-09 12:10:04 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 326
+ERROR - 2019-01-09 12:10:04 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 326
+ERROR - 2019-01-09 12:10:05 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 327
+ERROR - 2019-01-09 12:10:05 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 327
+ERROR - 2019-01-09 12:10:05 --> Severity: Notice --> Undefined variable: record C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 356
+ERROR - 2019-01-09 12:10:05 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 356
+ERROR - 2019-01-09 12:10:05 --> Severity: Notice --> Undefined property: stdClass::$amountreceived C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 315
+ERROR - 2019-01-09 12:10:05 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 324
+ERROR - 2019-01-09 12:10:06 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 324
+ERROR - 2019-01-09 12:10:06 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 325
+ERROR - 2019-01-09 12:10:06 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 325
+ERROR - 2019-01-09 12:10:06 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 326
+ERROR - 2019-01-09 12:10:06 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 326
+ERROR - 2019-01-09 12:10:06 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 327
+ERROR - 2019-01-09 12:10:07 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 327
+ERROR - 2019-01-09 12:10:07 --> Severity: Notice --> Undefined variable: record C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 356
+ERROR - 2019-01-09 12:10:07 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 356
+ERROR - 2019-01-09 12:10:07 --> Severity: Notice --> Undefined property: stdClass::$amountreceived C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 315
+ERROR - 2019-01-09 12:10:07 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 324
+ERROR - 2019-01-09 12:10:08 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 324
+ERROR - 2019-01-09 12:10:08 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 325
+ERROR - 2019-01-09 12:10:08 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 325
+ERROR - 2019-01-09 12:10:08 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 326
+ERROR - 2019-01-09 12:10:08 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 326
+ERROR - 2019-01-09 12:10:09 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 327
+ERROR - 2019-01-09 12:10:09 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 327
+ERROR - 2019-01-09 12:10:09 --> Severity: Notice --> Undefined variable: record C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 356
+ERROR - 2019-01-09 12:10:09 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 356
+ERROR - 2019-01-09 12:10:09 --> Severity: Notice --> Undefined property: stdClass::$amountreceived C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 315
+ERROR - 2019-01-09 12:10:10 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 324
+ERROR - 2019-01-09 12:10:10 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 324
+ERROR - 2019-01-09 12:10:10 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 325
+ERROR - 2019-01-09 12:10:10 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 325
+ERROR - 2019-01-09 12:10:10 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 326
+ERROR - 2019-01-09 12:10:11 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 326
+ERROR - 2019-01-09 12:10:11 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 327
+ERROR - 2019-01-09 12:10:11 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 327
+ERROR - 2019-01-09 12:10:11 --> Severity: Notice --> Undefined variable: record C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 356
+ERROR - 2019-01-09 12:10:11 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 356
+ERROR - 2019-01-09 12:10:12 --> Severity: Notice --> Undefined property: stdClass::$amountreceived C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 315
+ERROR - 2019-01-09 12:10:12 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 324
+ERROR - 2019-01-09 12:10:12 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 324
+ERROR - 2019-01-09 12:10:12 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 325
+ERROR - 2019-01-09 12:10:12 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 325
+ERROR - 2019-01-09 12:10:12 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 326
+ERROR - 2019-01-09 12:10:12 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 326
+ERROR - 2019-01-09 12:10:13 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 327
+ERROR - 2019-01-09 12:10:13 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 327
+ERROR - 2019-01-09 12:10:13 --> Severity: Notice --> Undefined variable: record C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 356
+ERROR - 2019-01-09 12:10:13 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 356
+ERROR - 2019-01-09 12:10:13 --> Severity: Notice --> Undefined property: stdClass::$amountreceived C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 315
+ERROR - 2019-01-09 12:10:13 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 324
+ERROR - 2019-01-09 12:10:14 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 324
+ERROR - 2019-01-09 12:10:14 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 325
+ERROR - 2019-01-09 12:10:14 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 325
+ERROR - 2019-01-09 12:10:14 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 326
+ERROR - 2019-01-09 12:10:14 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 326
+ERROR - 2019-01-09 12:10:14 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 327
+ERROR - 2019-01-09 12:10:15 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 327
+ERROR - 2019-01-09 12:10:15 --> Severity: Notice --> Undefined variable: record C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 356
+ERROR - 2019-01-09 12:10:15 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 356
+ERROR - 2019-01-09 12:10:15 --> Severity: Notice --> Undefined property: stdClass::$amountreceived C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 315
+ERROR - 2019-01-09 12:10:15 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 324
+ERROR - 2019-01-09 12:10:15 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 324
+ERROR - 2019-01-09 12:10:16 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 325
+ERROR - 2019-01-09 12:10:16 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 325
+ERROR - 2019-01-09 12:10:16 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 326
+ERROR - 2019-01-09 12:10:16 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 326
+ERROR - 2019-01-09 12:10:16 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 327
+ERROR - 2019-01-09 12:10:17 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 327
+ERROR - 2019-01-09 12:10:17 --> Severity: Notice --> Undefined variable: record C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 356
+ERROR - 2019-01-09 12:10:17 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 356
+ERROR - 2019-01-09 12:10:17 --> Severity: Notice --> Undefined property: stdClass::$amountreceived C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 315
+ERROR - 2019-01-09 12:10:17 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 324
+ERROR - 2019-01-09 12:10:18 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 324
+ERROR - 2019-01-09 12:10:18 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 325
+ERROR - 2019-01-09 12:10:18 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 325
+ERROR - 2019-01-09 12:10:18 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 326
+ERROR - 2019-01-09 12:10:18 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 326
+ERROR - 2019-01-09 12:10:18 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 327
+ERROR - 2019-01-09 12:10:19 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 327
+ERROR - 2019-01-09 12:10:19 --> Severity: Notice --> Undefined variable: record C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 356
+ERROR - 2019-01-09 12:10:19 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 356
+ERROR - 2019-01-09 12:10:19 --> Severity: Notice --> Undefined property: stdClass::$amountreceived C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 315
+ERROR - 2019-01-09 12:10:19 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 324
+ERROR - 2019-01-09 12:10:20 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 324
+ERROR - 2019-01-09 12:10:20 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 325
+ERROR - 2019-01-09 12:10:20 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 325
+ERROR - 2019-01-09 12:10:20 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 326
+ERROR - 2019-01-09 12:10:20 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 326
+ERROR - 2019-01-09 12:10:21 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 327
+ERROR - 2019-01-09 12:10:21 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 327
+ERROR - 2019-01-09 12:10:21 --> Severity: Notice --> Undefined variable: record C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 356
+ERROR - 2019-01-09 12:10:21 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 356
+ERROR - 2019-01-09 12:10:21 --> Severity: Notice --> Undefined property: stdClass::$amountreceived C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 315
+ERROR - 2019-01-09 12:10:21 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 324
+ERROR - 2019-01-09 12:10:22 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 324
+ERROR - 2019-01-09 12:10:22 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 325
+ERROR - 2019-01-09 12:10:22 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 325
+ERROR - 2019-01-09 12:10:22 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 326
+ERROR - 2019-01-09 12:10:22 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 326
+ERROR - 2019-01-09 12:10:22 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 327
+ERROR - 2019-01-09 12:10:23 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 327
+ERROR - 2019-01-09 12:10:23 --> Severity: Notice --> Undefined variable: record C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 356
+ERROR - 2019-01-09 12:10:23 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 356
+ERROR - 2019-01-09 12:10:23 --> Severity: Notice --> Undefined property: stdClass::$amountreceived C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 315
+ERROR - 2019-01-09 12:10:23 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 324
+ERROR - 2019-01-09 12:10:24 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 324
+ERROR - 2019-01-09 12:10:24 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 325
+ERROR - 2019-01-09 12:10:24 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 325
+ERROR - 2019-01-09 12:10:24 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 326
+ERROR - 2019-01-09 12:10:24 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 326
+ERROR - 2019-01-09 12:10:24 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 327
+ERROR - 2019-01-09 12:10:25 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 327
+ERROR - 2019-01-09 12:10:25 --> Severity: Notice --> Undefined variable: record C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 356
+ERROR - 2019-01-09 12:10:25 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 356
+ERROR - 2019-01-09 12:10:38 --> Severity: Warning --> mysqli_connect(): (HY000/1045): Access denied for user 'kasiram9_Siddh'@'103.16.202.153' (using password: YES) C:\xampp\htdocs\ria\system\database\drivers\mysqli\mysqli_driver.php 77
+ERROR - 2019-01-09 12:10:39 --> Unable to connect to the database
+ERROR - 2019-01-09 12:11:18 --> Severity: Notice --> Undefined variable: suppliername C:\xampp\htdocs\ria\application\controllers\cashbook.php 1910
+ERROR - 2019-01-09 12:11:19 --> Severity: Notice --> Undefined variable: Customer C:\xampp\htdocs\ria\application\controllers\cashbook.php 1916
+ERROR - 2019-01-09 12:11:19 --> Severity: Notice --> Undefined variable: financialyear C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 10
+ERROR - 2019-01-09 12:11:19 --> Severity: Warning --> Invalid argument supplied for foreach() C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 10
+ERROR - 2019-01-09 12:11:19 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 12:11:20 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 12:11:20 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 12:11:20 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 12:11:20 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 12:11:20 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 12:11:20 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 12:11:20 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 12:11:21 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 12:11:21 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 12:11:21 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 12:11:21 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 12:11:21 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 12:11:21 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 12:11:22 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 12:11:22 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 12:11:22 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 12:11:22 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 12:11:22 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 12:11:22 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 12:11:22 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 12:11:23 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 12:11:23 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 12:11:23 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 12:11:23 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 12:11:23 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 12:11:23 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 12:11:24 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 12:11:24 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 12:11:24 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 12:11:24 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 12:11:24 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 12:11:24 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 12:11:24 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 12:11:25 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 12:11:25 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 12:11:25 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 12:11:25 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 12:11:25 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 12:11:25 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 12:11:26 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 12:11:26 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 12:11:26 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 12:11:26 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 12:11:26 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 12:11:26 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 12:11:26 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 12:11:27 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 12:11:27 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 12:11:27 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 12:11:27 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 12:11:27 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 12:11:27 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 12:11:28 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 12:11:28 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 12:11:28 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 12:11:28 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 12:11:28 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 12:11:28 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 12:11:28 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 12:11:29 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 12:11:29 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 12:11:29 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 12:11:29 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 12:11:29 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 12:11:29 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 12:11:30 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 12:11:30 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 12:11:30 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 12:11:30 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 12:11:30 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 12:11:30 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 12:11:30 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 12:11:31 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 12:11:31 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 12:11:31 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 12:11:31 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 12:11:31 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 12:11:31 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 12:11:32 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 12:11:32 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 12:11:32 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 12:11:32 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 12:11:32 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 12:11:32 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 12:11:33 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 12:11:33 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 12:11:33 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 12:11:33 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 12:11:33 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 12:11:33 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 12:11:33 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 12:11:34 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 12:11:34 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 12:11:34 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 140
+ERROR - 2019-01-09 12:11:34 --> Severity: Notice --> Undefined variable: tot_amount C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 144
+ERROR - 2019-01-09 12:11:34 --> Severity: Notice --> Undefined property: stdClass::$amountreceived C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 315
+ERROR - 2019-01-09 12:11:34 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 324
+ERROR - 2019-01-09 12:11:35 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 324
+ERROR - 2019-01-09 12:11:35 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 325
+ERROR - 2019-01-09 12:11:35 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 325
+ERROR - 2019-01-09 12:11:35 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 326
+ERROR - 2019-01-09 12:11:35 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 326
+ERROR - 2019-01-09 12:11:35 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 327
+ERROR - 2019-01-09 12:11:35 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 327
+ERROR - 2019-01-09 12:11:36 --> Severity: Notice --> Undefined variable: tot_balance C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 353
+ERROR - 2019-01-09 12:11:36 --> Severity: Notice --> Undefined variable: record C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 356
+ERROR - 2019-01-09 12:11:36 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 356
+ERROR - 2019-01-09 12:11:36 --> Severity: Notice --> Undefined property: stdClass::$amountreceived C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 315
+ERROR - 2019-01-09 12:11:36 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 324
+ERROR - 2019-01-09 12:11:36 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 324
+ERROR - 2019-01-09 12:11:37 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 325
+ERROR - 2019-01-09 12:11:37 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 325
+ERROR - 2019-01-09 12:11:37 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 326
+ERROR - 2019-01-09 12:11:37 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 326
+ERROR - 2019-01-09 12:11:37 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 327
+ERROR - 2019-01-09 12:11:37 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 327
+ERROR - 2019-01-09 12:11:37 --> Severity: Notice --> Undefined variable: record C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 356
+ERROR - 2019-01-09 12:11:38 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 356
+ERROR - 2019-01-09 12:11:38 --> Severity: Notice --> Undefined property: stdClass::$amountreceived C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 315
+ERROR - 2019-01-09 12:11:38 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 324
+ERROR - 2019-01-09 12:11:38 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 324
+ERROR - 2019-01-09 12:11:38 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 325
+ERROR - 2019-01-09 12:11:38 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 325
+ERROR - 2019-01-09 12:11:39 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 326
+ERROR - 2019-01-09 12:11:39 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 326
+ERROR - 2019-01-09 12:11:39 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 327
+ERROR - 2019-01-09 12:11:39 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 327
+ERROR - 2019-01-09 12:11:39 --> Severity: Notice --> Undefined variable: record C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 356
+ERROR - 2019-01-09 12:11:39 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 356
+ERROR - 2019-01-09 12:11:40 --> Severity: Notice --> Undefined property: stdClass::$amountreceived C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 315
+ERROR - 2019-01-09 12:11:40 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 324
+ERROR - 2019-01-09 12:11:40 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 324
+ERROR - 2019-01-09 12:11:40 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 325
+ERROR - 2019-01-09 12:11:40 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 325
+ERROR - 2019-01-09 12:11:40 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 326
+ERROR - 2019-01-09 12:11:40 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 326
+ERROR - 2019-01-09 12:11:41 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 327
+ERROR - 2019-01-09 12:11:41 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 327
+ERROR - 2019-01-09 12:11:41 --> Severity: Notice --> Undefined variable: record C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 356
+ERROR - 2019-01-09 12:11:41 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 356
+ERROR - 2019-01-09 12:11:41 --> Severity: Notice --> Undefined property: stdClass::$amountreceived C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 315
+ERROR - 2019-01-09 12:11:41 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 324
+ERROR - 2019-01-09 12:11:42 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 324
+ERROR - 2019-01-09 12:11:42 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 325
+ERROR - 2019-01-09 12:11:42 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 325
+ERROR - 2019-01-09 12:11:42 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 326
+ERROR - 2019-01-09 12:11:42 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 326
+ERROR - 2019-01-09 12:11:42 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 327
+ERROR - 2019-01-09 12:11:42 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 327
+ERROR - 2019-01-09 12:11:43 --> Severity: Notice --> Undefined variable: record C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 356
+ERROR - 2019-01-09 12:11:43 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 356
+ERROR - 2019-01-09 12:11:43 --> Severity: Notice --> Undefined property: stdClass::$amountreceived C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 315
+ERROR - 2019-01-09 12:11:43 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 324
+ERROR - 2019-01-09 12:11:43 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 324
+ERROR - 2019-01-09 12:11:43 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 325
+ERROR - 2019-01-09 12:11:44 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 325
+ERROR - 2019-01-09 12:11:44 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 326
+ERROR - 2019-01-09 12:11:44 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 326
+ERROR - 2019-01-09 12:11:44 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 327
+ERROR - 2019-01-09 12:11:44 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 327
+ERROR - 2019-01-09 12:11:44 --> Severity: Notice --> Undefined variable: record C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 356
+ERROR - 2019-01-09 12:11:44 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 356
+ERROR - 2019-01-09 12:11:45 --> Severity: Notice --> Undefined property: stdClass::$amountreceived C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 315
+ERROR - 2019-01-09 12:11:45 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 324
+ERROR - 2019-01-09 12:11:45 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 324
+ERROR - 2019-01-09 12:11:45 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 325
+ERROR - 2019-01-09 12:11:45 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 325
+ERROR - 2019-01-09 12:11:45 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 326
+ERROR - 2019-01-09 12:11:46 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 326
+ERROR - 2019-01-09 12:11:46 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 327
+ERROR - 2019-01-09 12:11:46 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 327
+ERROR - 2019-01-09 12:11:46 --> Severity: Notice --> Undefined variable: record C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 356
+ERROR - 2019-01-09 12:11:46 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 356
+ERROR - 2019-01-09 12:11:46 --> Severity: Notice --> Undefined property: stdClass::$amountreceived C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 315
+ERROR - 2019-01-09 12:11:46 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 324
+ERROR - 2019-01-09 12:11:47 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 324
+ERROR - 2019-01-09 12:11:47 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 325
+ERROR - 2019-01-09 12:11:47 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 325
+ERROR - 2019-01-09 12:11:47 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 326
+ERROR - 2019-01-09 12:11:47 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 326
+ERROR - 2019-01-09 12:11:47 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 327
+ERROR - 2019-01-09 12:11:48 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 327
+ERROR - 2019-01-09 12:11:48 --> Severity: Notice --> Undefined variable: record C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 356
+ERROR - 2019-01-09 12:11:48 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 356
+ERROR - 2019-01-09 12:11:48 --> Severity: Notice --> Undefined property: stdClass::$amountreceived C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 315
+ERROR - 2019-01-09 12:11:48 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 324
+ERROR - 2019-01-09 12:11:48 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 324
+ERROR - 2019-01-09 12:11:48 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 325
+ERROR - 2019-01-09 12:11:49 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 325
+ERROR - 2019-01-09 12:11:49 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 326
+ERROR - 2019-01-09 12:11:49 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 326
+ERROR - 2019-01-09 12:11:49 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 327
+ERROR - 2019-01-09 12:11:49 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 327
+ERROR - 2019-01-09 12:11:49 --> Severity: Notice --> Undefined variable: record C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 356
+ERROR - 2019-01-09 12:11:50 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 356
+ERROR - 2019-01-09 12:11:50 --> Severity: Notice --> Undefined property: stdClass::$amountreceived C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 315
+ERROR - 2019-01-09 12:11:50 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 324
+ERROR - 2019-01-09 12:11:50 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 324
+ERROR - 2019-01-09 12:11:50 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 325
+ERROR - 2019-01-09 12:11:50 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 325
+ERROR - 2019-01-09 12:11:51 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 326
+ERROR - 2019-01-09 12:11:51 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 326
+ERROR - 2019-01-09 12:11:51 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 327
+ERROR - 2019-01-09 12:11:51 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 327
+ERROR - 2019-01-09 12:11:51 --> Severity: Notice --> Undefined variable: record C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 356
+ERROR - 2019-01-09 12:11:51 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 356
+ERROR - 2019-01-09 12:11:51 --> Severity: Notice --> Undefined property: stdClass::$amountreceived C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 315
+ERROR - 2019-01-09 12:11:52 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 324
+ERROR - 2019-01-09 12:11:52 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 324
+ERROR - 2019-01-09 12:11:52 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 325
+ERROR - 2019-01-09 12:11:52 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 325
+ERROR - 2019-01-09 12:11:52 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 326
+ERROR - 2019-01-09 12:11:52 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 326
+ERROR - 2019-01-09 12:11:52 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 327
+ERROR - 2019-01-09 12:11:53 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 327
+ERROR - 2019-01-09 12:11:53 --> Severity: Notice --> Undefined variable: record C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 356
+ERROR - 2019-01-09 12:11:53 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 356
+ERROR - 2019-01-09 12:11:53 --> Severity: Notice --> Undefined property: stdClass::$amountreceived C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 315
+ERROR - 2019-01-09 12:11:53 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 324
+ERROR - 2019-01-09 12:11:53 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 324
+ERROR - 2019-01-09 12:11:54 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 325
+ERROR - 2019-01-09 12:11:54 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 325
+ERROR - 2019-01-09 12:11:54 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 326
+ERROR - 2019-01-09 12:11:54 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 326
+ERROR - 2019-01-09 12:11:54 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 327
+ERROR - 2019-01-09 12:11:54 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 327
+ERROR - 2019-01-09 12:11:55 --> Severity: Notice --> Undefined variable: record C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 356
+ERROR - 2019-01-09 12:11:55 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 356
+ERROR - 2019-01-09 12:11:55 --> Severity: Notice --> Undefined property: stdClass::$amountreceived C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 315
+ERROR - 2019-01-09 12:11:55 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 324
+ERROR - 2019-01-09 12:11:55 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 324
+ERROR - 2019-01-09 12:11:55 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 325
+ERROR - 2019-01-09 12:11:55 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 325
+ERROR - 2019-01-09 12:11:56 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 326
+ERROR - 2019-01-09 12:11:56 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 326
+ERROR - 2019-01-09 12:11:56 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 327
+ERROR - 2019-01-09 12:11:56 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 327
+ERROR - 2019-01-09 12:11:56 --> Severity: Notice --> Undefined variable: record C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 356
+ERROR - 2019-01-09 12:11:56 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 356
+ERROR - 2019-01-09 12:11:57 --> Severity: Notice --> Undefined property: stdClass::$amountreceived C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 315
+ERROR - 2019-01-09 12:11:57 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 324
+ERROR - 2019-01-09 12:11:57 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 324
+ERROR - 2019-01-09 12:11:57 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 325
+ERROR - 2019-01-09 12:11:57 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 325
+ERROR - 2019-01-09 12:11:57 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 326
+ERROR - 2019-01-09 12:11:57 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 326
+ERROR - 2019-01-09 12:11:58 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 327
+ERROR - 2019-01-09 12:11:58 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 327
+ERROR - 2019-01-09 12:11:58 --> Severity: Notice --> Undefined variable: record C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 356
+ERROR - 2019-01-09 12:11:58 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 356
+ERROR - 2019-01-09 12:11:58 --> Severity: Notice --> Undefined property: stdClass::$amountreceived C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 315
+ERROR - 2019-01-09 12:11:58 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 324
+ERROR - 2019-01-09 12:11:59 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 324
+ERROR - 2019-01-09 12:11:59 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 325
+ERROR - 2019-01-09 12:11:59 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 325
+ERROR - 2019-01-09 12:11:59 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 326
+ERROR - 2019-01-09 12:11:59 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 326
+ERROR - 2019-01-09 12:11:59 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 327
+ERROR - 2019-01-09 12:12:00 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 327
+ERROR - 2019-01-09 12:12:00 --> Severity: Notice --> Undefined variable: record C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 356
+ERROR - 2019-01-09 12:12:00 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 356
+ERROR - 2019-01-09 12:12:00 --> Severity: Notice --> Undefined property: stdClass::$amountreceived C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 315
+ERROR - 2019-01-09 12:12:00 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 324
+ERROR - 2019-01-09 12:12:00 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 324
+ERROR - 2019-01-09 12:12:00 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 325
+ERROR - 2019-01-09 12:12:01 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 325
+ERROR - 2019-01-09 12:12:01 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 326
+ERROR - 2019-01-09 12:12:01 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 326
+ERROR - 2019-01-09 12:12:01 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 327
+ERROR - 2019-01-09 12:12:01 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 327
+ERROR - 2019-01-09 12:12:01 --> Severity: Notice --> Undefined variable: record C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 356
+ERROR - 2019-01-09 12:12:02 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 356
+ERROR - 2019-01-09 12:12:02 --> Severity: Notice --> Undefined property: stdClass::$amountreceived C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 315
+ERROR - 2019-01-09 12:12:02 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 324
+ERROR - 2019-01-09 12:12:02 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 324
+ERROR - 2019-01-09 12:12:02 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 325
+ERROR - 2019-01-09 12:12:02 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 325
+ERROR - 2019-01-09 12:12:03 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 326
+ERROR - 2019-01-09 12:12:03 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 326
+ERROR - 2019-01-09 12:12:03 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 327
+ERROR - 2019-01-09 12:12:03 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 327
+ERROR - 2019-01-09 12:12:03 --> Severity: Notice --> Undefined variable: record C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 356
+ERROR - 2019-01-09 12:12:03 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 356
+ERROR - 2019-01-09 12:12:03 --> Severity: Notice --> Undefined property: stdClass::$amountreceived C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 315
+ERROR - 2019-01-09 12:12:04 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 324
+ERROR - 2019-01-09 12:12:04 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 324
+ERROR - 2019-01-09 12:12:04 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 325
+ERROR - 2019-01-09 12:12:04 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 325
+ERROR - 2019-01-09 12:12:04 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 326
+ERROR - 2019-01-09 12:12:04 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 326
+ERROR - 2019-01-09 12:12:05 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 327
+ERROR - 2019-01-09 12:12:05 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 327
+ERROR - 2019-01-09 12:12:05 --> Severity: Notice --> Undefined variable: record C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 356
+ERROR - 2019-01-09 12:12:05 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 356
+ERROR - 2019-01-09 12:12:05 --> Severity: Notice --> Undefined property: stdClass::$amountreceived C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 315
+ERROR - 2019-01-09 12:12:05 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 324
+ERROR - 2019-01-09 12:12:05 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 324
+ERROR - 2019-01-09 12:12:06 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 325
+ERROR - 2019-01-09 12:12:06 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 325
+ERROR - 2019-01-09 12:12:06 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 326
+ERROR - 2019-01-09 12:12:06 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 326
+ERROR - 2019-01-09 12:12:06 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 327
+ERROR - 2019-01-09 12:12:06 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 327
+ERROR - 2019-01-09 12:12:07 --> Severity: Notice --> Undefined variable: record C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 356
+ERROR - 2019-01-09 12:12:07 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 356
+ERROR - 2019-01-09 12:12:07 --> Severity: Notice --> Undefined property: stdClass::$amountreceived C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 315
+ERROR - 2019-01-09 12:12:07 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 324
+ERROR - 2019-01-09 12:12:07 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 324
+ERROR - 2019-01-09 12:12:07 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 325
+ERROR - 2019-01-09 12:12:07 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 325
+ERROR - 2019-01-09 12:12:08 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 326
+ERROR - 2019-01-09 12:12:08 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 326
+ERROR - 2019-01-09 12:12:08 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 327
+ERROR - 2019-01-09 12:12:08 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 327
+ERROR - 2019-01-09 12:12:08 --> Severity: Notice --> Undefined variable: record C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 356
+ERROR - 2019-01-09 12:12:08 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 356
+ERROR - 2019-01-09 12:12:09 --> Severity: Notice --> Undefined property: stdClass::$amountreceived C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 315
+ERROR - 2019-01-09 12:12:09 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 324
+ERROR - 2019-01-09 12:12:09 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 324
+ERROR - 2019-01-09 12:12:09 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 325
+ERROR - 2019-01-09 12:12:09 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 325
+ERROR - 2019-01-09 12:12:09 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 326
+ERROR - 2019-01-09 12:12:10 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 326
+ERROR - 2019-01-09 12:12:10 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 327
+ERROR - 2019-01-09 12:12:10 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 327
+ERROR - 2019-01-09 12:12:10 --> Severity: Notice --> Undefined variable: record C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 356
+ERROR - 2019-01-09 12:12:10 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 356
+ERROR - 2019-01-09 12:12:10 --> Severity: Notice --> Undefined property: stdClass::$amountreceived C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 315
+ERROR - 2019-01-09 12:12:10 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 324
+ERROR - 2019-01-09 12:12:11 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 324
+ERROR - 2019-01-09 12:12:11 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 325
+ERROR - 2019-01-09 12:12:11 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 325
+ERROR - 2019-01-09 12:12:11 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 326
+ERROR - 2019-01-09 12:12:11 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 326
+ERROR - 2019-01-09 12:12:11 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 327
+ERROR - 2019-01-09 12:12:12 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 327
+ERROR - 2019-01-09 12:12:12 --> Severity: Notice --> Undefined variable: record C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 356
+ERROR - 2019-01-09 12:12:12 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 356
+ERROR - 2019-01-09 12:12:12 --> Severity: Notice --> Undefined property: stdClass::$amountreceived C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 315
+ERROR - 2019-01-09 12:12:12 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 324
+ERROR - 2019-01-09 12:12:12 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 324
+ERROR - 2019-01-09 12:12:13 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 325
+ERROR - 2019-01-09 12:12:13 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 325
+ERROR - 2019-01-09 12:12:13 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 326
+ERROR - 2019-01-09 12:12:13 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 326
+ERROR - 2019-01-09 12:12:13 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 327
+ERROR - 2019-01-09 12:12:13 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 327
+ERROR - 2019-01-09 12:12:13 --> Severity: Notice --> Undefined variable: record C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 356
+ERROR - 2019-01-09 12:12:14 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 356
+ERROR - 2019-01-09 12:12:14 --> Severity: Notice --> Undefined property: stdClass::$amountreceived C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 315
+ERROR - 2019-01-09 12:12:14 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 324
+ERROR - 2019-01-09 12:12:14 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 324
+ERROR - 2019-01-09 12:12:14 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 325
+ERROR - 2019-01-09 12:12:14 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 325
+ERROR - 2019-01-09 12:12:15 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 326
+ERROR - 2019-01-09 12:12:15 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 326
+ERROR - 2019-01-09 12:12:15 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 327
+ERROR - 2019-01-09 12:12:15 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 327
+ERROR - 2019-01-09 12:12:15 --> Severity: Notice --> Undefined variable: record C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 356
+ERROR - 2019-01-09 12:12:15 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 356
+ERROR - 2019-01-09 12:12:15 --> Severity: Notice --> Undefined property: stdClass::$amountreceived C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 315
+ERROR - 2019-01-09 12:12:16 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 324
+ERROR - 2019-01-09 12:12:16 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 324
+ERROR - 2019-01-09 12:12:16 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 325
+ERROR - 2019-01-09 12:12:16 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 325
+ERROR - 2019-01-09 12:12:16 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 326
+ERROR - 2019-01-09 12:12:16 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 326
+ERROR - 2019-01-09 12:12:17 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 327
+ERROR - 2019-01-09 12:12:17 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 327
+ERROR - 2019-01-09 12:12:17 --> Severity: Notice --> Undefined variable: record C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 356
+ERROR - 2019-01-09 12:12:17 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 356
+ERROR - 2019-01-09 12:12:17 --> Severity: Notice --> Undefined property: stdClass::$amountreceived C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 315
+ERROR - 2019-01-09 12:12:17 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 324
+ERROR - 2019-01-09 12:12:18 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 324
+ERROR - 2019-01-09 12:12:18 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 325
+ERROR - 2019-01-09 12:12:18 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 325
+ERROR - 2019-01-09 12:12:18 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 326
+ERROR - 2019-01-09 12:12:18 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 326
+ERROR - 2019-01-09 12:12:18 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 327
+ERROR - 2019-01-09 12:12:19 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 327
+ERROR - 2019-01-09 12:12:19 --> Severity: Notice --> Undefined variable: record C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 356
+ERROR - 2019-01-09 12:12:19 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 356
+ERROR - 2019-01-09 12:12:19 --> Severity: Notice --> Undefined property: stdClass::$amountreceived C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 315
+ERROR - 2019-01-09 12:12:19 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 324
+ERROR - 2019-01-09 12:12:19 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 324
+ERROR - 2019-01-09 12:12:19 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 325
+ERROR - 2019-01-09 12:12:20 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 325
+ERROR - 2019-01-09 12:12:20 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 326
+ERROR - 2019-01-09 12:12:20 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 326
+ERROR - 2019-01-09 12:12:20 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 327
+ERROR - 2019-01-09 12:12:20 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 327
+ERROR - 2019-01-09 12:12:20 --> Severity: Notice --> Undefined variable: record C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 356
+ERROR - 2019-01-09 12:12:21 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 356
+ERROR - 2019-01-09 12:12:21 --> Severity: Notice --> Undefined property: stdClass::$amountreceived C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 315
+ERROR - 2019-01-09 12:12:21 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 324
+ERROR - 2019-01-09 12:12:21 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 324
+ERROR - 2019-01-09 12:12:21 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 325
+ERROR - 2019-01-09 12:12:21 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 325
+ERROR - 2019-01-09 12:12:22 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 326
+ERROR - 2019-01-09 12:12:22 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 326
+ERROR - 2019-01-09 12:12:22 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 327
+ERROR - 2019-01-09 12:12:22 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 327
+ERROR - 2019-01-09 12:12:22 --> Severity: Notice --> Undefined variable: record C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 356
+ERROR - 2019-01-09 12:12:22 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 356
+ERROR - 2019-01-09 12:12:22 --> Severity: Notice --> Undefined property: stdClass::$amountreceived C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 315
+ERROR - 2019-01-09 12:12:23 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 324
+ERROR - 2019-01-09 12:12:23 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 324
+ERROR - 2019-01-09 12:12:23 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 325
+ERROR - 2019-01-09 12:12:23 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 325
+ERROR - 2019-01-09 12:12:23 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 326
+ERROR - 2019-01-09 12:12:23 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 326
+ERROR - 2019-01-09 12:12:24 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 327
+ERROR - 2019-01-09 12:12:24 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 327
+ERROR - 2019-01-09 12:12:24 --> Severity: Notice --> Undefined variable: record C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 356
+ERROR - 2019-01-09 12:12:24 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 356
+ERROR - 2019-01-09 12:12:24 --> Severity: Notice --> Undefined property: stdClass::$amountreceived C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 315
+ERROR - 2019-01-09 12:12:24 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 324
+ERROR - 2019-01-09 12:12:25 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 324
+ERROR - 2019-01-09 12:12:25 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 325
+ERROR - 2019-01-09 12:12:25 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 325
+ERROR - 2019-01-09 12:12:25 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 326
+ERROR - 2019-01-09 12:12:25 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 326
+ERROR - 2019-01-09 12:12:25 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 327
+ERROR - 2019-01-09 12:12:25 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 327
+ERROR - 2019-01-09 12:12:26 --> Severity: Notice --> Undefined variable: record C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 356
+ERROR - 2019-01-09 12:12:26 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 356
+ERROR - 2019-01-09 12:12:26 --> Severity: Notice --> Undefined property: stdClass::$amountreceived C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 315
+ERROR - 2019-01-09 12:12:26 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 324
+ERROR - 2019-01-09 12:12:26 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 324
+ERROR - 2019-01-09 12:12:26 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 325
+ERROR - 2019-01-09 12:12:27 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 325
+ERROR - 2019-01-09 12:12:27 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 326
+ERROR - 2019-01-09 12:12:27 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 326
+ERROR - 2019-01-09 12:12:27 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 327
+ERROR - 2019-01-09 12:12:27 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 327
+ERROR - 2019-01-09 12:12:27 --> Severity: Notice --> Undefined variable: record C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 356
+ERROR - 2019-01-09 12:12:27 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 356
+ERROR - 2019-01-09 12:12:28 --> Severity: Notice --> Undefined property: stdClass::$amountreceived C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 315
+ERROR - 2019-01-09 12:12:28 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 324
+ERROR - 2019-01-09 12:12:28 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 324
+ERROR - 2019-01-09 12:12:28 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 325
+ERROR - 2019-01-09 12:12:28 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 325
+ERROR - 2019-01-09 12:12:28 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 326
+ERROR - 2019-01-09 12:12:29 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 326
+ERROR - 2019-01-09 12:12:29 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 327
+ERROR - 2019-01-09 12:12:29 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 327
+ERROR - 2019-01-09 12:12:29 --> Severity: Notice --> Undefined variable: record C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 356
+ERROR - 2019-01-09 12:12:29 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 356
+ERROR - 2019-01-09 12:12:29 --> Severity: Notice --> Undefined property: stdClass::$amountreceived C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 315
+ERROR - 2019-01-09 12:12:30 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 324
+ERROR - 2019-01-09 12:12:30 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 324
+ERROR - 2019-01-09 12:12:30 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 325
+ERROR - 2019-01-09 12:12:30 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 325
+ERROR - 2019-01-09 12:12:30 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 326
+ERROR - 2019-01-09 12:12:30 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 326
+ERROR - 2019-01-09 12:12:31 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 327
+ERROR - 2019-01-09 12:12:31 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 327
+ERROR - 2019-01-09 12:12:31 --> Severity: Notice --> Undefined variable: record C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 356
+ERROR - 2019-01-09 12:12:31 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 356
+ERROR - 2019-01-09 12:12:31 --> Severity: Notice --> Undefined property: stdClass::$amountreceived C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 315
+ERROR - 2019-01-09 12:12:31 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 324
+ERROR - 2019-01-09 12:12:31 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 324
+ERROR - 2019-01-09 12:12:32 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 325
+ERROR - 2019-01-09 12:12:32 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 325
+ERROR - 2019-01-09 12:12:32 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 326
+ERROR - 2019-01-09 12:12:32 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 326
+ERROR - 2019-01-09 12:12:32 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 327
+ERROR - 2019-01-09 12:12:32 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 327
+ERROR - 2019-01-09 12:12:33 --> Severity: Notice --> Undefined variable: record C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 356
+ERROR - 2019-01-09 12:12:33 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 356
+ERROR - 2019-01-09 12:12:33 --> Severity: Notice --> Undefined property: stdClass::$amountreceived C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 315
+ERROR - 2019-01-09 12:12:33 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 324
+ERROR - 2019-01-09 12:12:33 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 324
+ERROR - 2019-01-09 12:12:33 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 325
+ERROR - 2019-01-09 12:12:34 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 325
+ERROR - 2019-01-09 12:12:34 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 326
+ERROR - 2019-01-09 12:12:34 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 326
+ERROR - 2019-01-09 12:12:34 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 327
+ERROR - 2019-01-09 12:12:34 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 327
+ERROR - 2019-01-09 12:12:34 --> Severity: Notice --> Undefined variable: record C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 356
+ERROR - 2019-01-09 12:12:35 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 356
+ERROR - 2019-01-09 12:12:35 --> Severity: Notice --> Undefined property: stdClass::$amountreceived C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 315
+ERROR - 2019-01-09 12:12:35 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 324
+ERROR - 2019-01-09 12:12:35 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 324
+ERROR - 2019-01-09 12:12:35 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 325
+ERROR - 2019-01-09 12:12:35 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 325
+ERROR - 2019-01-09 12:12:36 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 326
+ERROR - 2019-01-09 12:12:36 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 326
+ERROR - 2019-01-09 12:12:36 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 327
+ERROR - 2019-01-09 12:12:36 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 327
+ERROR - 2019-01-09 12:12:36 --> Severity: Notice --> Undefined variable: record C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 356
+ERROR - 2019-01-09 12:12:36 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 356
+ERROR - 2019-01-09 12:12:37 --> Severity: Notice --> Undefined property: stdClass::$amountreceived C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 315
+ERROR - 2019-01-09 12:12:37 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 324
+ERROR - 2019-01-09 12:12:37 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 324
+ERROR - 2019-01-09 12:12:37 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 325
+ERROR - 2019-01-09 12:12:37 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 325
+ERROR - 2019-01-09 12:12:38 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 326
+ERROR - 2019-01-09 12:12:38 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 326
+ERROR - 2019-01-09 12:12:38 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 327
+ERROR - 2019-01-09 12:12:38 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 327
+ERROR - 2019-01-09 12:12:38 --> Severity: Notice --> Undefined variable: record C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 356
+ERROR - 2019-01-09 12:12:38 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 356
+ERROR - 2019-01-09 12:12:39 --> Severity: Notice --> Undefined property: stdClass::$amountreceived C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 315
+ERROR - 2019-01-09 12:12:39 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 324
+ERROR - 2019-01-09 12:12:39 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 324
+ERROR - 2019-01-09 12:12:39 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 325
+ERROR - 2019-01-09 12:12:39 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 325
+ERROR - 2019-01-09 12:12:39 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 326
+ERROR - 2019-01-09 12:12:40 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 326
+ERROR - 2019-01-09 12:12:40 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 327
+ERROR - 2019-01-09 12:12:40 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 327
+ERROR - 2019-01-09 12:12:40 --> Severity: Notice --> Undefined variable: record C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 356
+ERROR - 2019-01-09 12:12:40 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 356
+ERROR - 2019-01-09 12:12:40 --> Severity: Notice --> Undefined property: stdClass::$amountreceived C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 315
+ERROR - 2019-01-09 12:12:41 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 324
+ERROR - 2019-01-09 12:12:41 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 324
+ERROR - 2019-01-09 12:12:41 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 325
+ERROR - 2019-01-09 12:12:41 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 325
+ERROR - 2019-01-09 12:12:41 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 326
+ERROR - 2019-01-09 12:12:41 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 326
+ERROR - 2019-01-09 12:12:42 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 327
+ERROR - 2019-01-09 12:12:42 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 327
+ERROR - 2019-01-09 12:12:42 --> Severity: Notice --> Undefined variable: record C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 356
+ERROR - 2019-01-09 12:12:42 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 356
+ERROR - 2019-01-09 12:12:42 --> Severity: Notice --> Undefined property: stdClass::$amountreceived C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 315
+ERROR - 2019-01-09 12:12:42 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 324
+ERROR - 2019-01-09 12:12:42 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 324
+ERROR - 2019-01-09 12:12:43 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 325
+ERROR - 2019-01-09 12:12:43 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 325
+ERROR - 2019-01-09 12:12:43 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 326
+ERROR - 2019-01-09 12:12:43 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 326
+ERROR - 2019-01-09 12:12:43 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 327
+ERROR - 2019-01-09 12:12:43 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 327
+ERROR - 2019-01-09 12:12:44 --> Severity: Notice --> Undefined variable: record C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 356
+ERROR - 2019-01-09 12:12:44 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 356
+ERROR - 2019-01-09 12:12:44 --> Severity: Notice --> Undefined property: stdClass::$amountreceived C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 315
+ERROR - 2019-01-09 12:12:44 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 324
+ERROR - 2019-01-09 12:12:44 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 324
+ERROR - 2019-01-09 12:12:44 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 325
+ERROR - 2019-01-09 12:12:45 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 325
+ERROR - 2019-01-09 12:12:45 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 326
+ERROR - 2019-01-09 12:12:45 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 326
+ERROR - 2019-01-09 12:12:45 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 327
+ERROR - 2019-01-09 12:12:45 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 327
+ERROR - 2019-01-09 12:12:45 --> Severity: Notice --> Undefined variable: record C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 356
+ERROR - 2019-01-09 12:12:45 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 356
+ERROR - 2019-01-09 12:12:46 --> Severity: Notice --> Undefined property: stdClass::$amountreceived C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 315
+ERROR - 2019-01-09 12:12:46 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 324
+ERROR - 2019-01-09 12:12:46 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 324
+ERROR - 2019-01-09 12:12:46 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 325
+ERROR - 2019-01-09 12:12:46 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 325
+ERROR - 2019-01-09 12:12:46 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 326
+ERROR - 2019-01-09 12:12:47 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 326
+ERROR - 2019-01-09 12:12:47 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 327
+ERROR - 2019-01-09 12:12:47 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 327
+ERROR - 2019-01-09 12:12:47 --> Severity: Notice --> Undefined variable: record C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 356
+ERROR - 2019-01-09 12:12:47 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 356
+ERROR - 2019-01-09 12:12:47 --> Severity: Notice --> Undefined property: stdClass::$amountreceived C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 315
+ERROR - 2019-01-09 12:12:48 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 324
+ERROR - 2019-01-09 12:12:48 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 324
+ERROR - 2019-01-09 12:12:48 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 325
+ERROR - 2019-01-09 12:12:48 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 325
+ERROR - 2019-01-09 12:12:48 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 326
+ERROR - 2019-01-09 12:12:48 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 326
+ERROR - 2019-01-09 12:12:48 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 327
+ERROR - 2019-01-09 12:12:49 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 327
+ERROR - 2019-01-09 12:12:49 --> Severity: Notice --> Undefined variable: record C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 356
+ERROR - 2019-01-09 12:12:49 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 356
+ERROR - 2019-01-09 12:12:49 --> Severity: Notice --> Undefined property: stdClass::$amountreceived C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 315
+ERROR - 2019-01-09 12:12:49 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 324
+ERROR - 2019-01-09 12:12:49 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 324
+ERROR - 2019-01-09 12:12:50 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 325
+ERROR - 2019-01-09 12:12:50 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 325
+ERROR - 2019-01-09 12:12:50 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 326
+ERROR - 2019-01-09 12:12:50 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 326
+ERROR - 2019-01-09 12:12:50 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 327
+ERROR - 2019-01-09 12:12:50 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 327
+ERROR - 2019-01-09 12:12:51 --> Severity: Notice --> Undefined variable: record C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 356
+ERROR - 2019-01-09 12:12:51 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 356
+ERROR - 2019-01-09 12:12:51 --> Severity: Notice --> Undefined property: stdClass::$amountreceived C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 315
+ERROR - 2019-01-09 12:12:51 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 324
+ERROR - 2019-01-09 12:12:51 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 324
+ERROR - 2019-01-09 12:12:51 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 325
+ERROR - 2019-01-09 12:12:52 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 325
+ERROR - 2019-01-09 12:12:52 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 326
+ERROR - 2019-01-09 12:12:52 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 326
+ERROR - 2019-01-09 12:12:52 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 327
+ERROR - 2019-01-09 12:12:52 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 327
+ERROR - 2019-01-09 12:12:52 --> Severity: Notice --> Undefined variable: record C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 356
+ERROR - 2019-01-09 12:12:53 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 356
+ERROR - 2019-01-09 12:12:53 --> Severity: Notice --> Undefined property: stdClass::$amountreceived C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 315
+ERROR - 2019-01-09 12:12:53 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 324
+ERROR - 2019-01-09 12:12:53 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 324
+ERROR - 2019-01-09 12:12:53 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 325
+ERROR - 2019-01-09 12:12:53 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 325
+ERROR - 2019-01-09 12:12:53 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 326
+ERROR - 2019-01-09 12:12:54 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 326
+ERROR - 2019-01-09 12:12:54 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 327
+ERROR - 2019-01-09 12:12:54 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 327
+ERROR - 2019-01-09 12:12:54 --> Severity: Notice --> Undefined variable: record C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 356
+ERROR - 2019-01-09 12:12:54 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 356
+ERROR - 2019-01-09 12:12:54 --> Severity: Notice --> Undefined property: stdClass::$amountreceived C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 315
+ERROR - 2019-01-09 12:12:55 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 324
+ERROR - 2019-01-09 12:12:55 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 324
+ERROR - 2019-01-09 12:12:55 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 325
+ERROR - 2019-01-09 12:12:55 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 325
+ERROR - 2019-01-09 12:12:55 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 326
+ERROR - 2019-01-09 12:12:55 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 326
+ERROR - 2019-01-09 12:12:56 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 327
+ERROR - 2019-01-09 12:12:56 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 327
+ERROR - 2019-01-09 12:12:56 --> Severity: Notice --> Undefined variable: record C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 356
+ERROR - 2019-01-09 12:12:56 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 356
+ERROR - 2019-01-09 12:12:56 --> Severity: Notice --> Undefined property: stdClass::$amountreceived C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 315
+ERROR - 2019-01-09 12:12:56 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 324
+ERROR - 2019-01-09 12:12:56 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 324
+ERROR - 2019-01-09 12:12:57 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 325
+ERROR - 2019-01-09 12:12:57 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 325
+ERROR - 2019-01-09 12:12:57 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 326
+ERROR - 2019-01-09 12:12:57 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 326
+ERROR - 2019-01-09 12:12:57 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 327
+ERROR - 2019-01-09 12:12:57 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 327
+ERROR - 2019-01-09 12:12:58 --> Severity: Notice --> Undefined variable: record C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 356
+ERROR - 2019-01-09 12:12:58 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 356
+ERROR - 2019-01-09 12:12:58 --> Severity: Notice --> Undefined property: stdClass::$amountreceived C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 315
+ERROR - 2019-01-09 12:12:58 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 324
+ERROR - 2019-01-09 12:12:58 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 324
+ERROR - 2019-01-09 12:12:58 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 325
+ERROR - 2019-01-09 12:12:58 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 325
+ERROR - 2019-01-09 12:12:59 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 326
+ERROR - 2019-01-09 12:12:59 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 326
+ERROR - 2019-01-09 12:12:59 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 327
+ERROR - 2019-01-09 12:12:59 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 327
+ERROR - 2019-01-09 12:12:59 --> Severity: Notice --> Undefined variable: record C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 356
+ERROR - 2019-01-09 12:13:00 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 356
+ERROR - 2019-01-09 12:13:00 --> Severity: Notice --> Undefined property: stdClass::$amountreceived C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 315
+ERROR - 2019-01-09 12:13:00 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 324
+ERROR - 2019-01-09 12:13:00 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 324
+ERROR - 2019-01-09 12:13:00 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 325
+ERROR - 2019-01-09 12:13:00 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 325
+ERROR - 2019-01-09 12:13:00 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 326
+ERROR - 2019-01-09 12:13:01 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 326
+ERROR - 2019-01-09 12:13:01 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 327
+ERROR - 2019-01-09 12:13:01 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 327
+ERROR - 2019-01-09 12:13:01 --> Severity: Notice --> Undefined variable: record C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 356
+ERROR - 2019-01-09 12:13:01 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 356
+ERROR - 2019-01-09 12:13:01 --> Severity: Notice --> Undefined property: stdClass::$amountreceived C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 315
+ERROR - 2019-01-09 12:13:02 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 324
+ERROR - 2019-01-09 12:13:02 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 324
+ERROR - 2019-01-09 12:13:02 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 325
+ERROR - 2019-01-09 12:13:02 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 325
+ERROR - 2019-01-09 12:13:02 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 326
+ERROR - 2019-01-09 12:13:02 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 326
+ERROR - 2019-01-09 12:13:03 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 327
+ERROR - 2019-01-09 12:13:03 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 327
+ERROR - 2019-01-09 12:13:03 --> Severity: Notice --> Undefined variable: record C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 356
+ERROR - 2019-01-09 12:13:03 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 356
+ERROR - 2019-01-09 12:13:03 --> Severity: Notice --> Undefined property: stdClass::$amountreceived C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 315
+ERROR - 2019-01-09 12:13:03 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 324
+ERROR - 2019-01-09 12:13:04 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 324
+ERROR - 2019-01-09 12:13:04 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 325
+ERROR - 2019-01-09 12:13:04 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 325
+ERROR - 2019-01-09 12:13:04 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 326
+ERROR - 2019-01-09 12:13:04 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 326
+ERROR - 2019-01-09 12:13:04 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 327
+ERROR - 2019-01-09 12:13:04 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 327
+ERROR - 2019-01-09 12:13:05 --> Severity: Notice --> Undefined variable: record C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 356
+ERROR - 2019-01-09 12:13:05 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 356
+ERROR - 2019-01-09 12:13:05 --> Severity: Notice --> Undefined property: stdClass::$amountreceived C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 315
+ERROR - 2019-01-09 12:13:05 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 324
+ERROR - 2019-01-09 12:13:05 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 324
+ERROR - 2019-01-09 12:13:05 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 325
+ERROR - 2019-01-09 12:13:06 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 325
+ERROR - 2019-01-09 12:13:06 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 326
+ERROR - 2019-01-09 12:13:06 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 326
+ERROR - 2019-01-09 12:13:06 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 327
+ERROR - 2019-01-09 12:13:06 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 327
+ERROR - 2019-01-09 12:13:07 --> Severity: Notice --> Undefined variable: record C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 356
+ERROR - 2019-01-09 12:13:07 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 356
+ERROR - 2019-01-09 12:13:07 --> Severity: Notice --> Undefined property: stdClass::$amountreceived C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 315
+ERROR - 2019-01-09 12:13:07 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 324
+ERROR - 2019-01-09 12:13:07 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 324
+ERROR - 2019-01-09 12:13:07 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 325
+ERROR - 2019-01-09 12:13:08 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 325
+ERROR - 2019-01-09 12:13:08 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 326
+ERROR - 2019-01-09 12:13:08 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 326
+ERROR - 2019-01-09 12:13:08 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 327
+ERROR - 2019-01-09 12:13:08 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 327
+ERROR - 2019-01-09 12:13:08 --> Severity: Notice --> Undefined variable: record C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 356
+ERROR - 2019-01-09 12:13:08 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 356
+ERROR - 2019-01-09 12:13:09 --> Severity: Notice --> Undefined property: stdClass::$amountreceived C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 315
+ERROR - 2019-01-09 12:13:09 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 324
+ERROR - 2019-01-09 12:13:09 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 324
+ERROR - 2019-01-09 12:13:09 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 325
+ERROR - 2019-01-09 12:13:10 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 325
+ERROR - 2019-01-09 12:13:10 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 326
+ERROR - 2019-01-09 12:13:10 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 326
+ERROR - 2019-01-09 12:13:10 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 327
+ERROR - 2019-01-09 12:13:11 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 327
+ERROR - 2019-01-09 12:13:11 --> Severity: Notice --> Undefined variable: record C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 356
+ERROR - 2019-01-09 12:13:11 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 356
+ERROR - 2019-01-09 12:13:12 --> Severity: Notice --> Undefined property: stdClass::$amountreceived C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 315
+ERROR - 2019-01-09 12:13:12 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 324
+ERROR - 2019-01-09 12:13:13 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 324
+ERROR - 2019-01-09 12:13:13 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 325
+ERROR - 2019-01-09 12:13:13 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 325
+ERROR - 2019-01-09 12:13:13 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 326
+ERROR - 2019-01-09 12:13:13 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 326
+ERROR - 2019-01-09 12:13:13 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 327
+ERROR - 2019-01-09 12:13:14 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 327
+ERROR - 2019-01-09 12:13:14 --> Severity: Notice --> Undefined variable: record C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 356
+ERROR - 2019-01-09 12:13:14 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 356
+ERROR - 2019-01-09 12:13:14 --> Severity: Notice --> Undefined property: stdClass::$amountreceived C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 315
+ERROR - 2019-01-09 12:13:14 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 324
+ERROR - 2019-01-09 12:13:14 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 324
+ERROR - 2019-01-09 12:13:14 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 325
+ERROR - 2019-01-09 12:13:14 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 325
+ERROR - 2019-01-09 12:13:15 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 326
+ERROR - 2019-01-09 12:13:15 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 326
+ERROR - 2019-01-09 12:13:15 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 327
+ERROR - 2019-01-09 12:13:15 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 327
+ERROR - 2019-01-09 12:13:15 --> Severity: Notice --> Undefined variable: record C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 356
+ERROR - 2019-01-09 12:13:15 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 356
+ERROR - 2019-01-09 12:13:16 --> Severity: Notice --> Undefined property: stdClass::$amountreceived C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 315
+ERROR - 2019-01-09 12:13:16 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 324
+ERROR - 2019-01-09 12:13:16 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 324
+ERROR - 2019-01-09 12:13:16 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 325
+ERROR - 2019-01-09 12:13:16 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 325
+ERROR - 2019-01-09 12:13:16 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 326
+ERROR - 2019-01-09 12:13:17 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 326
+ERROR - 2019-01-09 12:13:17 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 327
+ERROR - 2019-01-09 12:13:17 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 327
+ERROR - 2019-01-09 12:13:17 --> Severity: Notice --> Undefined variable: record C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 356
+ERROR - 2019-01-09 12:13:17 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 356
+ERROR - 2019-01-09 12:13:18 --> Severity: Notice --> Undefined property: stdClass::$amountreceived C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 315
+ERROR - 2019-01-09 12:13:18 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 324
+ERROR - 2019-01-09 12:13:18 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 324
+ERROR - 2019-01-09 12:13:18 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 325
+ERROR - 2019-01-09 12:13:18 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 325
+ERROR - 2019-01-09 12:13:18 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 326
+ERROR - 2019-01-09 12:13:19 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 326
+ERROR - 2019-01-09 12:13:19 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 327
+ERROR - 2019-01-09 12:13:19 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 327
+ERROR - 2019-01-09 12:13:19 --> Severity: Notice --> Undefined variable: record C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 356
+ERROR - 2019-01-09 12:13:19 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 356
+ERROR - 2019-01-09 12:13:19 --> Severity: Notice --> Undefined property: stdClass::$amountreceived C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 315
+ERROR - 2019-01-09 12:13:20 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 324
+ERROR - 2019-01-09 12:13:20 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 324
+ERROR - 2019-01-09 12:13:20 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 325
+ERROR - 2019-01-09 12:13:20 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 325
+ERROR - 2019-01-09 12:13:20 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 326
+ERROR - 2019-01-09 12:13:20 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 326
+ERROR - 2019-01-09 12:13:21 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 327
+ERROR - 2019-01-09 12:13:21 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 327
+ERROR - 2019-01-09 12:13:21 --> Severity: Notice --> Undefined variable: record C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 356
+ERROR - 2019-01-09 12:13:21 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 356
+ERROR - 2019-01-09 12:13:21 --> Severity: Notice --> Undefined property: stdClass::$amountreceived C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 315
+ERROR - 2019-01-09 12:13:21 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 324
+ERROR - 2019-01-09 12:13:22 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 324
+ERROR - 2019-01-09 12:13:22 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 325
+ERROR - 2019-01-09 12:13:22 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 325
+ERROR - 2019-01-09 12:13:22 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 326
+ERROR - 2019-01-09 12:13:22 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 326
+ERROR - 2019-01-09 12:13:22 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 327
+ERROR - 2019-01-09 12:13:23 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 327
+ERROR - 2019-01-09 12:13:23 --> Severity: Notice --> Undefined variable: record C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 356
+ERROR - 2019-01-09 12:13:23 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 356
+ERROR - 2019-01-09 12:13:23 --> Severity: Notice --> Undefined property: stdClass::$amountreceived C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 315
+ERROR - 2019-01-09 12:13:23 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 324
+ERROR - 2019-01-09 12:13:23 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 324
+ERROR - 2019-01-09 12:13:24 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 325
+ERROR - 2019-01-09 12:13:24 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 325
+ERROR - 2019-01-09 12:13:24 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 326
+ERROR - 2019-01-09 12:13:24 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 326
+ERROR - 2019-01-09 12:13:24 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 327
+ERROR - 2019-01-09 12:13:24 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 327
+ERROR - 2019-01-09 12:13:25 --> Severity: Notice --> Undefined variable: record C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 356
+ERROR - 2019-01-09 12:13:25 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 356
+ERROR - 2019-01-09 12:13:25 --> Severity: Notice --> Undefined property: stdClass::$amountreceived C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 315
+ERROR - 2019-01-09 12:13:25 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 324
+ERROR - 2019-01-09 12:13:25 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 324
+ERROR - 2019-01-09 12:13:25 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 325
+ERROR - 2019-01-09 12:13:26 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 325
+ERROR - 2019-01-09 12:13:26 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 326
+ERROR - 2019-01-09 12:13:26 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 326
+ERROR - 2019-01-09 12:13:26 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 327
+ERROR - 2019-01-09 12:13:26 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 327
+ERROR - 2019-01-09 12:13:26 --> Severity: Notice --> Undefined variable: record C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 356
+ERROR - 2019-01-09 12:13:27 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 356
+ERROR - 2019-01-09 12:13:27 --> Severity: Notice --> Undefined property: stdClass::$amountreceived C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 315
+ERROR - 2019-01-09 12:13:27 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 324
+ERROR - 2019-01-09 12:13:27 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 324
+ERROR - 2019-01-09 12:13:27 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 325
+ERROR - 2019-01-09 12:13:27 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 325
+ERROR - 2019-01-09 12:13:27 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 326
+ERROR - 2019-01-09 12:13:28 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 326
+ERROR - 2019-01-09 12:13:28 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 327
+ERROR - 2019-01-09 12:13:28 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 327
+ERROR - 2019-01-09 12:13:28 --> Severity: Notice --> Undefined variable: record C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 356
+ERROR - 2019-01-09 12:13:28 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 356
+ERROR - 2019-01-09 12:13:28 --> Severity: Notice --> Undefined property: stdClass::$amountreceived C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 315
+ERROR - 2019-01-09 12:13:29 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 324
+ERROR - 2019-01-09 12:13:29 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 324
+ERROR - 2019-01-09 12:13:29 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 325
+ERROR - 2019-01-09 12:13:29 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 325
+ERROR - 2019-01-09 12:13:29 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 326
+ERROR - 2019-01-09 12:13:29 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 326
+ERROR - 2019-01-09 12:13:30 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 327
+ERROR - 2019-01-09 12:13:30 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 327
+ERROR - 2019-01-09 12:13:30 --> Severity: Notice --> Undefined variable: record C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 356
+ERROR - 2019-01-09 12:13:30 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 356
+ERROR - 2019-01-09 12:13:30 --> Severity: Notice --> Undefined property: stdClass::$amountreceived C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 315
+ERROR - 2019-01-09 12:13:30 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 324
+ERROR - 2019-01-09 12:13:31 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 324
+ERROR - 2019-01-09 12:13:31 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 325
+ERROR - 2019-01-09 12:13:31 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 325
+ERROR - 2019-01-09 12:13:31 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 326
+ERROR - 2019-01-09 12:13:31 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 326
+ERROR - 2019-01-09 12:13:31 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 327
+ERROR - 2019-01-09 12:13:32 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 327
+ERROR - 2019-01-09 12:13:32 --> Severity: Notice --> Undefined variable: record C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 356
+ERROR - 2019-01-09 12:13:32 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 356
+ERROR - 2019-01-09 12:13:32 --> Severity: Notice --> Undefined property: stdClass::$amountreceived C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 315
+ERROR - 2019-01-09 12:13:32 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 324
+ERROR - 2019-01-09 12:13:32 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 324
+ERROR - 2019-01-09 12:13:33 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 325
+ERROR - 2019-01-09 12:13:33 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 325
+ERROR - 2019-01-09 12:13:33 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 326
+ERROR - 2019-01-09 12:13:33 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 326
+ERROR - 2019-01-09 12:13:33 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 327
+ERROR - 2019-01-09 12:13:33 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 327
+ERROR - 2019-01-09 12:13:33 --> Severity: Notice --> Undefined variable: record C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 356
+ERROR - 2019-01-09 12:13:34 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 356
+ERROR - 2019-01-09 12:13:34 --> Severity: Notice --> Undefined property: stdClass::$amountreceived C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 315
+ERROR - 2019-01-09 12:13:34 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 324
+ERROR - 2019-01-09 12:13:34 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 324
+ERROR - 2019-01-09 12:13:34 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 325
+ERROR - 2019-01-09 12:13:34 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 325
+ERROR - 2019-01-09 12:13:35 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 326
+ERROR - 2019-01-09 12:13:35 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 326
+ERROR - 2019-01-09 12:13:35 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 327
+ERROR - 2019-01-09 12:13:35 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 327
+ERROR - 2019-01-09 12:13:35 --> Severity: Notice --> Undefined variable: record C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 356
+ERROR - 2019-01-09 12:13:35 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 356
+ERROR - 2019-01-09 12:13:36 --> Severity: Notice --> Undefined property: stdClass::$amountreceived C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 315
+ERROR - 2019-01-09 12:13:36 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 324
+ERROR - 2019-01-09 12:13:36 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 324
+ERROR - 2019-01-09 12:13:36 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 325
+ERROR - 2019-01-09 12:13:36 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 325
+ERROR - 2019-01-09 12:13:36 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 326
+ERROR - 2019-01-09 12:13:37 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 326
+ERROR - 2019-01-09 12:13:37 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 327
+ERROR - 2019-01-09 12:13:37 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 327
+ERROR - 2019-01-09 12:13:37 --> Severity: Notice --> Undefined variable: record C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 356
+ERROR - 2019-01-09 12:13:37 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 356
+ERROR - 2019-01-09 12:13:37 --> Severity: Notice --> Undefined property: stdClass::$amountreceived C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 315
+ERROR - 2019-01-09 12:13:37 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 324
+ERROR - 2019-01-09 12:13:38 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 324
+ERROR - 2019-01-09 12:13:38 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 325
+ERROR - 2019-01-09 12:13:38 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 325
+ERROR - 2019-01-09 12:13:38 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 326
+ERROR - 2019-01-09 12:13:38 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 326
+ERROR - 2019-01-09 12:13:38 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 327
+ERROR - 2019-01-09 12:13:39 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 327
+ERROR - 2019-01-09 12:13:39 --> Severity: Notice --> Undefined variable: record C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 356
+ERROR - 2019-01-09 12:13:39 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 356
+ERROR - 2019-01-09 12:13:39 --> Severity: Notice --> Undefined property: stdClass::$amountreceived C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 315
+ERROR - 2019-01-09 12:13:39 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 324
+ERROR - 2019-01-09 12:13:39 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 324
+ERROR - 2019-01-09 12:13:40 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 325
+ERROR - 2019-01-09 12:13:40 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 325
+ERROR - 2019-01-09 12:13:40 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 326
+ERROR - 2019-01-09 12:13:40 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 326
+ERROR - 2019-01-09 12:13:40 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 327
+ERROR - 2019-01-09 12:13:40 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 327
+ERROR - 2019-01-09 12:13:41 --> Severity: Notice --> Undefined variable: record C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 356
+ERROR - 2019-01-09 12:13:41 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 356
+ERROR - 2019-01-09 12:13:41 --> Severity: Notice --> Undefined property: stdClass::$amountreceived C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 315
+ERROR - 2019-01-09 12:13:41 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 324
+ERROR - 2019-01-09 12:13:41 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 324
+ERROR - 2019-01-09 12:13:41 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 325
+ERROR - 2019-01-09 12:13:42 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 325
+ERROR - 2019-01-09 12:13:42 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 326
+ERROR - 2019-01-09 12:13:42 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 326
+ERROR - 2019-01-09 12:13:42 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 327
+ERROR - 2019-01-09 12:13:42 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 327
+ERROR - 2019-01-09 12:13:42 --> Severity: Notice --> Undefined variable: record C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 356
+ERROR - 2019-01-09 12:13:43 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 356
+ERROR - 2019-01-09 12:13:43 --> Severity: Notice --> Undefined property: stdClass::$amountreceived C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 315
+ERROR - 2019-01-09 12:13:43 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 324
+ERROR - 2019-01-09 12:13:43 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 324
+ERROR - 2019-01-09 12:13:43 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 325
+ERROR - 2019-01-09 12:13:43 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 325
+ERROR - 2019-01-09 12:13:44 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 326
+ERROR - 2019-01-09 12:13:44 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 326
+ERROR - 2019-01-09 12:13:44 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 327
+ERROR - 2019-01-09 12:13:44 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 327
+ERROR - 2019-01-09 12:13:44 --> Severity: Notice --> Undefined variable: record C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 356
+ERROR - 2019-01-09 12:13:44 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 356
+ERROR - 2019-01-09 12:13:44 --> Severity: Notice --> Undefined property: stdClass::$amountreceived C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 315
+ERROR - 2019-01-09 12:13:45 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 324
+ERROR - 2019-01-09 12:13:45 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 324
+ERROR - 2019-01-09 12:13:45 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 325
+ERROR - 2019-01-09 12:13:45 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 325
+ERROR - 2019-01-09 12:13:45 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 326
+ERROR - 2019-01-09 12:13:45 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 326
+ERROR - 2019-01-09 12:13:46 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 327
+ERROR - 2019-01-09 12:13:46 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 327
+ERROR - 2019-01-09 12:13:46 --> Severity: Notice --> Undefined variable: record C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 356
+ERROR - 2019-01-09 12:13:46 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 356
+ERROR - 2019-01-09 12:13:46 --> Severity: Notice --> Undefined property: stdClass::$amountreceived C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 315
+ERROR - 2019-01-09 12:13:46 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 324
+ERROR - 2019-01-09 12:13:47 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 324
+ERROR - 2019-01-09 12:13:47 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 325
+ERROR - 2019-01-09 12:13:47 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 325
+ERROR - 2019-01-09 12:13:47 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 326
+ERROR - 2019-01-09 12:13:47 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 326
+ERROR - 2019-01-09 12:13:47 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 327
+ERROR - 2019-01-09 12:13:48 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 327
+ERROR - 2019-01-09 12:13:48 --> Severity: Notice --> Undefined variable: record C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 356
+ERROR - 2019-01-09 12:13:48 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 356
+ERROR - 2019-01-09 12:13:48 --> Severity: Notice --> Undefined property: stdClass::$amountreceived C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 315
+ERROR - 2019-01-09 12:13:48 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 324
+ERROR - 2019-01-09 12:13:48 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 324
+ERROR - 2019-01-09 12:13:49 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 325
+ERROR - 2019-01-09 12:13:49 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 325
+ERROR - 2019-01-09 12:13:49 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 326
+ERROR - 2019-01-09 12:13:49 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 326
+ERROR - 2019-01-09 12:13:49 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 327
+ERROR - 2019-01-09 12:13:49 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 327
+ERROR - 2019-01-09 12:13:50 --> Severity: Notice --> Undefined variable: record C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 356
+ERROR - 2019-01-09 12:13:50 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 356
+ERROR - 2019-01-09 12:13:50 --> Severity: Notice --> Undefined property: stdClass::$amountreceived C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 315
+ERROR - 2019-01-09 12:13:50 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 324
+ERROR - 2019-01-09 12:13:50 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 324
+ERROR - 2019-01-09 12:13:50 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 325
+ERROR - 2019-01-09 12:13:51 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 325
+ERROR - 2019-01-09 12:13:51 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 326
+ERROR - 2019-01-09 12:13:51 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 326
+ERROR - 2019-01-09 12:13:51 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 327
+ERROR - 2019-01-09 12:13:51 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 327
+ERROR - 2019-01-09 12:13:51 --> Severity: Notice --> Undefined variable: record C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 356
+ERROR - 2019-01-09 12:13:52 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 356
+ERROR - 2019-01-09 12:13:52 --> Severity: Notice --> Undefined property: stdClass::$amountreceived C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 315
+ERROR - 2019-01-09 12:13:52 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 324
+ERROR - 2019-01-09 12:13:52 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 324
+ERROR - 2019-01-09 12:13:52 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 325
+ERROR - 2019-01-09 12:13:52 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 325
+ERROR - 2019-01-09 12:13:52 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 326
+ERROR - 2019-01-09 12:13:53 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 326
+ERROR - 2019-01-09 12:13:53 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 327
+ERROR - 2019-01-09 12:13:53 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 327
+ERROR - 2019-01-09 12:13:53 --> Severity: Notice --> Undefined variable: record C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 356
+ERROR - 2019-01-09 12:13:53 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 356
+ERROR - 2019-01-09 12:13:53 --> Severity: Notice --> Undefined property: stdClass::$amountreceived C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 315
+ERROR - 2019-01-09 12:13:54 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 324
+ERROR - 2019-01-09 12:13:54 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 324
+ERROR - 2019-01-09 12:13:54 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 325
+ERROR - 2019-01-09 12:13:54 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 325
+ERROR - 2019-01-09 12:13:54 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 326
+ERROR - 2019-01-09 12:13:54 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 326
+ERROR - 2019-01-09 12:13:55 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 327
+ERROR - 2019-01-09 12:13:55 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 327
+ERROR - 2019-01-09 12:13:55 --> Severity: Notice --> Undefined variable: record C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 356
+ERROR - 2019-01-09 12:13:55 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 356
+ERROR - 2019-01-09 12:13:55 --> Severity: Notice --> Undefined property: stdClass::$amountreceived C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 315
+ERROR - 2019-01-09 12:13:55 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 324
+ERROR - 2019-01-09 12:13:56 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 324
+ERROR - 2019-01-09 12:13:56 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 325
+ERROR - 2019-01-09 12:13:56 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 325
+ERROR - 2019-01-09 12:13:56 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 326
+ERROR - 2019-01-09 12:13:56 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 326
+ERROR - 2019-01-09 12:13:56 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 327
+ERROR - 2019-01-09 12:13:57 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 327
+ERROR - 2019-01-09 12:13:57 --> Severity: Notice --> Undefined variable: record C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 356
+ERROR - 2019-01-09 12:13:57 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 356
+ERROR - 2019-01-09 12:13:57 --> Severity: Notice --> Undefined property: stdClass::$amountreceived C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 315
+ERROR - 2019-01-09 12:13:57 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 324
+ERROR - 2019-01-09 12:13:57 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 324
+ERROR - 2019-01-09 12:13:58 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 325
+ERROR - 2019-01-09 12:13:58 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 325
+ERROR - 2019-01-09 12:13:58 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 326
+ERROR - 2019-01-09 12:13:58 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 326
+ERROR - 2019-01-09 12:13:58 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 327
+ERROR - 2019-01-09 12:13:58 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 327
+ERROR - 2019-01-09 12:13:58 --> Severity: Notice --> Undefined variable: record C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 356
+ERROR - 2019-01-09 12:13:59 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 356
+ERROR - 2019-01-09 12:13:59 --> Severity: Notice --> Undefined property: stdClass::$amountreceived C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 315
+ERROR - 2019-01-09 12:13:59 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 324
+ERROR - 2019-01-09 12:13:59 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 324
+ERROR - 2019-01-09 12:13:59 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 325
+ERROR - 2019-01-09 12:13:59 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 325
+ERROR - 2019-01-09 12:14:00 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 326
+ERROR - 2019-01-09 12:14:00 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 326
+ERROR - 2019-01-09 12:14:00 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 327
+ERROR - 2019-01-09 12:14:00 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 327
+ERROR - 2019-01-09 12:14:00 --> Severity: Notice --> Undefined variable: record C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 356
+ERROR - 2019-01-09 12:14:01 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 356
+ERROR - 2019-01-09 12:14:01 --> Severity: Notice --> Undefined property: stdClass::$amountreceived C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 315
+ERROR - 2019-01-09 12:14:01 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 324
+ERROR - 2019-01-09 12:14:01 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 324
+ERROR - 2019-01-09 12:14:01 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 325
+ERROR - 2019-01-09 12:14:01 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 325
+ERROR - 2019-01-09 12:14:01 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 326
+ERROR - 2019-01-09 12:14:02 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 326
+ERROR - 2019-01-09 12:14:02 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 327
+ERROR - 2019-01-09 12:14:02 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 327
+ERROR - 2019-01-09 12:14:02 --> Severity: Notice --> Undefined variable: record C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 356
+ERROR - 2019-01-09 12:14:02 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 356
+ERROR - 2019-01-09 12:14:02 --> Severity: Notice --> Undefined property: stdClass::$amountreceived C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 315
+ERROR - 2019-01-09 12:14:03 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 324
+ERROR - 2019-01-09 12:14:03 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 324
+ERROR - 2019-01-09 12:14:03 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 325
+ERROR - 2019-01-09 12:14:03 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 325
+ERROR - 2019-01-09 12:14:03 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 326
+ERROR - 2019-01-09 12:14:03 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 326
+ERROR - 2019-01-09 12:14:04 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 327
+ERROR - 2019-01-09 12:14:04 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 327
+ERROR - 2019-01-09 12:14:04 --> Severity: Notice --> Undefined variable: record C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 356
+ERROR - 2019-01-09 12:14:04 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 356
+ERROR - 2019-01-09 12:14:04 --> Severity: Notice --> Undefined property: stdClass::$amountreceived C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 315
+ERROR - 2019-01-09 12:14:04 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 324
+ERROR - 2019-01-09 12:14:05 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 324
+ERROR - 2019-01-09 12:14:05 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 325
+ERROR - 2019-01-09 12:14:05 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 325
+ERROR - 2019-01-09 12:14:05 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 326
+ERROR - 2019-01-09 12:14:05 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 326
+ERROR - 2019-01-09 12:14:05 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 327
+ERROR - 2019-01-09 12:14:06 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 327
+ERROR - 2019-01-09 12:14:06 --> Severity: Notice --> Undefined variable: record C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 356
+ERROR - 2019-01-09 12:14:06 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 356
+ERROR - 2019-01-09 12:14:06 --> Severity: Notice --> Undefined property: stdClass::$amountreceived C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 315
+ERROR - 2019-01-09 12:14:06 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 324
+ERROR - 2019-01-09 12:14:06 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 324
+ERROR - 2019-01-09 12:14:07 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 325
+ERROR - 2019-01-09 12:14:07 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 325
+ERROR - 2019-01-09 12:14:07 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 326
+ERROR - 2019-01-09 12:14:07 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 326
+ERROR - 2019-01-09 12:14:07 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 327
+ERROR - 2019-01-09 12:14:07 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 327
+ERROR - 2019-01-09 12:14:07 --> Severity: Notice --> Undefined variable: record C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 356
+ERROR - 2019-01-09 12:14:08 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 356
+ERROR - 2019-01-09 12:14:08 --> Severity: Notice --> Undefined property: stdClass::$amountreceived C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 315
+ERROR - 2019-01-09 12:14:08 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 324
+ERROR - 2019-01-09 12:14:08 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 324
+ERROR - 2019-01-09 12:14:08 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 325
+ERROR - 2019-01-09 12:14:08 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 325
+ERROR - 2019-01-09 12:14:09 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 326
+ERROR - 2019-01-09 12:14:09 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 326
+ERROR - 2019-01-09 12:14:09 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 327
+ERROR - 2019-01-09 12:14:09 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 327
+ERROR - 2019-01-09 12:14:09 --> Severity: Notice --> Undefined variable: record C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 356
+ERROR - 2019-01-09 12:14:09 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 356
+ERROR - 2019-01-09 12:14:10 --> Severity: Notice --> Undefined property: stdClass::$amountreceived C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 315
+ERROR - 2019-01-09 12:14:10 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 324
+ERROR - 2019-01-09 12:14:10 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 324
+ERROR - 2019-01-09 12:14:10 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 325
+ERROR - 2019-01-09 12:14:10 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 325
+ERROR - 2019-01-09 12:14:10 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 326
+ERROR - 2019-01-09 12:14:11 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 326
+ERROR - 2019-01-09 12:14:11 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 327
+ERROR - 2019-01-09 12:14:11 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 327
+ERROR - 2019-01-09 12:14:11 --> Severity: Notice --> Undefined variable: record C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 356
+ERROR - 2019-01-09 12:14:11 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 356
+ERROR - 2019-01-09 12:14:11 --> Severity: Notice --> Undefined property: stdClass::$amountreceived C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 315
+ERROR - 2019-01-09 12:14:12 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 324
+ERROR - 2019-01-09 12:14:12 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 324
+ERROR - 2019-01-09 12:14:12 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 325
+ERROR - 2019-01-09 12:14:12 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 325
+ERROR - 2019-01-09 12:14:12 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 326
+ERROR - 2019-01-09 12:14:12 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 326
+ERROR - 2019-01-09 12:14:13 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 327
+ERROR - 2019-01-09 12:14:13 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 327
+ERROR - 2019-01-09 12:14:13 --> Severity: Notice --> Undefined variable: record C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 356
+ERROR - 2019-01-09 12:14:13 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 356
+ERROR - 2019-01-09 12:14:13 --> Severity: Notice --> Undefined property: stdClass::$amountreceived C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 315
+ERROR - 2019-01-09 12:14:14 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 324
+ERROR - 2019-01-09 12:14:14 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 324
+ERROR - 2019-01-09 12:14:14 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 325
+ERROR - 2019-01-09 12:14:14 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 325
+ERROR - 2019-01-09 12:14:14 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 326
+ERROR - 2019-01-09 12:14:14 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 326
+ERROR - 2019-01-09 12:14:15 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 327
+ERROR - 2019-01-09 12:14:15 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 327
+ERROR - 2019-01-09 12:14:15 --> Severity: Notice --> Undefined variable: record C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 356
+ERROR - 2019-01-09 12:14:15 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 356
+ERROR - 2019-01-09 12:14:15 --> Severity: Notice --> Undefined property: stdClass::$amountreceived C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 315
+ERROR - 2019-01-09 12:14:15 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 324
+ERROR - 2019-01-09 12:14:16 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 324
+ERROR - 2019-01-09 12:14:16 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 325
+ERROR - 2019-01-09 12:14:16 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 325
+ERROR - 2019-01-09 12:14:16 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 326
+ERROR - 2019-01-09 12:14:16 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 326
+ERROR - 2019-01-09 12:14:16 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 327
+ERROR - 2019-01-09 12:14:16 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 327
+ERROR - 2019-01-09 12:14:17 --> Severity: Notice --> Undefined variable: record C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 356
+ERROR - 2019-01-09 12:14:17 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 356
+ERROR - 2019-01-09 12:14:17 --> Severity: Notice --> Undefined property: stdClass::$amountreceived C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 315
+ERROR - 2019-01-09 12:14:17 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 324
+ERROR - 2019-01-09 12:14:17 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 324
+ERROR - 2019-01-09 12:14:17 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 325
+ERROR - 2019-01-09 12:14:18 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 325
+ERROR - 2019-01-09 12:14:18 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 326
+ERROR - 2019-01-09 12:14:18 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 326
+ERROR - 2019-01-09 12:14:18 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 327
+ERROR - 2019-01-09 12:14:18 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 327
+ERROR - 2019-01-09 12:14:18 --> Severity: Notice --> Undefined variable: record C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 356
+ERROR - 2019-01-09 12:14:19 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 356
+ERROR - 2019-01-09 12:14:19 --> Severity: Notice --> Undefined property: stdClass::$amountreceived C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 315
+ERROR - 2019-01-09 12:14:19 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 324
+ERROR - 2019-01-09 12:14:19 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 324
+ERROR - 2019-01-09 12:14:19 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 325
+ERROR - 2019-01-09 12:14:19 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 325
+ERROR - 2019-01-09 12:14:20 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 326
+ERROR - 2019-01-09 12:14:20 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 326
+ERROR - 2019-01-09 12:14:20 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 327
+ERROR - 2019-01-09 12:14:20 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 327
+ERROR - 2019-01-09 12:14:20 --> Severity: Notice --> Undefined variable: record C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 356
+ERROR - 2019-01-09 12:14:20 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 356
+ERROR - 2019-01-09 12:14:21 --> Severity: Notice --> Undefined property: stdClass::$amountreceived C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 315
+ERROR - 2019-01-09 12:14:21 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 324
+ERROR - 2019-01-09 12:14:21 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 324
+ERROR - 2019-01-09 12:14:22 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 325
+ERROR - 2019-01-09 12:14:22 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 325
+ERROR - 2019-01-09 12:14:22 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 326
+ERROR - 2019-01-09 12:14:22 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 326
+ERROR - 2019-01-09 12:14:22 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 327
+ERROR - 2019-01-09 12:14:22 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 327
+ERROR - 2019-01-09 12:14:22 --> Severity: Notice --> Undefined variable: record C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 356
+ERROR - 2019-01-09 12:14:23 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 356
+ERROR - 2019-01-09 12:14:23 --> Severity: Notice --> Undefined property: stdClass::$amountreceived C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 315
+ERROR - 2019-01-09 12:14:23 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 324
+ERROR - 2019-01-09 12:14:23 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 324
+ERROR - 2019-01-09 12:14:23 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 325
+ERROR - 2019-01-09 12:14:23 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 325
+ERROR - 2019-01-09 12:14:24 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 326
+ERROR - 2019-01-09 12:14:24 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 326
+ERROR - 2019-01-09 12:14:24 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 327
+ERROR - 2019-01-09 12:14:24 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 327
+ERROR - 2019-01-09 12:14:24 --> Severity: Notice --> Undefined variable: record C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 356
+ERROR - 2019-01-09 12:14:24 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankcustomerledger.php 356
+ERROR - 2019-01-09 12:16:29 --> Severity: Notice --> Undefined variable: fdate C:\xampp\htdocs\ria\application\controllers\cashbook.php 1172
+ERROR - 2019-01-09 12:16:29 --> Severity: Notice --> Undefined variable: tdate C:\xampp\htdocs\ria\application\controllers\cashbook.php 1172
+ERROR - 2019-01-09 12:16:29 --> Severity: Notice --> Undefined variable: fa C:\xampp\htdocs\ria\application\controllers\cashbook.php 1172
+ERROR - 2019-01-09 12:16:30 --> Severity: Notice --> Undefined variable: aa C:\xampp\htdocs\ria\application\controllers\cashbook.php 1172
+ERROR - 2019-01-09 12:16:31 --> Severity: Notice --> Undefined variable: financialyear C:\xampp\htdocs\ria\application\views\bankstatement.php 2
+ERROR - 2019-01-09 12:16:31 --> Severity: Warning --> Invalid argument supplied for foreach() C:\xampp\htdocs\ria\application\views\bankstatement.php 2
+ERROR - 2019-01-09 12:16:31 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 85
+ERROR - 2019-01-09 12:16:31 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 85
+ERROR - 2019-01-09 12:16:32 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 86
+ERROR - 2019-01-09 12:16:32 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 86
+ERROR - 2019-01-09 12:16:32 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 87
+ERROR - 2019-01-09 12:16:32 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 87
+ERROR - 2019-01-09 12:16:32 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 137
+ERROR - 2019-01-09 12:16:33 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 137
+ERROR - 2019-01-09 12:16:33 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 138
+ERROR - 2019-01-09 12:16:33 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 138
+ERROR - 2019-01-09 12:16:33 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 139
+ERROR - 2019-01-09 12:16:34 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 139
+ERROR - 2019-01-09 12:24:35 --> Severity: Notice --> Undefined variable: financialyear C:\xampp\htdocs\ria\application\views\banksettlement.php 11
+ERROR - 2019-01-09 12:24:36 --> Severity: Warning --> Invalid argument supplied for foreach() C:\xampp\htdocs\ria\application\views\banksettlement.php 11
+ERROR - 2019-01-09 12:24:36 --> Severity: Notice --> Undefined variable: t C:\xampp\htdocs\ria\application\views\banksettlement.php 289
+ERROR - 2019-01-09 12:24:36 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\banksettlement.php 289
+ERROR - 2019-01-09 12:24:36 --> Severity: Notice --> Undefined variable: t C:\xampp\htdocs\ria\application\views\banksettlement.php 289
+ERROR - 2019-01-09 12:24:37 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\banksettlement.php 289
+ERROR - 2019-01-09 12:24:37 --> Severity: Notice --> Undefined variable: rel C:\xampp\htdocs\ria\application\views\banksettlement.php 290
+ERROR - 2019-01-09 12:24:37 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\banksettlement.php 290
+ERROR - 2019-01-09 12:24:37 --> Severity: Notice --> Undefined variable: record C:\xampp\htdocs\ria\application\views\banksettlement.php 345
+ERROR - 2019-01-09 12:24:37 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\banksettlement.php 345
+ERROR - 2019-01-09 12:24:37 --> Severity: Notice --> Undefined variable: t C:\xampp\htdocs\ria\application\views\banksettlement.php 289
+ERROR - 2019-01-09 12:24:38 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\banksettlement.php 289
+ERROR - 2019-01-09 12:24:38 --> Severity: Notice --> Undefined variable: t C:\xampp\htdocs\ria\application\views\banksettlement.php 289
+ERROR - 2019-01-09 12:24:38 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\banksettlement.php 289
+ERROR - 2019-01-09 12:24:38 --> Severity: Notice --> Undefined variable: rel C:\xampp\htdocs\ria\application\views\banksettlement.php 290
+ERROR - 2019-01-09 12:24:38 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\banksettlement.php 290
+ERROR - 2019-01-09 12:24:38 --> Severity: Notice --> Undefined variable: record C:\xampp\htdocs\ria\application\views\banksettlement.php 345
+ERROR - 2019-01-09 12:24:39 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\banksettlement.php 345
+ERROR - 2019-01-09 13:41:30 --> Severity: Warning --> mysqli_num_rows() expects parameter 1 to be mysqli_result, boolean given C:\xampp\htdocs\ria\system\database\drivers\mysqli\mysqli_result.php 38
+ERROR - 2019-01-09 13:43:09 --> Severity: Notice --> Undefined variable: fdate C:\xampp\htdocs\ria\application\controllers\cashbook.php 1172
+ERROR - 2019-01-09 13:43:10 --> Severity: Notice --> Undefined variable: tdate C:\xampp\htdocs\ria\application\controllers\cashbook.php 1172
+ERROR - 2019-01-09 13:43:10 --> Severity: Notice --> Undefined variable: fa C:\xampp\htdocs\ria\application\controllers\cashbook.php 1172
+ERROR - 2019-01-09 13:43:10 --> Severity: Notice --> Undefined variable: aa C:\xampp\htdocs\ria\application\controllers\cashbook.php 1172
+ERROR - 2019-01-09 13:43:11 --> Severity: Notice --> Undefined variable: financialyear C:\xampp\htdocs\ria\application\views\bankstatement.php 2
+ERROR - 2019-01-09 13:43:11 --> Severity: Warning --> Invalid argument supplied for foreach() C:\xampp\htdocs\ria\application\views\bankstatement.php 2
+ERROR - 2019-01-09 13:43:11 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 85
+ERROR - 2019-01-09 13:43:11 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 85
+ERROR - 2019-01-09 13:43:11 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 86
+ERROR - 2019-01-09 13:43:11 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 86
+ERROR - 2019-01-09 13:43:12 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 87
+ERROR - 2019-01-09 13:43:12 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 87
+ERROR - 2019-01-09 13:43:12 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 137
+ERROR - 2019-01-09 13:43:12 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 137
+ERROR - 2019-01-09 13:43:12 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 138
+ERROR - 2019-01-09 13:43:12 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 138
+ERROR - 2019-01-09 13:43:13 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 139
+ERROR - 2019-01-09 13:43:13 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 139
+ERROR - 2019-01-09 13:43:34 --> Severity: Notice --> Undefined variable: financialyear C:\xampp\htdocs\ria\application\views\bankdebit.php 2
+ERROR - 2019-01-09 13:43:34 --> Severity: Warning --> Invalid argument supplied for foreach() C:\xampp\htdocs\ria\application\views\bankdebit.php 2
+ERROR - 2019-01-09 13:44:54 --> Severity: Notice --> Undefined variable: financialyear C:\xampp\htdocs\ria\application\views\bankdebit.php 2
+ERROR - 2019-01-09 13:44:54 --> Severity: Warning --> Invalid argument supplied for foreach() C:\xampp\htdocs\ria\application\views\bankdebit.php 2
+ERROR - 2019-01-09 13:45:06 --> Severity: Notice --> Undefined variable: financialyear C:\xampp\htdocs\ria\application\views\bankdebit.php 2
+ERROR - 2019-01-09 13:45:06 --> Severity: Warning --> Invalid argument supplied for foreach() C:\xampp\htdocs\ria\application\views\bankdebit.php 2
+ERROR - 2019-01-09 13:45:06 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankdebit.php 177
+ERROR - 2019-01-09 13:45:06 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\ria\application\views\bankdebit.php 179
+ERROR - 2019-01-09 13:45:06 --> Severity: Notice --> Undefined property: stdClass::$IGRItemNo C:\xampp\htdocs\ria\application\views\bankdebit.php 193
+ERROR - 2019-01-09 13:45:06 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankdebit.php 177
+ERROR - 2019-01-09 13:45:07 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\ria\application\views\bankdebit.php 179
+ERROR - 2019-01-09 13:45:07 --> Severity: Notice --> Undefined property: stdClass::$IGRItemNo C:\xampp\htdocs\ria\application\views\bankdebit.php 193
+ERROR - 2019-01-09 13:45:07 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankdebit.php 177
+ERROR - 2019-01-09 13:45:07 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\ria\application\views\bankdebit.php 179
+ERROR - 2019-01-09 13:45:07 --> Severity: Notice --> Undefined property: stdClass::$IGRItemNo C:\xampp\htdocs\ria\application\views\bankdebit.php 193
+ERROR - 2019-01-09 13:45:07 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankdebit.php 177
+ERROR - 2019-01-09 13:45:08 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\ria\application\views\bankdebit.php 179
+ERROR - 2019-01-09 13:45:08 --> Severity: Notice --> Undefined property: stdClass::$IGRItemNo C:\xampp\htdocs\ria\application\views\bankdebit.php 193
+ERROR - 2019-01-09 13:45:08 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankdebit.php 177
+ERROR - 2019-01-09 13:45:08 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\ria\application\views\bankdebit.php 179
+ERROR - 2019-01-09 13:45:08 --> Severity: Notice --> Undefined property: stdClass::$IGRItemNo C:\xampp\htdocs\ria\application\views\bankdebit.php 193
+ERROR - 2019-01-09 13:45:08 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankdebit.php 177
+ERROR - 2019-01-09 13:45:09 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\ria\application\views\bankdebit.php 179
+ERROR - 2019-01-09 13:45:09 --> Severity: Notice --> Undefined property: stdClass::$IGRItemNo C:\xampp\htdocs\ria\application\views\bankdebit.php 193
+ERROR - 2019-01-09 13:45:09 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankdebit.php 177
+ERROR - 2019-01-09 13:45:09 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\ria\application\views\bankdebit.php 179
+ERROR - 2019-01-09 13:45:09 --> Severity: Notice --> Undefined property: stdClass::$IGRItemNo C:\xampp\htdocs\ria\application\views\bankdebit.php 193
+ERROR - 2019-01-09 13:45:09 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankdebit.php 177
+ERROR - 2019-01-09 13:45:10 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\ria\application\views\bankdebit.php 179
+ERROR - 2019-01-09 13:45:10 --> Severity: Notice --> Undefined property: stdClass::$IGRItemNo C:\xampp\htdocs\ria\application\views\bankdebit.php 193
+ERROR - 2019-01-09 13:45:10 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankdebit.php 177
+ERROR - 2019-01-09 13:45:10 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\ria\application\views\bankdebit.php 179
+ERROR - 2019-01-09 13:45:10 --> Severity: Notice --> Undefined property: stdClass::$IGRItemNo C:\xampp\htdocs\ria\application\views\bankdebit.php 193
+ERROR - 2019-01-09 13:45:10 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankdebit.php 177
+ERROR - 2019-01-09 13:45:11 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\ria\application\views\bankdebit.php 179
+ERROR - 2019-01-09 13:45:11 --> Severity: Notice --> Undefined property: stdClass::$IGRItemNo C:\xampp\htdocs\ria\application\views\bankdebit.php 193
+ERROR - 2019-01-09 13:45:11 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankdebit.php 177
+ERROR - 2019-01-09 13:45:11 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\ria\application\views\bankdebit.php 179
+ERROR - 2019-01-09 13:45:11 --> Severity: Notice --> Undefined property: stdClass::$IGRItemNo C:\xampp\htdocs\ria\application\views\bankdebit.php 193
+ERROR - 2019-01-09 13:45:11 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankdebit.php 177
+ERROR - 2019-01-09 13:45:12 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\ria\application\views\bankdebit.php 179
+ERROR - 2019-01-09 13:45:12 --> Severity: Notice --> Undefined property: stdClass::$IGRItemNo C:\xampp\htdocs\ria\application\views\bankdebit.php 193
+ERROR - 2019-01-09 13:45:12 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankdebit.php 177
+ERROR - 2019-01-09 13:45:12 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\ria\application\views\bankdebit.php 179
+ERROR - 2019-01-09 13:45:12 --> Severity: Notice --> Undefined property: stdClass::$IGRItemNo C:\xampp\htdocs\ria\application\views\bankdebit.php 193
+ERROR - 2019-01-09 13:45:12 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankdebit.php 177
+ERROR - 2019-01-09 13:45:13 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\ria\application\views\bankdebit.php 179
+ERROR - 2019-01-09 13:45:13 --> Severity: Notice --> Undefined property: stdClass::$IGRItemNo C:\xampp\htdocs\ria\application\views\bankdebit.php 193
+ERROR - 2019-01-09 13:45:13 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankdebit.php 177
+ERROR - 2019-01-09 13:45:13 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\ria\application\views\bankdebit.php 179
+ERROR - 2019-01-09 13:45:13 --> Severity: Notice --> Undefined property: stdClass::$IGRItemNo C:\xampp\htdocs\ria\application\views\bankdebit.php 193
+ERROR - 2019-01-09 13:45:13 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankdebit.php 177
+ERROR - 2019-01-09 13:45:14 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\ria\application\views\bankdebit.php 179
+ERROR - 2019-01-09 13:45:14 --> Severity: Notice --> Undefined property: stdClass::$IGRItemNo C:\xampp\htdocs\ria\application\views\bankdebit.php 193
+ERROR - 2019-01-09 13:45:43 --> Severity: Notice --> Undefined variable: data C:\xampp\htdocs\ria\application\controllers\cashbook.php 1456
+ERROR - 2019-01-09 13:45:44 --> Severity: Notice --> Undefined variable: financialyear C:\xampp\htdocs\ria\application\views\bankstatement.php 2
+ERROR - 2019-01-09 13:45:44 --> Severity: Warning --> Invalid argument supplied for foreach() C:\xampp\htdocs\ria\application\views\bankstatement.php 2
+ERROR - 2019-01-09 13:45:44 --> Severity: Notice --> Undefined variable: bankreport C:\xampp\htdocs\ria\application\views\bankstatement.php 8
+ERROR - 2019-01-09 13:45:44 --> Severity: Warning --> Invalid argument supplied for foreach() C:\xampp\htdocs\ria\application\views\bankstatement.php 8
+ERROR - 2019-01-09 13:45:44 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 85
+ERROR - 2019-01-09 13:45:44 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 85
+ERROR - 2019-01-09 13:45:45 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 86
+ERROR - 2019-01-09 13:45:45 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 86
+ERROR - 2019-01-09 13:45:45 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 87
+ERROR - 2019-01-09 13:45:45 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 87
+ERROR - 2019-01-09 13:45:45 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 137
+ERROR - 2019-01-09 13:45:45 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 137
+ERROR - 2019-01-09 13:45:45 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 138
+ERROR - 2019-01-09 13:45:46 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 138
+ERROR - 2019-01-09 13:45:46 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 139
+ERROR - 2019-01-09 13:45:46 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 139
+ERROR - 2019-01-09 13:45:46 --> Severity: Notice --> Undefined variable: finyear C:\xampp\htdocs\ria\application\views\bankstatement.php 197
+ERROR - 2019-01-09 13:45:46 --> Severity: Warning --> Invalid argument supplied for foreach() C:\xampp\htdocs\ria\application\views\bankstatement.php 197
+ERROR - 2019-01-09 13:45:46 --> Severity: Notice --> Undefined variable: Bankname C:\xampp\htdocs\ria\application\views\bankstatement.php 235
+ERROR - 2019-01-09 13:45:47 --> Severity: Notice --> Undefined variable: fdate C:\xampp\htdocs\ria\application\controllers\cashbook.php 1172
+ERROR - 2019-01-09 13:45:47 --> Severity: Notice --> Undefined variable: tdate C:\xampp\htdocs\ria\application\controllers\cashbook.php 1172
+ERROR - 2019-01-09 13:45:48 --> Severity: Notice --> Undefined variable: fa C:\xampp\htdocs\ria\application\controllers\cashbook.php 1172
+ERROR - 2019-01-09 13:45:48 --> Severity: Notice --> Undefined variable: aa C:\xampp\htdocs\ria\application\controllers\cashbook.php 1172
+ERROR - 2019-01-09 13:45:48 --> Severity: Notice --> Undefined variable: financialyear C:\xampp\htdocs\ria\application\views\bankstatement.php 2
+ERROR - 2019-01-09 13:45:48 --> Severity: Warning --> Invalid argument supplied for foreach() C:\xampp\htdocs\ria\application\views\bankstatement.php 2
+ERROR - 2019-01-09 13:45:49 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 85
+ERROR - 2019-01-09 13:45:49 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 85
+ERROR - 2019-01-09 13:45:49 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 86
+ERROR - 2019-01-09 13:45:49 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 86
+ERROR - 2019-01-09 13:45:49 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 87
+ERROR - 2019-01-09 13:45:49 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 87
+ERROR - 2019-01-09 13:45:50 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 137
+ERROR - 2019-01-09 13:45:50 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 137
+ERROR - 2019-01-09 13:45:50 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 138
+ERROR - 2019-01-09 13:45:50 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 138
+ERROR - 2019-01-09 13:45:50 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 139
+ERROR - 2019-01-09 13:45:50 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 139
+ERROR - 2019-01-09 13:46:02 --> Severity: Notice --> Undefined variable: financialyear C:\xampp\htdocs\ria\application\views\banksettlement.php 11
+ERROR - 2019-01-09 13:46:02 --> Severity: Warning --> Invalid argument supplied for foreach() C:\xampp\htdocs\ria\application\views\banksettlement.php 11
+ERROR - 2019-01-09 13:46:02 --> Severity: Notice --> Undefined variable: t C:\xampp\htdocs\ria\application\views\banksettlement.php 289
+ERROR - 2019-01-09 13:46:02 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\banksettlement.php 289
+ERROR - 2019-01-09 13:46:02 --> Severity: Notice --> Undefined variable: t C:\xampp\htdocs\ria\application\views\banksettlement.php 289
+ERROR - 2019-01-09 13:46:03 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\banksettlement.php 289
+ERROR - 2019-01-09 13:46:03 --> Severity: Notice --> Undefined variable: rel C:\xampp\htdocs\ria\application\views\banksettlement.php 290
+ERROR - 2019-01-09 13:46:03 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\banksettlement.php 290
+ERROR - 2019-01-09 13:46:03 --> Severity: Notice --> Undefined variable: record C:\xampp\htdocs\ria\application\views\banksettlement.php 345
+ERROR - 2019-01-09 13:46:03 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\banksettlement.php 345
+ERROR - 2019-01-09 13:46:24 --> Severity: Notice --> Undefined variable: fdate C:\xampp\htdocs\ria\application\controllers\cashbook.php 1172
+ERROR - 2019-01-09 13:46:24 --> Severity: Notice --> Undefined variable: tdate C:\xampp\htdocs\ria\application\controllers\cashbook.php 1172
+ERROR - 2019-01-09 13:46:24 --> Severity: Notice --> Undefined variable: fa C:\xampp\htdocs\ria\application\controllers\cashbook.php 1172
+ERROR - 2019-01-09 13:46:24 --> Severity: Notice --> Undefined variable: aa C:\xampp\htdocs\ria\application\controllers\cashbook.php 1172
+ERROR - 2019-01-09 13:46:25 --> Severity: Notice --> Undefined variable: financialyear C:\xampp\htdocs\ria\application\views\bankstatement.php 2
+ERROR - 2019-01-09 13:46:25 --> Severity: Warning --> Invalid argument supplied for foreach() C:\xampp\htdocs\ria\application\views\bankstatement.php 2
+ERROR - 2019-01-09 13:46:25 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 85
+ERROR - 2019-01-09 13:46:25 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 85
+ERROR - 2019-01-09 13:46:25 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 86
+ERROR - 2019-01-09 13:46:25 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 86
+ERROR - 2019-01-09 13:46:26 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 87
+ERROR - 2019-01-09 13:46:26 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 87
+ERROR - 2019-01-09 13:46:26 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 137
+ERROR - 2019-01-09 13:46:26 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 137
+ERROR - 2019-01-09 13:46:26 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 138
+ERROR - 2019-01-09 13:46:26 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 138
+ERROR - 2019-01-09 13:46:27 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 139
+ERROR - 2019-01-09 13:46:27 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 139
+ERROR - 2019-01-09 13:46:38 --> Severity: Notice --> Undefined variable: financialyear C:\xampp\htdocs\ria\application\views\bankdebit.php 2
+ERROR - 2019-01-09 13:46:38 --> Severity: Warning --> Invalid argument supplied for foreach() C:\xampp\htdocs\ria\application\views\bankdebit.php 2
+ERROR - 2019-01-09 13:46:47 --> Severity: Notice --> Undefined variable: financialyear C:\xampp\htdocs\ria\application\views\bankdebit.php 2
+ERROR - 2019-01-09 13:46:47 --> Severity: Warning --> Invalid argument supplied for foreach() C:\xampp\htdocs\ria\application\views\bankdebit.php 2
+ERROR - 2019-01-09 13:46:47 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankdebit.php 177
+ERROR - 2019-01-09 13:46:48 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\ria\application\views\bankdebit.php 179
+ERROR - 2019-01-09 13:46:48 --> Severity: Notice --> Undefined property: stdClass::$IGRItemNo C:\xampp\htdocs\ria\application\views\bankdebit.php 193
+ERROR - 2019-01-09 13:46:48 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankdebit.php 177
+ERROR - 2019-01-09 13:46:48 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\ria\application\views\bankdebit.php 179
+ERROR - 2019-01-09 13:46:48 --> Severity: Notice --> Undefined property: stdClass::$IGRItemNo C:\xampp\htdocs\ria\application\views\bankdebit.php 193
+ERROR - 2019-01-09 13:46:48 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankdebit.php 177
+ERROR - 2019-01-09 13:46:49 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\ria\application\views\bankdebit.php 179
+ERROR - 2019-01-09 13:46:49 --> Severity: Notice --> Undefined property: stdClass::$IGRItemNo C:\xampp\htdocs\ria\application\views\bankdebit.php 193
+ERROR - 2019-01-09 13:46:49 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankdebit.php 177
+ERROR - 2019-01-09 13:46:49 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\ria\application\views\bankdebit.php 179
+ERROR - 2019-01-09 13:46:49 --> Severity: Notice --> Undefined property: stdClass::$IGRItemNo C:\xampp\htdocs\ria\application\views\bankdebit.php 193
+ERROR - 2019-01-09 13:46:49 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankdebit.php 177
+ERROR - 2019-01-09 13:46:50 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\ria\application\views\bankdebit.php 179
+ERROR - 2019-01-09 13:46:50 --> Severity: Notice --> Undefined property: stdClass::$IGRItemNo C:\xampp\htdocs\ria\application\views\bankdebit.php 193
+ERROR - 2019-01-09 13:46:50 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankdebit.php 177
+ERROR - 2019-01-09 13:46:50 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\ria\application\views\bankdebit.php 179
+ERROR - 2019-01-09 13:46:50 --> Severity: Notice --> Undefined property: stdClass::$IGRItemNo C:\xampp\htdocs\ria\application\views\bankdebit.php 193
+ERROR - 2019-01-09 13:46:50 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankdebit.php 177
+ERROR - 2019-01-09 13:46:51 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\ria\application\views\bankdebit.php 179
+ERROR - 2019-01-09 13:46:51 --> Severity: Notice --> Undefined property: stdClass::$IGRItemNo C:\xampp\htdocs\ria\application\views\bankdebit.php 193
+ERROR - 2019-01-09 13:46:51 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankdebit.php 177
+ERROR - 2019-01-09 13:46:51 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\ria\application\views\bankdebit.php 179
+ERROR - 2019-01-09 13:46:51 --> Severity: Notice --> Undefined property: stdClass::$IGRItemNo C:\xampp\htdocs\ria\application\views\bankdebit.php 193
+ERROR - 2019-01-09 13:46:51 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankdebit.php 177
+ERROR - 2019-01-09 13:46:52 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\ria\application\views\bankdebit.php 179
+ERROR - 2019-01-09 13:46:52 --> Severity: Notice --> Undefined property: stdClass::$IGRItemNo C:\xampp\htdocs\ria\application\views\bankdebit.php 193
+ERROR - 2019-01-09 13:46:52 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankdebit.php 177
+ERROR - 2019-01-09 13:46:52 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\ria\application\views\bankdebit.php 179
+ERROR - 2019-01-09 13:46:52 --> Severity: Notice --> Undefined property: stdClass::$IGRItemNo C:\xampp\htdocs\ria\application\views\bankdebit.php 193
+ERROR - 2019-01-09 13:46:52 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankdebit.php 177
+ERROR - 2019-01-09 13:46:53 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\ria\application\views\bankdebit.php 179
+ERROR - 2019-01-09 13:46:53 --> Severity: Notice --> Undefined property: stdClass::$IGRItemNo C:\xampp\htdocs\ria\application\views\bankdebit.php 193
+ERROR - 2019-01-09 13:46:53 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankdebit.php 177
+ERROR - 2019-01-09 13:46:53 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\ria\application\views\bankdebit.php 179
+ERROR - 2019-01-09 13:46:53 --> Severity: Notice --> Undefined property: stdClass::$IGRItemNo C:\xampp\htdocs\ria\application\views\bankdebit.php 193
+ERROR - 2019-01-09 13:46:53 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankdebit.php 177
+ERROR - 2019-01-09 13:46:54 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\ria\application\views\bankdebit.php 179
+ERROR - 2019-01-09 13:46:54 --> Severity: Notice --> Undefined property: stdClass::$IGRItemNo C:\xampp\htdocs\ria\application\views\bankdebit.php 193
+ERROR - 2019-01-09 13:46:54 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankdebit.php 177
+ERROR - 2019-01-09 13:46:54 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\ria\application\views\bankdebit.php 179
+ERROR - 2019-01-09 13:46:54 --> Severity: Notice --> Undefined property: stdClass::$IGRItemNo C:\xampp\htdocs\ria\application\views\bankdebit.php 193
+ERROR - 2019-01-09 13:46:54 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankdebit.php 177
+ERROR - 2019-01-09 13:46:55 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\ria\application\views\bankdebit.php 179
+ERROR - 2019-01-09 13:46:55 --> Severity: Notice --> Undefined property: stdClass::$IGRItemNo C:\xampp\htdocs\ria\application\views\bankdebit.php 193
+ERROR - 2019-01-09 13:46:55 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankdebit.php 177
+ERROR - 2019-01-09 13:46:55 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\ria\application\views\bankdebit.php 179
+ERROR - 2019-01-09 13:46:55 --> Severity: Notice --> Undefined property: stdClass::$IGRItemNo C:\xampp\htdocs\ria\application\views\bankdebit.php 193
+ERROR - 2019-01-09 13:47:17 --> Severity: Notice --> Undefined variable: data C:\xampp\htdocs\ria\application\controllers\cashbook.php 1456
+ERROR - 2019-01-09 13:47:17 --> Severity: Notice --> Undefined variable: financialyear C:\xampp\htdocs\ria\application\views\bankstatement.php 2
+ERROR - 2019-01-09 13:47:17 --> Severity: Warning --> Invalid argument supplied for foreach() C:\xampp\htdocs\ria\application\views\bankstatement.php 2
+ERROR - 2019-01-09 13:47:18 --> Severity: Notice --> Undefined variable: bankreport C:\xampp\htdocs\ria\application\views\bankstatement.php 8
+ERROR - 2019-01-09 13:47:18 --> Severity: Warning --> Invalid argument supplied for foreach() C:\xampp\htdocs\ria\application\views\bankstatement.php 8
+ERROR - 2019-01-09 13:47:18 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 85
+ERROR - 2019-01-09 13:47:18 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 85
+ERROR - 2019-01-09 13:47:18 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 86
+ERROR - 2019-01-09 13:47:18 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 86
+ERROR - 2019-01-09 13:47:19 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 87
+ERROR - 2019-01-09 13:47:19 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 87
+ERROR - 2019-01-09 13:47:19 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 137
+ERROR - 2019-01-09 13:47:19 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 137
+ERROR - 2019-01-09 13:47:19 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 138
+ERROR - 2019-01-09 13:47:20 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 138
+ERROR - 2019-01-09 13:47:20 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 139
+ERROR - 2019-01-09 13:47:20 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 139
+ERROR - 2019-01-09 13:47:20 --> Severity: Notice --> Undefined variable: finyear C:\xampp\htdocs\ria\application\views\bankstatement.php 197
+ERROR - 2019-01-09 13:47:20 --> Severity: Warning --> Invalid argument supplied for foreach() C:\xampp\htdocs\ria\application\views\bankstatement.php 197
+ERROR - 2019-01-09 13:47:20 --> Severity: Notice --> Undefined variable: Bankname C:\xampp\htdocs\ria\application\views\bankstatement.php 235
+ERROR - 2019-01-09 13:47:21 --> Severity: Notice --> Undefined variable: fdate C:\xampp\htdocs\ria\application\controllers\cashbook.php 1172
+ERROR - 2019-01-09 13:47:22 --> Severity: Notice --> Undefined variable: tdate C:\xampp\htdocs\ria\application\controllers\cashbook.php 1172
+ERROR - 2019-01-09 13:47:22 --> Severity: Notice --> Undefined variable: fa C:\xampp\htdocs\ria\application\controllers\cashbook.php 1172
+ERROR - 2019-01-09 13:47:22 --> Severity: Notice --> Undefined variable: aa C:\xampp\htdocs\ria\application\controllers\cashbook.php 1172
+ERROR - 2019-01-09 13:47:22 --> Severity: Notice --> Undefined variable: financialyear C:\xampp\htdocs\ria\application\views\bankstatement.php 2
+ERROR - 2019-01-09 13:47:23 --> Severity: Warning --> Invalid argument supplied for foreach() C:\xampp\htdocs\ria\application\views\bankstatement.php 2
+ERROR - 2019-01-09 13:47:23 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 85
+ERROR - 2019-01-09 13:47:23 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 85
+ERROR - 2019-01-09 13:47:23 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 86
+ERROR - 2019-01-09 13:47:23 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 86
+ERROR - 2019-01-09 13:47:24 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 87
+ERROR - 2019-01-09 13:47:24 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 87
+ERROR - 2019-01-09 13:47:24 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 137
+ERROR - 2019-01-09 13:47:24 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 137
+ERROR - 2019-01-09 13:47:24 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 138
+ERROR - 2019-01-09 13:47:24 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 138
+ERROR - 2019-01-09 13:47:25 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 139
+ERROR - 2019-01-09 13:47:25 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 139
+ERROR - 2019-01-09 13:47:37 --> Severity: Notice --> Undefined variable: financialyear C:\xampp\htdocs\ria\application\views\banksettlement.php 11
+ERROR - 2019-01-09 13:47:37 --> Severity: Warning --> Invalid argument supplied for foreach() C:\xampp\htdocs\ria\application\views\banksettlement.php 11
+ERROR - 2019-01-09 13:47:37 --> Severity: Notice --> Undefined variable: t C:\xampp\htdocs\ria\application\views\banksettlement.php 289
+ERROR - 2019-01-09 13:47:38 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\banksettlement.php 289
+ERROR - 2019-01-09 13:47:38 --> Severity: Notice --> Undefined variable: t C:\xampp\htdocs\ria\application\views\banksettlement.php 289
+ERROR - 2019-01-09 13:47:38 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\banksettlement.php 289
+ERROR - 2019-01-09 13:47:38 --> Severity: Notice --> Undefined variable: rel C:\xampp\htdocs\ria\application\views\banksettlement.php 290
+ERROR - 2019-01-09 13:47:38 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\banksettlement.php 290
+ERROR - 2019-01-09 13:47:38 --> Severity: Notice --> Undefined variable: record C:\xampp\htdocs\ria\application\views\banksettlement.php 345
+ERROR - 2019-01-09 13:47:39 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\banksettlement.php 345
+ERROR - 2019-01-09 13:48:17 --> Severity: Notice --> Use of undefined constant OPEN - assumed 'OPEN' C:\xampp\htdocs\ria\application\controllers\cashbook.php 2270
+ERROR - 2019-01-09 13:48:19 --> Severity: Notice --> Undefined variable: fdate C:\xampp\htdocs\ria\application\controllers\cashbook.php 1172
+ERROR - 2019-01-09 13:48:19 --> Severity: Notice --> Undefined variable: tdate C:\xampp\htdocs\ria\application\controllers\cashbook.php 1172
+ERROR - 2019-01-09 13:48:19 --> Severity: Notice --> Undefined variable: fa C:\xampp\htdocs\ria\application\controllers\cashbook.php 1172
+ERROR - 2019-01-09 13:48:19 --> Severity: Notice --> Undefined variable: aa C:\xampp\htdocs\ria\application\controllers\cashbook.php 1172
+ERROR - 2019-01-09 13:48:20 --> Severity: Notice --> Undefined variable: financialyear C:\xampp\htdocs\ria\application\views\bankstatement.php 2
+ERROR - 2019-01-09 13:48:20 --> Severity: Warning --> Invalid argument supplied for foreach() C:\xampp\htdocs\ria\application\views\bankstatement.php 2
+ERROR - 2019-01-09 13:48:20 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 85
+ERROR - 2019-01-09 13:48:20 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 85
+ERROR - 2019-01-09 13:48:21 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 86
+ERROR - 2019-01-09 13:48:21 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 86
+ERROR - 2019-01-09 13:48:21 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 87
+ERROR - 2019-01-09 13:48:21 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 87
+ERROR - 2019-01-09 13:48:21 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 137
+ERROR - 2019-01-09 13:48:22 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 137
+ERROR - 2019-01-09 13:48:22 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 138
+ERROR - 2019-01-09 13:48:22 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 138
+ERROR - 2019-01-09 13:48:22 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 139
+ERROR - 2019-01-09 13:48:22 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 139
+ERROR - 2019-01-09 13:48:38 --> Severity: Notice --> Undefined variable: financialyear C:\xampp\htdocs\ria\application\views\bankdebit.php 2
+ERROR - 2019-01-09 13:48:39 --> Severity: Warning --> Invalid argument supplied for foreach() C:\xampp\htdocs\ria\application\views\bankdebit.php 2
+ERROR - 2019-01-09 13:48:44 --> Severity: Notice --> Undefined variable: financialyear C:\xampp\htdocs\ria\application\views\bankdebit.php 2
+ERROR - 2019-01-09 13:48:44 --> Severity: Warning --> Invalid argument supplied for foreach() C:\xampp\htdocs\ria\application\views\bankdebit.php 2
+ERROR - 2019-01-09 13:48:44 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankdebit.php 177
+ERROR - 2019-01-09 13:48:45 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\ria\application\views\bankdebit.php 179
+ERROR - 2019-01-09 13:48:45 --> Severity: Notice --> Undefined property: stdClass::$IGRItemNo C:\xampp\htdocs\ria\application\views\bankdebit.php 193
+ERROR - 2019-01-09 13:48:45 --> Severity: Notice --> Undefined variable: financialyear C:\xampp\htdocs\ria\application\views\bankdebit.php 2
+ERROR - 2019-01-09 13:48:45 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankdebit.php 177
+ERROR - 2019-01-09 13:48:45 --> Severity: Warning --> Invalid argument supplied for foreach() C:\xampp\htdocs\ria\application\views\bankdebit.php 2
+ERROR - 2019-01-09 13:48:46 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\ria\application\views\bankdebit.php 179
+ERROR - 2019-01-09 13:48:46 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankdebit.php 177
+ERROR - 2019-01-09 13:48:46 --> Severity: Notice --> Undefined property: stdClass::$IGRItemNo C:\xampp\htdocs\ria\application\views\bankdebit.php 193
+ERROR - 2019-01-09 13:48:46 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\ria\application\views\bankdebit.php 179
+ERROR - 2019-01-09 13:48:46 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankdebit.php 177
+ERROR - 2019-01-09 13:48:46 --> Severity: Notice --> Undefined property: stdClass::$IGRItemNo C:\xampp\htdocs\ria\application\views\bankdebit.php 193
+ERROR - 2019-01-09 13:48:46 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankdebit.php 177
+ERROR - 2019-01-09 13:48:46 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\ria\application\views\bankdebit.php 179
+ERROR - 2019-01-09 13:48:46 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\ria\application\views\bankdebit.php 179
+ERROR - 2019-01-09 13:48:46 --> Severity: Notice --> Undefined property: stdClass::$IGRItemNo C:\xampp\htdocs\ria\application\views\bankdebit.php 193
+ERROR - 2019-01-09 13:48:47 --> Severity: Notice --> Undefined property: stdClass::$IGRItemNo C:\xampp\htdocs\ria\application\views\bankdebit.php 193
+ERROR - 2019-01-09 13:48:47 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankdebit.php 177
+ERROR - 2019-01-09 13:48:47 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankdebit.php 177
+ERROR - 2019-01-09 13:48:47 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\ria\application\views\bankdebit.php 179
+ERROR - 2019-01-09 13:48:47 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\ria\application\views\bankdebit.php 179
+ERROR - 2019-01-09 13:48:47 --> Severity: Notice --> Undefined property: stdClass::$IGRItemNo C:\xampp\htdocs\ria\application\views\bankdebit.php 193
+ERROR - 2019-01-09 13:48:47 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankdebit.php 177
+ERROR - 2019-01-09 13:48:47 --> Severity: Notice --> Undefined property: stdClass::$IGRItemNo C:\xampp\htdocs\ria\application\views\bankdebit.php 193
+ERROR - 2019-01-09 13:48:47 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\ria\application\views\bankdebit.php 179
+ERROR - 2019-01-09 13:48:47 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankdebit.php 177
+ERROR - 2019-01-09 13:48:47 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\ria\application\views\bankdebit.php 179
+ERROR - 2019-01-09 13:48:47 --> Severity: Notice --> Undefined property: stdClass::$IGRItemNo C:\xampp\htdocs\ria\application\views\bankdebit.php 193
+ERROR - 2019-01-09 13:48:48 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankdebit.php 177
+ERROR - 2019-01-09 13:48:48 --> Severity: Notice --> Undefined property: stdClass::$IGRItemNo C:\xampp\htdocs\ria\application\views\bankdebit.php 193
+ERROR - 2019-01-09 13:48:48 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankdebit.php 177
+ERROR - 2019-01-09 13:48:48 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\ria\application\views\bankdebit.php 179
+ERROR - 2019-01-09 13:48:48 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\ria\application\views\bankdebit.php 179
+ERROR - 2019-01-09 13:48:48 --> Severity: Notice --> Undefined property: stdClass::$IGRItemNo C:\xampp\htdocs\ria\application\views\bankdebit.php 193
+ERROR - 2019-01-09 13:48:48 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankdebit.php 177
+ERROR - 2019-01-09 13:48:48 --> Severity: Notice --> Undefined property: stdClass::$IGRItemNo C:\xampp\htdocs\ria\application\views\bankdebit.php 193
+ERROR - 2019-01-09 13:48:48 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankdebit.php 177
+ERROR - 2019-01-09 13:48:48 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\ria\application\views\bankdebit.php 179
+ERROR - 2019-01-09 13:48:48 --> Severity: Notice --> Undefined property: stdClass::$IGRItemNo C:\xampp\htdocs\ria\application\views\bankdebit.php 193
+ERROR - 2019-01-09 13:48:48 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\ria\application\views\bankdebit.php 179
+ERROR - 2019-01-09 13:48:49 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankdebit.php 177
+ERROR - 2019-01-09 13:48:49 --> Severity: Notice --> Undefined property: stdClass::$IGRItemNo C:\xampp\htdocs\ria\application\views\bankdebit.php 193
+ERROR - 2019-01-09 13:48:49 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankdebit.php 177
+ERROR - 2019-01-09 13:48:49 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\ria\application\views\bankdebit.php 179
+ERROR - 2019-01-09 13:48:49 --> Severity: Notice --> Undefined property: stdClass::$IGRItemNo C:\xampp\htdocs\ria\application\views\bankdebit.php 193
+ERROR - 2019-01-09 13:48:49 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\ria\application\views\bankdebit.php 179
+ERROR - 2019-01-09 13:48:49 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankdebit.php 177
+ERROR - 2019-01-09 13:48:49 --> Severity: Notice --> Undefined property: stdClass::$IGRItemNo C:\xampp\htdocs\ria\application\views\bankdebit.php 193
+ERROR - 2019-01-09 13:48:49 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\ria\application\views\bankdebit.php 179
+ERROR - 2019-01-09 13:48:49 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankdebit.php 177
+ERROR - 2019-01-09 13:48:49 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\ria\application\views\bankdebit.php 179
+ERROR - 2019-01-09 13:48:49 --> Severity: Notice --> Undefined property: stdClass::$IGRItemNo C:\xampp\htdocs\ria\application\views\bankdebit.php 193
+ERROR - 2019-01-09 13:48:50 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankdebit.php 177
+ERROR - 2019-01-09 13:48:50 --> Severity: Notice --> Undefined property: stdClass::$IGRItemNo C:\xampp\htdocs\ria\application\views\bankdebit.php 193
+ERROR - 2019-01-09 13:48:50 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\ria\application\views\bankdebit.php 179
+ERROR - 2019-01-09 13:48:50 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankdebit.php 177
+ERROR - 2019-01-09 13:48:50 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\ria\application\views\bankdebit.php 179
+ERROR - 2019-01-09 13:48:50 --> Severity: Notice --> Undefined property: stdClass::$IGRItemNo C:\xampp\htdocs\ria\application\views\bankdebit.php 193
+ERROR - 2019-01-09 13:48:50 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankdebit.php 177
+ERROR - 2019-01-09 13:48:50 --> Severity: Notice --> Undefined property: stdClass::$IGRItemNo C:\xampp\htdocs\ria\application\views\bankdebit.php 193
+ERROR - 2019-01-09 13:48:50 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\ria\application\views\bankdebit.php 179
+ERROR - 2019-01-09 13:48:50 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankdebit.php 177
+ERROR - 2019-01-09 13:48:51 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\ria\application\views\bankdebit.php 179
+ERROR - 2019-01-09 13:48:51 --> Severity: Notice --> Undefined property: stdClass::$IGRItemNo C:\xampp\htdocs\ria\application\views\bankdebit.php 193
+ERROR - 2019-01-09 13:48:51 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankdebit.php 177
+ERROR - 2019-01-09 13:48:51 --> Severity: Notice --> Undefined property: stdClass::$IGRItemNo C:\xampp\htdocs\ria\application\views\bankdebit.php 193
+ERROR - 2019-01-09 13:48:51 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\ria\application\views\bankdebit.php 179
+ERROR - 2019-01-09 13:48:51 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankdebit.php 177
+ERROR - 2019-01-09 13:48:51 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\ria\application\views\bankdebit.php 179
+ERROR - 2019-01-09 13:48:51 --> Severity: Notice --> Undefined property: stdClass::$IGRItemNo C:\xampp\htdocs\ria\application\views\bankdebit.php 193
+ERROR - 2019-01-09 13:48:51 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankdebit.php 177
+ERROR - 2019-01-09 13:48:51 --> Severity: Notice --> Undefined property: stdClass::$IGRItemNo C:\xampp\htdocs\ria\application\views\bankdebit.php 193
+ERROR - 2019-01-09 13:48:52 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankdebit.php 177
+ERROR - 2019-01-09 13:48:52 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\ria\application\views\bankdebit.php 179
+ERROR - 2019-01-09 13:48:52 --> Severity: Notice --> Undefined property: stdClass::$IGRItemNo C:\xampp\htdocs\ria\application\views\bankdebit.php 193
+ERROR - 2019-01-09 13:48:52 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\ria\application\views\bankdebit.php 179
+ERROR - 2019-01-09 13:48:52 --> Severity: Notice --> Undefined property: stdClass::$IGRItemNo C:\xampp\htdocs\ria\application\views\bankdebit.php 193
+ERROR - 2019-01-09 13:48:52 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankdebit.php 177
+ERROR - 2019-01-09 13:48:52 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\ria\application\views\bankdebit.php 179
+ERROR - 2019-01-09 13:48:52 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankdebit.php 177
+ERROR - 2019-01-09 13:48:52 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\ria\application\views\bankdebit.php 179
+ERROR - 2019-01-09 13:48:52 --> Severity: Notice --> Undefined property: stdClass::$IGRItemNo C:\xampp\htdocs\ria\application\views\bankdebit.php 193
+ERROR - 2019-01-09 13:48:52 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankdebit.php 177
+ERROR - 2019-01-09 13:48:52 --> Severity: Notice --> Undefined property: stdClass::$IGRItemNo C:\xampp\htdocs\ria\application\views\bankdebit.php 193
+ERROR - 2019-01-09 13:48:53 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\ria\application\views\bankdebit.php 179
+ERROR - 2019-01-09 13:48:53 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankdebit.php 177
+ERROR - 2019-01-09 13:48:53 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\ria\application\views\bankdebit.php 179
+ERROR - 2019-01-09 13:48:53 --> Severity: Notice --> Undefined property: stdClass::$IGRItemNo C:\xampp\htdocs\ria\application\views\bankdebit.php 193
+ERROR - 2019-01-09 13:48:53 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankdebit.php 177
+ERROR - 2019-01-09 13:48:53 --> Severity: Notice --> Undefined property: stdClass::$IGRItemNo C:\xampp\htdocs\ria\application\views\bankdebit.php 193
+ERROR - 2019-01-09 13:48:53 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\ria\application\views\bankdebit.php 179
+ERROR - 2019-01-09 13:48:53 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankdebit.php 177
+ERROR - 2019-01-09 13:48:53 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\ria\application\views\bankdebit.php 179
+ERROR - 2019-01-09 13:48:53 --> Severity: Notice --> Undefined property: stdClass::$IGRItemNo C:\xampp\htdocs\ria\application\views\bankdebit.php 193
+ERROR - 2019-01-09 13:48:53 --> Severity: Notice --> Undefined property: stdClass::$IGRItemNo C:\xampp\htdocs\ria\application\views\bankdebit.php 193
+ERROR - 2019-01-09 13:48:54 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankdebit.php 177
+ERROR - 2019-01-09 13:48:54 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\ria\application\views\bankdebit.php 179
+ERROR - 2019-01-09 13:48:54 --> Severity: Notice --> Undefined property: stdClass::$IGRItemNo C:\xampp\htdocs\ria\application\views\bankdebit.php 193
+ERROR - 2019-01-09 13:49:28 --> Severity: Notice --> Undefined variable: data C:\xampp\htdocs\ria\application\controllers\cashbook.php 1456
+ERROR - 2019-01-09 13:49:28 --> Severity: Notice --> Undefined variable: financialyear C:\xampp\htdocs\ria\application\views\bankstatement.php 2
+ERROR - 2019-01-09 13:49:28 --> Severity: Warning --> Invalid argument supplied for foreach() C:\xampp\htdocs\ria\application\views\bankstatement.php 2
+ERROR - 2019-01-09 13:49:29 --> Severity: Notice --> Undefined variable: bankreport C:\xampp\htdocs\ria\application\views\bankstatement.php 8
+ERROR - 2019-01-09 13:49:29 --> Severity: Warning --> Invalid argument supplied for foreach() C:\xampp\htdocs\ria\application\views\bankstatement.php 8
+ERROR - 2019-01-09 13:49:29 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 85
+ERROR - 2019-01-09 13:49:29 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 85
+ERROR - 2019-01-09 13:49:29 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 86
+ERROR - 2019-01-09 13:49:29 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 86
+ERROR - 2019-01-09 13:49:30 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 87
+ERROR - 2019-01-09 13:49:30 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 87
+ERROR - 2019-01-09 13:49:30 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 137
+ERROR - 2019-01-09 13:49:30 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 137
+ERROR - 2019-01-09 13:49:30 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 138
+ERROR - 2019-01-09 13:49:31 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 138
+ERROR - 2019-01-09 13:49:31 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 139
+ERROR - 2019-01-09 13:49:31 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 139
+ERROR - 2019-01-09 13:49:31 --> Severity: Notice --> Undefined variable: finyear C:\xampp\htdocs\ria\application\views\bankstatement.php 197
+ERROR - 2019-01-09 13:49:31 --> Severity: Warning --> Invalid argument supplied for foreach() C:\xampp\htdocs\ria\application\views\bankstatement.php 197
+ERROR - 2019-01-09 13:49:31 --> Severity: Notice --> Undefined variable: Bankname C:\xampp\htdocs\ria\application\views\bankstatement.php 235
+ERROR - 2019-01-09 13:49:32 --> Severity: Notice --> Undefined variable: fdate C:\xampp\htdocs\ria\application\controllers\cashbook.php 1172
+ERROR - 2019-01-09 13:49:33 --> Severity: Notice --> Undefined variable: tdate C:\xampp\htdocs\ria\application\controllers\cashbook.php 1172
+ERROR - 2019-01-09 13:49:33 --> Severity: Notice --> Undefined variable: fa C:\xampp\htdocs\ria\application\controllers\cashbook.php 1172
+ERROR - 2019-01-09 13:49:33 --> Severity: Notice --> Undefined variable: aa C:\xampp\htdocs\ria\application\controllers\cashbook.php 1172
+ERROR - 2019-01-09 13:49:33 --> Severity: Notice --> Undefined variable: financialyear C:\xampp\htdocs\ria\application\views\bankstatement.php 2
+ERROR - 2019-01-09 13:49:34 --> Severity: Warning --> Invalid argument supplied for foreach() C:\xampp\htdocs\ria\application\views\bankstatement.php 2
+ERROR - 2019-01-09 13:49:34 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 85
+ERROR - 2019-01-09 13:49:34 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 85
+ERROR - 2019-01-09 13:49:34 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 86
+ERROR - 2019-01-09 13:49:34 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 86
+ERROR - 2019-01-09 13:49:34 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 87
+ERROR - 2019-01-09 13:49:35 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 87
+ERROR - 2019-01-09 13:49:35 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 137
+ERROR - 2019-01-09 13:49:35 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 137
+ERROR - 2019-01-09 13:49:35 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 138
+ERROR - 2019-01-09 13:49:35 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 138
+ERROR - 2019-01-09 13:49:36 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 139
+ERROR - 2019-01-09 13:49:36 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 139
+ERROR - 2019-01-09 13:49:50 --> Severity: Notice --> Undefined variable: financialyear C:\xampp\htdocs\ria\application\views\bankdebit.php 2
+ERROR - 2019-01-09 13:49:50 --> Severity: Warning --> Invalid argument supplied for foreach() C:\xampp\htdocs\ria\application\views\bankdebit.php 2
+ERROR - 2019-01-09 13:49:55 --> Severity: Notice --> Undefined variable: financialyear C:\xampp\htdocs\ria\application\views\bankdebit.php 2
+ERROR - 2019-01-09 13:49:56 --> Severity: Warning --> Invalid argument supplied for foreach() C:\xampp\htdocs\ria\application\views\bankdebit.php 2
+ERROR - 2019-01-09 13:49:56 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankdebit.php 177
+ERROR - 2019-01-09 13:49:56 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\ria\application\views\bankdebit.php 179
+ERROR - 2019-01-09 13:49:56 --> Severity: Notice --> Undefined property: stdClass::$IGRItemNo C:\xampp\htdocs\ria\application\views\bankdebit.php 193
+ERROR - 2019-01-09 13:49:56 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankdebit.php 177
+ERROR - 2019-01-09 13:49:56 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\ria\application\views\bankdebit.php 179
+ERROR - 2019-01-09 13:49:57 --> Severity: Notice --> Undefined property: stdClass::$IGRItemNo C:\xampp\htdocs\ria\application\views\bankdebit.php 193
+ERROR - 2019-01-09 13:49:57 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankdebit.php 177
+ERROR - 2019-01-09 13:49:57 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\ria\application\views\bankdebit.php 179
+ERROR - 2019-01-09 13:49:57 --> Severity: Notice --> Undefined property: stdClass::$IGRItemNo C:\xampp\htdocs\ria\application\views\bankdebit.php 193
+ERROR - 2019-01-09 13:49:57 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankdebit.php 177
+ERROR - 2019-01-09 13:49:57 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\ria\application\views\bankdebit.php 179
+ERROR - 2019-01-09 13:49:58 --> Severity: Notice --> Undefined property: stdClass::$IGRItemNo C:\xampp\htdocs\ria\application\views\bankdebit.php 193
+ERROR - 2019-01-09 13:49:58 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankdebit.php 177
+ERROR - 2019-01-09 13:49:58 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\ria\application\views\bankdebit.php 179
+ERROR - 2019-01-09 13:49:58 --> Severity: Notice --> Undefined property: stdClass::$IGRItemNo C:\xampp\htdocs\ria\application\views\bankdebit.php 193
+ERROR - 2019-01-09 13:49:58 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankdebit.php 177
+ERROR - 2019-01-09 13:49:58 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\ria\application\views\bankdebit.php 179
+ERROR - 2019-01-09 13:49:59 --> Severity: Notice --> Undefined property: stdClass::$IGRItemNo C:\xampp\htdocs\ria\application\views\bankdebit.php 193
+ERROR - 2019-01-09 13:49:59 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankdebit.php 177
+ERROR - 2019-01-09 13:49:59 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\ria\application\views\bankdebit.php 179
+ERROR - 2019-01-09 13:49:59 --> Severity: Notice --> Undefined property: stdClass::$IGRItemNo C:\xampp\htdocs\ria\application\views\bankdebit.php 193
+ERROR - 2019-01-09 13:49:59 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankdebit.php 177
+ERROR - 2019-01-09 13:49:59 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\ria\application\views\bankdebit.php 179
+ERROR - 2019-01-09 13:50:00 --> Severity: Notice --> Undefined property: stdClass::$IGRItemNo C:\xampp\htdocs\ria\application\views\bankdebit.php 193
+ERROR - 2019-01-09 13:50:00 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankdebit.php 177
+ERROR - 2019-01-09 13:50:00 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\ria\application\views\bankdebit.php 179
+ERROR - 2019-01-09 13:50:00 --> Severity: Notice --> Undefined property: stdClass::$IGRItemNo C:\xampp\htdocs\ria\application\views\bankdebit.php 193
+ERROR - 2019-01-09 13:50:00 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankdebit.php 177
+ERROR - 2019-01-09 13:50:00 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\ria\application\views\bankdebit.php 179
+ERROR - 2019-01-09 13:50:01 --> Severity: Notice --> Undefined property: stdClass::$IGRItemNo C:\xampp\htdocs\ria\application\views\bankdebit.php 193
+ERROR - 2019-01-09 13:50:01 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankdebit.php 177
+ERROR - 2019-01-09 13:50:01 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\ria\application\views\bankdebit.php 179
+ERROR - 2019-01-09 13:50:01 --> Severity: Notice --> Undefined property: stdClass::$IGRItemNo C:\xampp\htdocs\ria\application\views\bankdebit.php 193
+ERROR - 2019-01-09 13:50:01 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankdebit.php 177
+ERROR - 2019-01-09 13:50:02 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\ria\application\views\bankdebit.php 179
+ERROR - 2019-01-09 13:50:02 --> Severity: Notice --> Undefined property: stdClass::$IGRItemNo C:\xampp\htdocs\ria\application\views\bankdebit.php 193
+ERROR - 2019-01-09 13:50:02 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankdebit.php 177
+ERROR - 2019-01-09 13:50:02 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\ria\application\views\bankdebit.php 179
+ERROR - 2019-01-09 13:50:02 --> Severity: Notice --> Undefined property: stdClass::$IGRItemNo C:\xampp\htdocs\ria\application\views\bankdebit.php 193
+ERROR - 2019-01-09 13:50:03 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankdebit.php 177
+ERROR - 2019-01-09 13:50:03 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\ria\application\views\bankdebit.php 179
+ERROR - 2019-01-09 13:50:03 --> Severity: Notice --> Undefined property: stdClass::$IGRItemNo C:\xampp\htdocs\ria\application\views\bankdebit.php 193
+ERROR - 2019-01-09 13:50:03 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankdebit.php 177
+ERROR - 2019-01-09 13:50:03 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\ria\application\views\bankdebit.php 179
+ERROR - 2019-01-09 13:50:04 --> Severity: Notice --> Undefined property: stdClass::$IGRItemNo C:\xampp\htdocs\ria\application\views\bankdebit.php 193
+ERROR - 2019-01-09 13:50:04 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankdebit.php 177
+ERROR - 2019-01-09 13:50:04 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\ria\application\views\bankdebit.php 179
+ERROR - 2019-01-09 13:50:04 --> Severity: Notice --> Undefined property: stdClass::$IGRItemNo C:\xampp\htdocs\ria\application\views\bankdebit.php 193
+ERROR - 2019-01-09 13:50:31 --> Severity: Notice --> Undefined variable: data C:\xampp\htdocs\ria\application\controllers\cashbook.php 1456
+ERROR - 2019-01-09 13:50:32 --> Severity: Notice --> Undefined variable: financialyear C:\xampp\htdocs\ria\application\views\bankstatement.php 2
+ERROR - 2019-01-09 13:50:32 --> Severity: Warning --> Invalid argument supplied for foreach() C:\xampp\htdocs\ria\application\views\bankstatement.php 2
+ERROR - 2019-01-09 13:50:32 --> Severity: Notice --> Undefined variable: bankreport C:\xampp\htdocs\ria\application\views\bankstatement.php 8
+ERROR - 2019-01-09 13:50:32 --> Severity: Warning --> Invalid argument supplied for foreach() C:\xampp\htdocs\ria\application\views\bankstatement.php 8
+ERROR - 2019-01-09 13:50:32 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 85
+ERROR - 2019-01-09 13:50:33 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 85
+ERROR - 2019-01-09 13:50:33 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 86
+ERROR - 2019-01-09 13:50:33 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 86
+ERROR - 2019-01-09 13:50:33 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 87
+ERROR - 2019-01-09 13:50:33 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 87
+ERROR - 2019-01-09 13:50:33 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 137
+ERROR - 2019-01-09 13:50:34 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 137
+ERROR - 2019-01-09 13:50:34 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 138
+ERROR - 2019-01-09 13:50:34 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 138
+ERROR - 2019-01-09 13:50:34 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 139
+ERROR - 2019-01-09 13:50:34 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 139
+ERROR - 2019-01-09 13:50:34 --> Severity: Notice --> Undefined variable: finyear C:\xampp\htdocs\ria\application\views\bankstatement.php 197
+ERROR - 2019-01-09 13:50:35 --> Severity: Warning --> Invalid argument supplied for foreach() C:\xampp\htdocs\ria\application\views\bankstatement.php 197
+ERROR - 2019-01-09 13:50:35 --> Severity: Notice --> Undefined variable: Bankname C:\xampp\htdocs\ria\application\views\bankstatement.php 235
+ERROR - 2019-01-09 13:50:36 --> Severity: Notice --> Undefined variable: fdate C:\xampp\htdocs\ria\application\controllers\cashbook.php 1172
+ERROR - 2019-01-09 13:50:36 --> Severity: Notice --> Undefined variable: tdate C:\xampp\htdocs\ria\application\controllers\cashbook.php 1172
+ERROR - 2019-01-09 13:50:36 --> Severity: Notice --> Undefined variable: fa C:\xampp\htdocs\ria\application\controllers\cashbook.php 1172
+ERROR - 2019-01-09 13:50:36 --> Severity: Notice --> Undefined variable: aa C:\xampp\htdocs\ria\application\controllers\cashbook.php 1172
+ERROR - 2019-01-09 13:50:37 --> Severity: Notice --> Undefined variable: financialyear C:\xampp\htdocs\ria\application\views\bankstatement.php 2
+ERROR - 2019-01-09 13:50:37 --> Severity: Warning --> Invalid argument supplied for foreach() C:\xampp\htdocs\ria\application\views\bankstatement.php 2
+ERROR - 2019-01-09 13:50:37 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 85
+ERROR - 2019-01-09 13:50:37 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 85
+ERROR - 2019-01-09 13:50:37 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 86
+ERROR - 2019-01-09 13:50:38 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 86
+ERROR - 2019-01-09 13:50:38 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 87
+ERROR - 2019-01-09 13:50:38 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 87
+ERROR - 2019-01-09 13:50:38 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 137
+ERROR - 2019-01-09 13:50:38 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 137
+ERROR - 2019-01-09 13:50:38 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 138
+ERROR - 2019-01-09 13:50:39 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 138
+ERROR - 2019-01-09 13:50:39 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 139
+ERROR - 2019-01-09 13:50:39 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 139
+ERROR - 2019-01-09 13:50:51 --> Severity: Notice --> Undefined variable: financialyear C:\xampp\htdocs\ria\application\views\banksettlement.php 11
+ERROR - 2019-01-09 13:50:52 --> Severity: Warning --> Invalid argument supplied for foreach() C:\xampp\htdocs\ria\application\views\banksettlement.php 11
+ERROR - 2019-01-09 13:50:52 --> Severity: Notice --> Undefined variable: t C:\xampp\htdocs\ria\application\views\banksettlement.php 289
+ERROR - 2019-01-09 13:50:52 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\banksettlement.php 289
+ERROR - 2019-01-09 13:50:52 --> Severity: Notice --> Undefined variable: t C:\xampp\htdocs\ria\application\views\banksettlement.php 289
+ERROR - 2019-01-09 13:50:52 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\banksettlement.php 289
+ERROR - 2019-01-09 13:50:52 --> Severity: Notice --> Undefined variable: rel C:\xampp\htdocs\ria\application\views\banksettlement.php 290
+ERROR - 2019-01-09 13:50:53 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\banksettlement.php 290
+ERROR - 2019-01-09 13:50:53 --> Severity: Notice --> Undefined variable: record C:\xampp\htdocs\ria\application\views\banksettlement.php 345
+ERROR - 2019-01-09 13:50:53 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\banksettlement.php 345
+ERROR - 2019-01-09 13:51:07 --> Severity: Notice --> Undefined variable: fdate C:\xampp\htdocs\ria\application\controllers\cashbook.php 1172
+ERROR - 2019-01-09 13:51:07 --> Severity: Notice --> Undefined variable: tdate C:\xampp\htdocs\ria\application\controllers\cashbook.php 1172
+ERROR - 2019-01-09 13:51:07 --> Severity: Notice --> Undefined variable: fa C:\xampp\htdocs\ria\application\controllers\cashbook.php 1172
+ERROR - 2019-01-09 13:51:07 --> Severity: Notice --> Undefined variable: aa C:\xampp\htdocs\ria\application\controllers\cashbook.php 1172
+ERROR - 2019-01-09 13:51:08 --> Severity: Notice --> Undefined variable: financialyear C:\xampp\htdocs\ria\application\views\bankstatement.php 2
+ERROR - 2019-01-09 13:51:08 --> Severity: Warning --> Invalid argument supplied for foreach() C:\xampp\htdocs\ria\application\views\bankstatement.php 2
+ERROR - 2019-01-09 13:51:08 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 85
+ERROR - 2019-01-09 13:51:08 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 85
+ERROR - 2019-01-09 13:51:09 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 86
+ERROR - 2019-01-09 13:51:09 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 86
+ERROR - 2019-01-09 13:51:09 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 87
+ERROR - 2019-01-09 13:51:09 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 87
+ERROR - 2019-01-09 13:51:09 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 137
+ERROR - 2019-01-09 13:51:09 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 137
+ERROR - 2019-01-09 13:51:10 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 138
+ERROR - 2019-01-09 13:51:10 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 138
+ERROR - 2019-01-09 13:51:10 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 139
+ERROR - 2019-01-09 13:51:10 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 139
+ERROR - 2019-01-09 13:51:48 --> Severity: Notice --> Undefined variable: financialyear C:\xampp\htdocs\ria\application\views\bankinvoice.php 2
+ERROR - 2019-01-09 13:51:48 --> Severity: Warning --> Invalid argument supplied for foreach() C:\xampp\htdocs\ria\application\views\bankinvoice.php 2
+ERROR - 2019-01-09 13:51:48 --> Severity: Notice --> Undefined variable: cash C:\xampp\htdocs\ria\application\views\bankinvoice.php 80
+ERROR - 2019-01-09 13:51:49 --> Severity: Notice --> Undefined variable: bankid C:\xampp\htdocs\ria\application\views\bankinvoice.php 82
+ERROR - 2019-01-09 13:52:57 --> Severity: Notice --> Undefined variable: financialyear C:\xampp\htdocs\ria\application\views\bankinvoice.php 2
+ERROR - 2019-01-09 13:52:58 --> Severity: Warning --> Invalid argument supplied for foreach() C:\xampp\htdocs\ria\application\views\bankinvoice.php 2
+ERROR - 2019-01-09 13:52:58 --> Severity: Notice --> Undefined variable: cash C:\xampp\htdocs\ria\application\views\bankinvoice.php 80
+ERROR - 2019-01-09 13:52:58 --> Severity: Notice --> Undefined variable: bankid C:\xampp\htdocs\ria\application\views\bankinvoice.php 82
+ERROR - 2019-01-09 13:53:05 --> Severity: Notice --> Undefined variable: financialyear C:\xampp\htdocs\ria\application\views\bankinvoice.php 2
+ERROR - 2019-01-09 13:53:05 --> Severity: Warning --> Invalid argument supplied for foreach() C:\xampp\htdocs\ria\application\views\bankinvoice.php 2
+ERROR - 2019-01-09 13:53:05 --> Severity: Notice --> Undefined variable: cash C:\xampp\htdocs\ria\application\views\bankinvoice.php 80
+ERROR - 2019-01-09 13:53:05 --> Severity: Notice --> Undefined variable: bankid C:\xampp\htdocs\ria\application\views\bankinvoice.php 82
+ERROR - 2019-01-09 13:53:06 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-09 13:53:06 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-09 13:53:06 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-09 13:53:06 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-09 13:53:32 --> Query error: Unknown column 'StatusUpdatedDate' in 'field list'
+ERROR - 2019-01-09 13:53:32 --> Query error: Unknown column 'StatusUpdatedDate' in 'field list'
+ERROR - 2019-01-09 13:56:37 --> Severity: Notice --> Undefined variable: balancetoreceived C:\xampp\htdocs\ria\application\controllers\cashbook.php 1514
+ERROR - 2019-01-09 13:56:38 --> Severity: Notice --> Undefined variable: clearedblnce C:\xampp\htdocs\ria\application\controllers\cashbook.php 1525
+ERROR - 2019-01-09 13:56:38 --> Severity: Notice --> Undefined variable: balancetoreceived C:\xampp\htdocs\ria\application\controllers\cashbook.php 1525
+ERROR - 2019-01-09 13:56:38 --> Query error: Unknown column 'StatusUpdatedDate' in 'field list'
+ERROR - 2019-01-09 14:04:30 --> Severity: Notice --> Undefined variable: balancetoreceived C:\xampp\htdocs\ria\application\controllers\cashbook.php 1514
+ERROR - 2019-01-09 14:04:30 --> Severity: Notice --> Undefined variable: clearedblnce C:\xampp\htdocs\ria\application\controllers\cashbook.php 1525
+ERROR - 2019-01-09 14:04:30 --> Severity: Notice --> Undefined variable: balancetoreceived C:\xampp\htdocs\ria\application\controllers\cashbook.php 1525
+ERROR - 2019-01-09 14:04:34 --> Severity: Notice --> Undefined variable: cashbook C:\xampp\htdocs\ria\application\views\cashbooklisting.php 269
+ERROR - 2019-01-09 14:04:55 --> Severity: Notice --> Undefined variable: fdate C:\xampp\htdocs\ria\application\controllers\cashbook.php 1172
+ERROR - 2019-01-09 14:04:55 --> Severity: Notice --> Undefined variable: tdate C:\xampp\htdocs\ria\application\controllers\cashbook.php 1172
+ERROR - 2019-01-09 14:04:55 --> Severity: Notice --> Undefined variable: fa C:\xampp\htdocs\ria\application\controllers\cashbook.php 1172
+ERROR - 2019-01-09 14:04:56 --> Severity: Notice --> Undefined variable: aa C:\xampp\htdocs\ria\application\controllers\cashbook.php 1172
+ERROR - 2019-01-09 14:04:56 --> Severity: Notice --> Undefined variable: financialyear C:\xampp\htdocs\ria\application\views\bankstatement.php 2
+ERROR - 2019-01-09 14:04:56 --> Severity: Warning --> Invalid argument supplied for foreach() C:\xampp\htdocs\ria\application\views\bankstatement.php 2
+ERROR - 2019-01-09 14:04:56 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 85
+ERROR - 2019-01-09 14:04:57 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 85
+ERROR - 2019-01-09 14:04:57 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 86
+ERROR - 2019-01-09 14:04:57 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 86
+ERROR - 2019-01-09 14:04:57 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 87
+ERROR - 2019-01-09 14:04:57 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 87
+ERROR - 2019-01-09 14:04:57 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 137
+ERROR - 2019-01-09 14:04:58 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 137
+ERROR - 2019-01-09 14:04:58 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 138
+ERROR - 2019-01-09 14:04:58 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 138
+ERROR - 2019-01-09 14:04:58 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 139
+ERROR - 2019-01-09 14:04:58 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 139
+ERROR - 2019-01-09 14:05:11 --> Severity: Notice --> Undefined variable: financialyear C:\xampp\htdocs\ria\application\views\bankinvoicesettlement.php 12
+ERROR - 2019-01-09 14:05:11 --> Severity: Warning --> Invalid argument supplied for foreach() C:\xampp\htdocs\ria\application\views\bankinvoicesettlement.php 12
+ERROR - 2019-01-09 14:05:11 --> Severity: Notice --> Undefined variable: record C:\xampp\htdocs\ria\application\views\bankinvoicesettlement.php 186
+ERROR - 2019-01-09 14:05:12 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoicesettlement.php 186
+ERROR - 2019-01-09 14:05:12 --> Severity: Notice --> Undefined variable: record C:\xampp\htdocs\ria\application\views\bankinvoicesettlement.php 186
+ERROR - 2019-01-09 14:05:12 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoicesettlement.php 186
+ERROR - 2019-01-09 14:05:21 --> Severity: Notice --> Use of undefined constant OPEN - assumed 'OPEN' C:\xampp\htdocs\ria\application\controllers\cashbook.php 2335
+ERROR - 2019-01-09 14:05:23 --> Severity: Notice --> Undefined variable: financialyear C:\xampp\htdocs\ria\application\views\bankstatement.php 2
+ERROR - 2019-01-09 14:05:23 --> Severity: Warning --> Invalid argument supplied for foreach() C:\xampp\htdocs\ria\application\views\bankstatement.php 2
+ERROR - 2019-01-09 14:05:24 --> Severity: Notice --> Undefined variable: bankreport C:\xampp\htdocs\ria\application\views\bankstatement.php 8
+ERROR - 2019-01-09 14:05:24 --> Severity: Warning --> Invalid argument supplied for foreach() C:\xampp\htdocs\ria\application\views\bankstatement.php 8
+ERROR - 2019-01-09 14:05:24 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 85
+ERROR - 2019-01-09 14:05:24 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 85
+ERROR - 2019-01-09 14:05:24 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 86
+ERROR - 2019-01-09 14:05:25 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 86
+ERROR - 2019-01-09 14:05:25 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 87
+ERROR - 2019-01-09 14:05:25 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 87
+ERROR - 2019-01-09 14:05:25 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 137
+ERROR - 2019-01-09 14:05:25 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 137
+ERROR - 2019-01-09 14:05:25 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 138
+ERROR - 2019-01-09 14:05:26 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 138
+ERROR - 2019-01-09 14:05:26 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 139
+ERROR - 2019-01-09 14:05:26 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 139
+ERROR - 2019-01-09 14:05:26 --> Severity: Notice --> Undefined variable: finyear C:\xampp\htdocs\ria\application\views\bankstatement.php 197
+ERROR - 2019-01-09 14:05:26 --> Severity: Warning --> Invalid argument supplied for foreach() C:\xampp\htdocs\ria\application\views\bankstatement.php 197
+ERROR - 2019-01-09 14:05:27 --> Severity: Notice --> Undefined variable: Bankname C:\xampp\htdocs\ria\application\views\bankstatement.php 235
+ERROR - 2019-01-09 14:05:28 --> Severity: Notice --> Undefined variable: fdate C:\xampp\htdocs\ria\application\controllers\cashbook.php 1172
+ERROR - 2019-01-09 14:05:28 --> Severity: Notice --> Undefined variable: tdate C:\xampp\htdocs\ria\application\controllers\cashbook.php 1172
+ERROR - 2019-01-09 14:05:28 --> Severity: Notice --> Undefined variable: fa C:\xampp\htdocs\ria\application\controllers\cashbook.php 1172
+ERROR - 2019-01-09 14:05:29 --> Severity: Notice --> Undefined variable: aa C:\xampp\htdocs\ria\application\controllers\cashbook.php 1172
+ERROR - 2019-01-09 14:05:30 --> Severity: Notice --> Undefined variable: financialyear C:\xampp\htdocs\ria\application\views\bankstatement.php 2
+ERROR - 2019-01-09 14:05:30 --> Severity: Warning --> Invalid argument supplied for foreach() C:\xampp\htdocs\ria\application\views\bankstatement.php 2
+ERROR - 2019-01-09 14:05:30 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 85
+ERROR - 2019-01-09 14:05:30 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 85
+ERROR - 2019-01-09 14:05:31 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 86
+ERROR - 2019-01-09 14:05:31 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 86
+ERROR - 2019-01-09 14:05:31 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 87
+ERROR - 2019-01-09 14:05:32 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 87
+ERROR - 2019-01-09 14:05:32 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 137
+ERROR - 2019-01-09 14:05:33 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 137
+ERROR - 2019-01-09 14:05:33 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 138
+ERROR - 2019-01-09 14:05:34 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 138
+ERROR - 2019-01-09 14:05:34 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 139
+ERROR - 2019-01-09 14:05:35 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 139
+ERROR - 2019-01-09 14:07:23 --> Severity: Notice --> Undefined variable: financialyear C:\xampp\htdocs\ria\application\views\bankinvoicesettlement.php 12
+ERROR - 2019-01-09 14:07:23 --> Severity: Warning --> Invalid argument supplied for foreach() C:\xampp\htdocs\ria\application\views\bankinvoicesettlement.php 12
+ERROR - 2019-01-09 14:07:23 --> Severity: Notice --> Undefined variable: record C:\xampp\htdocs\ria\application\views\bankinvoicesettlement.php 186
+ERROR - 2019-01-09 14:07:23 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoicesettlement.php 186
+ERROR - 2019-01-09 14:09:36 --> Severity: Notice --> Undefined variable: financialyear C:\xampp\htdocs\ria\application\views\bankinvoicesettlement.php 12
+ERROR - 2019-01-09 14:09:36 --> Severity: Warning --> Invalid argument supplied for foreach() C:\xampp\htdocs\ria\application\views\bankinvoicesettlement.php 12
+ERROR - 2019-01-09 14:09:37 --> Severity: Notice --> Undefined variable: record C:\xampp\htdocs\ria\application\views\bankinvoicesettlement.php 186
+ERROR - 2019-01-09 14:09:37 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoicesettlement.php 186
+ERROR - 2019-01-09 14:10:14 --> Severity: Notice --> Undefined variable: fdate C:\xampp\htdocs\ria\application\controllers\cashbook.php 1172
+ERROR - 2019-01-09 14:10:14 --> Severity: Notice --> Undefined variable: tdate C:\xampp\htdocs\ria\application\controllers\cashbook.php 1172
+ERROR - 2019-01-09 14:10:14 --> Severity: Notice --> Undefined variable: fa C:\xampp\htdocs\ria\application\controllers\cashbook.php 1172
+ERROR - 2019-01-09 14:10:15 --> Severity: Notice --> Undefined variable: aa C:\xampp\htdocs\ria\application\controllers\cashbook.php 1172
+ERROR - 2019-01-09 14:10:15 --> Severity: Notice --> Undefined variable: financialyear C:\xampp\htdocs\ria\application\views\bankstatement.php 2
+ERROR - 2019-01-09 14:10:15 --> Severity: Warning --> Invalid argument supplied for foreach() C:\xampp\htdocs\ria\application\views\bankstatement.php 2
+ERROR - 2019-01-09 14:10:15 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 85
+ERROR - 2019-01-09 14:10:16 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 85
+ERROR - 2019-01-09 14:10:16 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 86
+ERROR - 2019-01-09 14:10:16 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 86
+ERROR - 2019-01-09 14:10:16 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 87
+ERROR - 2019-01-09 14:10:16 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 87
+ERROR - 2019-01-09 14:10:16 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 137
+ERROR - 2019-01-09 14:10:17 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 137
+ERROR - 2019-01-09 14:10:17 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 138
+ERROR - 2019-01-09 14:10:17 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 138
+ERROR - 2019-01-09 14:10:17 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 139
+ERROR - 2019-01-09 14:10:17 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 139
+ERROR - 2019-01-09 14:10:34 --> Severity: Notice --> Undefined variable: financialyear C:\xampp\htdocs\ria\application\views\bankinvoice.php 2
+ERROR - 2019-01-09 14:10:34 --> Severity: Warning --> Invalid argument supplied for foreach() C:\xampp\htdocs\ria\application\views\bankinvoice.php 2
+ERROR - 2019-01-09 14:10:34 --> Severity: Notice --> Undefined variable: cash C:\xampp\htdocs\ria\application\views\bankinvoice.php 80
+ERROR - 2019-01-09 14:10:34 --> Severity: Notice --> Undefined variable: bankid C:\xampp\htdocs\ria\application\views\bankinvoice.php 82
+ERROR - 2019-01-09 14:10:40 --> Severity: Notice --> Undefined variable: financialyear C:\xampp\htdocs\ria\application\views\bankinvoice.php 2
+ERROR - 2019-01-09 14:10:40 --> Severity: Warning --> Invalid argument supplied for foreach() C:\xampp\htdocs\ria\application\views\bankinvoice.php 2
+ERROR - 2019-01-09 14:10:40 --> Severity: Notice --> Undefined variable: cash C:\xampp\htdocs\ria\application\views\bankinvoice.php 80
+ERROR - 2019-01-09 14:10:40 --> Severity: Notice --> Undefined variable: bankid C:\xampp\htdocs\ria\application\views\bankinvoice.php 82
+ERROR - 2019-01-09 14:10:40 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-09 14:10:40 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-09 14:10:41 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-09 14:10:41 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-09 14:11:33 --> Severity: Notice --> Undefined variable: fdate C:\xampp\htdocs\ria\application\controllers\cashbook.php 1172
+ERROR - 2019-01-09 14:11:33 --> Severity: Notice --> Undefined variable: tdate C:\xampp\htdocs\ria\application\controllers\cashbook.php 1172
+ERROR - 2019-01-09 14:11:33 --> Severity: Notice --> Undefined variable: fa C:\xampp\htdocs\ria\application\controllers\cashbook.php 1172
+ERROR - 2019-01-09 14:11:33 --> Severity: Notice --> Undefined variable: aa C:\xampp\htdocs\ria\application\controllers\cashbook.php 1172
+ERROR - 2019-01-09 14:11:34 --> Severity: Notice --> Undefined variable: financialyear C:\xampp\htdocs\ria\application\views\bankstatement.php 2
+ERROR - 2019-01-09 14:11:34 --> Severity: Warning --> Invalid argument supplied for foreach() C:\xampp\htdocs\ria\application\views\bankstatement.php 2
+ERROR - 2019-01-09 14:11:34 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 85
+ERROR - 2019-01-09 14:11:34 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 85
+ERROR - 2019-01-09 14:11:35 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 86
+ERROR - 2019-01-09 14:11:35 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 86
+ERROR - 2019-01-09 14:11:35 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 87
+ERROR - 2019-01-09 14:11:35 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 87
+ERROR - 2019-01-09 14:11:35 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 137
+ERROR - 2019-01-09 14:11:35 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 137
+ERROR - 2019-01-09 14:11:36 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 138
+ERROR - 2019-01-09 14:11:36 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 138
+ERROR - 2019-01-09 14:11:36 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 139
+ERROR - 2019-01-09 14:11:36 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 139
+ERROR - 2019-01-09 14:11:52 --> Severity: Notice --> Undefined variable: financialyear C:\xampp\htdocs\ria\application\views\bankinvoicesettlement.php 12
+ERROR - 2019-01-09 14:11:52 --> Severity: Warning --> Invalid argument supplied for foreach() C:\xampp\htdocs\ria\application\views\bankinvoicesettlement.php 12
+ERROR - 2019-01-09 14:11:53 --> Severity: Notice --> Undefined variable: record C:\xampp\htdocs\ria\application\views\bankinvoicesettlement.php 186
+ERROR - 2019-01-09 14:11:53 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoicesettlement.php 186
+ERROR - 2019-01-09 14:12:11 --> Severity: Notice --> Undefined variable: financialyear C:\xampp\htdocs\ria\application\views\bankinvoice.php 2
+ERROR - 2019-01-09 14:12:11 --> Severity: Warning --> Invalid argument supplied for foreach() C:\xampp\htdocs\ria\application\views\bankinvoice.php 2
+ERROR - 2019-01-09 14:12:12 --> Severity: Notice --> Undefined variable: cash C:\xampp\htdocs\ria\application\views\bankinvoice.php 80
+ERROR - 2019-01-09 14:12:12 --> Severity: Notice --> Undefined variable: bankid C:\xampp\htdocs\ria\application\views\bankinvoice.php 82
+ERROR - 2019-01-09 14:12:17 --> Severity: Notice --> Undefined variable: financialyear C:\xampp\htdocs\ria\application\views\bankinvoice.php 2
+ERROR - 2019-01-09 14:12:17 --> Severity: Warning --> Invalid argument supplied for foreach() C:\xampp\htdocs\ria\application\views\bankinvoice.php 2
+ERROR - 2019-01-09 14:12:17 --> Severity: Notice --> Undefined variable: cash C:\xampp\htdocs\ria\application\views\bankinvoice.php 80
+ERROR - 2019-01-09 14:12:18 --> Severity: Notice --> Undefined variable: bankid C:\xampp\htdocs\ria\application\views\bankinvoice.php 82
+ERROR - 2019-01-09 14:12:18 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-09 14:12:18 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-09 14:12:18 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-09 14:12:18 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-09 14:12:41 --> Severity: Notice --> Undefined variable: fdate C:\xampp\htdocs\ria\application\controllers\cashbook.php 1172
+ERROR - 2019-01-09 14:12:42 --> Severity: Notice --> Undefined variable: tdate C:\xampp\htdocs\ria\application\controllers\cashbook.php 1172
+ERROR - 2019-01-09 14:12:42 --> Severity: Notice --> Undefined variable: fa C:\xampp\htdocs\ria\application\controllers\cashbook.php 1172
+ERROR - 2019-01-09 14:12:42 --> Severity: Notice --> Undefined variable: aa C:\xampp\htdocs\ria\application\controllers\cashbook.php 1172
+ERROR - 2019-01-09 14:12:44 --> Severity: Notice --> Undefined variable: financialyear C:\xampp\htdocs\ria\application\views\bankstatement.php 2
+ERROR - 2019-01-09 14:12:44 --> Severity: Warning --> Invalid argument supplied for foreach() C:\xampp\htdocs\ria\application\views\bankstatement.php 2
+ERROR - 2019-01-09 14:12:44 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 85
+ERROR - 2019-01-09 14:12:44 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 85
+ERROR - 2019-01-09 14:12:44 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 86
+ERROR - 2019-01-09 14:12:45 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 86
+ERROR - 2019-01-09 14:12:45 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 87
+ERROR - 2019-01-09 14:12:45 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 87
+ERROR - 2019-01-09 14:12:45 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 137
+ERROR - 2019-01-09 14:12:45 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 137
+ERROR - 2019-01-09 14:12:45 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 138
+ERROR - 2019-01-09 14:12:46 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 138
+ERROR - 2019-01-09 14:12:46 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 139
+ERROR - 2019-01-09 14:12:46 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 139
+ERROR - 2019-01-09 14:12:54 --> Severity: Notice --> Undefined variable: financialyear C:\xampp\htdocs\ria\application\views\bankinvoicesettlement.php 12
+ERROR - 2019-01-09 14:12:54 --> Severity: Warning --> Invalid argument supplied for foreach() C:\xampp\htdocs\ria\application\views\bankinvoicesettlement.php 12
+ERROR - 2019-01-09 14:12:54 --> Severity: Notice --> Undefined variable: record C:\xampp\htdocs\ria\application\views\bankinvoicesettlement.php 186
+ERROR - 2019-01-09 14:12:54 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoicesettlement.php 186
+ERROR - 2019-01-09 14:12:55 --> Severity: Notice --> Undefined variable: record C:\xampp\htdocs\ria\application\views\bankinvoicesettlement.php 186
+ERROR - 2019-01-09 14:12:55 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoicesettlement.php 186
+ERROR - 2019-01-09 14:14:38 --> Severity: Notice --> Undefined variable: financialyear C:\xampp\htdocs\ria\application\views\bankinvoicesettlement.php 12
+ERROR - 2019-01-09 14:14:38 --> Severity: Warning --> Invalid argument supplied for foreach() C:\xampp\htdocs\ria\application\views\bankinvoicesettlement.php 12
+ERROR - 2019-01-09 14:14:38 --> Severity: Notice --> Undefined variable: record C:\xampp\htdocs\ria\application\views\bankinvoicesettlement.php 186
+ERROR - 2019-01-09 14:14:38 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoicesettlement.php 186
+ERROR - 2019-01-09 14:14:57 --> Severity: Notice --> Use of undefined constant OPEN - assumed 'OPEN' C:\xampp\htdocs\ria\application\controllers\cashbook.php 2335
+ERROR - 2019-01-09 14:14:58 --> Severity: Notice --> Undefined variable: financialyear C:\xampp\htdocs\ria\application\views\bankstatement.php 2
+ERROR - 2019-01-09 14:14:58 --> Severity: Warning --> Invalid argument supplied for foreach() C:\xampp\htdocs\ria\application\views\bankstatement.php 2
+ERROR - 2019-01-09 14:14:58 --> Severity: Notice --> Undefined variable: bankreport C:\xampp\htdocs\ria\application\views\bankstatement.php 8
+ERROR - 2019-01-09 14:14:58 --> Severity: Warning --> Invalid argument supplied for foreach() C:\xampp\htdocs\ria\application\views\bankstatement.php 8
+ERROR - 2019-01-09 14:14:59 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 85
+ERROR - 2019-01-09 14:14:59 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 85
+ERROR - 2019-01-09 14:14:59 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 86
+ERROR - 2019-01-09 14:14:59 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 86
+ERROR - 2019-01-09 14:14:59 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 87
+ERROR - 2019-01-09 14:14:59 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 87
+ERROR - 2019-01-09 14:15:00 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 137
+ERROR - 2019-01-09 14:15:00 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 137
+ERROR - 2019-01-09 14:15:00 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 138
+ERROR - 2019-01-09 14:15:00 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 138
+ERROR - 2019-01-09 14:15:00 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 139
+ERROR - 2019-01-09 14:15:01 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 139
+ERROR - 2019-01-09 14:15:01 --> Severity: Notice --> Undefined variable: finyear C:\xampp\htdocs\ria\application\views\bankstatement.php 197
+ERROR - 2019-01-09 14:15:01 --> Severity: Warning --> Invalid argument supplied for foreach() C:\xampp\htdocs\ria\application\views\bankstatement.php 197
+ERROR - 2019-01-09 14:15:01 --> Severity: Notice --> Undefined variable: Bankname C:\xampp\htdocs\ria\application\views\bankstatement.php 235
+ERROR - 2019-01-09 14:15:02 --> Severity: Notice --> Undefined variable: fdate C:\xampp\htdocs\ria\application\controllers\cashbook.php 1172
+ERROR - 2019-01-09 14:15:02 --> Severity: Notice --> Undefined variable: tdate C:\xampp\htdocs\ria\application\controllers\cashbook.php 1172
+ERROR - 2019-01-09 14:15:02 --> Severity: Notice --> Undefined variable: fa C:\xampp\htdocs\ria\application\controllers\cashbook.php 1172
+ERROR - 2019-01-09 14:15:02 --> Severity: Notice --> Undefined variable: aa C:\xampp\htdocs\ria\application\controllers\cashbook.php 1172
+ERROR - 2019-01-09 14:15:03 --> Severity: Notice --> Undefined variable: financialyear C:\xampp\htdocs\ria\application\views\bankstatement.php 2
+ERROR - 2019-01-09 14:15:03 --> Severity: Warning --> Invalid argument supplied for foreach() C:\xampp\htdocs\ria\application\views\bankstatement.php 2
+ERROR - 2019-01-09 14:15:03 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 85
+ERROR - 2019-01-09 14:15:03 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 85
+ERROR - 2019-01-09 14:15:04 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 86
+ERROR - 2019-01-09 14:15:04 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 86
+ERROR - 2019-01-09 14:15:04 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 87
+ERROR - 2019-01-09 14:15:04 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 87
+ERROR - 2019-01-09 14:15:04 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 137
+ERROR - 2019-01-09 14:15:05 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 137
+ERROR - 2019-01-09 14:15:05 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 138
+ERROR - 2019-01-09 14:15:05 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 138
+ERROR - 2019-01-09 14:15:05 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 139
+ERROR - 2019-01-09 14:15:05 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 139
+ERROR - 2019-01-09 14:15:17 --> Severity: Notice --> Undefined variable: financialyear C:\xampp\htdocs\ria\application\views\bankinvoice.php 2
+ERROR - 2019-01-09 14:15:17 --> Severity: Warning --> Invalid argument supplied for foreach() C:\xampp\htdocs\ria\application\views\bankinvoice.php 2
+ERROR - 2019-01-09 14:15:17 --> Severity: Notice --> Undefined variable: cash C:\xampp\htdocs\ria\application\views\bankinvoice.php 80
+ERROR - 2019-01-09 14:15:17 --> Severity: Notice --> Undefined variable: bankid C:\xampp\htdocs\ria\application\views\bankinvoice.php 82
+ERROR - 2019-01-09 14:15:23 --> Severity: Notice --> Undefined variable: financialyear C:\xampp\htdocs\ria\application\views\bankinvoice.php 2
+ERROR - 2019-01-09 14:15:23 --> Severity: Warning --> Invalid argument supplied for foreach() C:\xampp\htdocs\ria\application\views\bankinvoice.php 2
+ERROR - 2019-01-09 14:15:23 --> Severity: Notice --> Undefined variable: cash C:\xampp\htdocs\ria\application\views\bankinvoice.php 80
+ERROR - 2019-01-09 14:15:24 --> Severity: Notice --> Undefined variable: bankid C:\xampp\htdocs\ria\application\views\bankinvoice.php 82
+ERROR - 2019-01-09 14:15:24 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-09 14:15:24 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-09 14:15:24 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-09 14:15:24 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-09 14:16:29 --> Severity: Notice --> Undefined variable: fdate C:\xampp\htdocs\ria\application\controllers\cashbook.php 1172
+ERROR - 2019-01-09 14:16:29 --> Severity: Notice --> Undefined variable: tdate C:\xampp\htdocs\ria\application\controllers\cashbook.php 1172
+ERROR - 2019-01-09 14:16:29 --> Severity: Notice --> Undefined variable: fa C:\xampp\htdocs\ria\application\controllers\cashbook.php 1172
+ERROR - 2019-01-09 14:16:29 --> Severity: Notice --> Undefined variable: aa C:\xampp\htdocs\ria\application\controllers\cashbook.php 1172
+ERROR - 2019-01-09 14:16:30 --> Severity: Notice --> Undefined variable: financialyear C:\xampp\htdocs\ria\application\views\bankstatement.php 2
+ERROR - 2019-01-09 14:16:30 --> Severity: Warning --> Invalid argument supplied for foreach() C:\xampp\htdocs\ria\application\views\bankstatement.php 2
+ERROR - 2019-01-09 14:16:30 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 85
+ERROR - 2019-01-09 14:16:30 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 85
+ERROR - 2019-01-09 14:16:30 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 86
+ERROR - 2019-01-09 14:16:30 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 86
+ERROR - 2019-01-09 14:16:31 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 87
+ERROR - 2019-01-09 14:16:31 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 87
+ERROR - 2019-01-09 14:16:31 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 137
+ERROR - 2019-01-09 14:16:31 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 137
+ERROR - 2019-01-09 14:16:31 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 138
+ERROR - 2019-01-09 14:16:31 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 138
+ERROR - 2019-01-09 14:16:32 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 139
+ERROR - 2019-01-09 14:16:32 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 139
+ERROR - 2019-01-09 14:16:47 --> Severity: Notice --> Undefined variable: financialyear C:\xampp\htdocs\ria\application\views\bankinvoice.php 2
+ERROR - 2019-01-09 14:16:47 --> Severity: Warning --> Invalid argument supplied for foreach() C:\xampp\htdocs\ria\application\views\bankinvoice.php 2
+ERROR - 2019-01-09 14:16:47 --> Severity: Notice --> Undefined variable: cash C:\xampp\htdocs\ria\application\views\bankinvoice.php 80
+ERROR - 2019-01-09 14:16:47 --> Severity: Notice --> Undefined variable: bankid C:\xampp\htdocs\ria\application\views\bankinvoice.php 82
+ERROR - 2019-01-09 14:16:52 --> Severity: Notice --> Undefined variable: financialyear C:\xampp\htdocs\ria\application\views\bankinvoice.php 2
+ERROR - 2019-01-09 14:16:52 --> Severity: Warning --> Invalid argument supplied for foreach() C:\xampp\htdocs\ria\application\views\bankinvoice.php 2
+ERROR - 2019-01-09 14:16:53 --> Severity: Notice --> Undefined variable: cash C:\xampp\htdocs\ria\application\views\bankinvoice.php 80
+ERROR - 2019-01-09 14:16:53 --> Severity: Notice --> Undefined variable: bankid C:\xampp\htdocs\ria\application\views\bankinvoice.php 82
+ERROR - 2019-01-09 14:16:53 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-09 14:16:53 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-09 14:16:53 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-09 14:16:53 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-09 14:30:36 --> Severity: Notice --> Undefined variable: fdate C:\xampp\htdocs\ria\application\controllers\cashbook.php 1172
+ERROR - 2019-01-09 14:30:37 --> Severity: Notice --> Undefined variable: tdate C:\xampp\htdocs\ria\application\controllers\cashbook.php 1172
+ERROR - 2019-01-09 14:30:37 --> Severity: Notice --> Undefined variable: fa C:\xampp\htdocs\ria\application\controllers\cashbook.php 1172
+ERROR - 2019-01-09 14:30:37 --> Severity: Notice --> Undefined variable: aa C:\xampp\htdocs\ria\application\controllers\cashbook.php 1172
+ERROR - 2019-01-09 14:30:38 --> Severity: Notice --> Undefined variable: financialyear C:\xampp\htdocs\ria\application\views\bankstatement.php 2
+ERROR - 2019-01-09 14:30:38 --> Severity: Warning --> Invalid argument supplied for foreach() C:\xampp\htdocs\ria\application\views\bankstatement.php 2
+ERROR - 2019-01-09 14:30:38 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 85
+ERROR - 2019-01-09 14:30:38 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 85
+ERROR - 2019-01-09 14:30:38 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 86
+ERROR - 2019-01-09 14:30:38 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 86
+ERROR - 2019-01-09 14:30:39 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 87
+ERROR - 2019-01-09 14:30:39 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 87
+ERROR - 2019-01-09 14:30:39 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 137
+ERROR - 2019-01-09 14:30:39 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 137
+ERROR - 2019-01-09 14:30:39 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 138
+ERROR - 2019-01-09 14:30:39 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 138
+ERROR - 2019-01-09 14:30:40 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 139
+ERROR - 2019-01-09 14:30:40 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 139
+ERROR - 2019-01-09 14:30:53 --> Severity: Notice --> Undefined variable: financialyear C:\xampp\htdocs\ria\application\views\bankinvoice.php 2
+ERROR - 2019-01-09 14:30:53 --> Severity: Warning --> Invalid argument supplied for foreach() C:\xampp\htdocs\ria\application\views\bankinvoice.php 2
+ERROR - 2019-01-09 14:30:53 --> Severity: Notice --> Undefined variable: cash C:\xampp\htdocs\ria\application\views\bankinvoice.php 80
+ERROR - 2019-01-09 14:30:53 --> Severity: Notice --> Undefined variable: bankid C:\xampp\htdocs\ria\application\views\bankinvoice.php 82
+ERROR - 2019-01-09 14:30:58 --> Severity: Notice --> Undefined variable: financialyear C:\xampp\htdocs\ria\application\views\bankinvoice.php 2
+ERROR - 2019-01-09 14:30:58 --> Severity: Warning --> Invalid argument supplied for foreach() C:\xampp\htdocs\ria\application\views\bankinvoice.php 2
+ERROR - 2019-01-09 14:30:58 --> Severity: Notice --> Undefined variable: cash C:\xampp\htdocs\ria\application\views\bankinvoice.php 80
+ERROR - 2019-01-09 14:30:58 --> Severity: Notice --> Undefined variable: bankid C:\xampp\htdocs\ria\application\views\bankinvoice.php 82
+ERROR - 2019-01-09 14:30:58 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-09 14:30:58 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-09 14:30:59 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-09 14:30:59 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-09 14:33:23 --> Severity: Notice --> Undefined variable: fdate C:\xampp\htdocs\ria\application\controllers\cashbook.php 1172
+ERROR - 2019-01-09 14:33:23 --> Severity: Notice --> Undefined variable: tdate C:\xampp\htdocs\ria\application\controllers\cashbook.php 1172
+ERROR - 2019-01-09 14:33:24 --> Severity: Notice --> Undefined variable: fa C:\xampp\htdocs\ria\application\controllers\cashbook.php 1172
+ERROR - 2019-01-09 14:33:24 --> Severity: Notice --> Undefined variable: aa C:\xampp\htdocs\ria\application\controllers\cashbook.php 1172
+ERROR - 2019-01-09 14:33:24 --> Severity: Notice --> Undefined variable: financialyear C:\xampp\htdocs\ria\application\views\bankstatement.php 2
+ERROR - 2019-01-09 14:33:24 --> Severity: Warning --> Invalid argument supplied for foreach() C:\xampp\htdocs\ria\application\views\bankstatement.php 2
+ERROR - 2019-01-09 14:33:24 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 85
+ERROR - 2019-01-09 14:33:25 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 85
+ERROR - 2019-01-09 14:33:25 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 86
+ERROR - 2019-01-09 14:33:25 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 86
+ERROR - 2019-01-09 14:33:25 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 87
+ERROR - 2019-01-09 14:33:25 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 87
+ERROR - 2019-01-09 14:33:25 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 137
+ERROR - 2019-01-09 14:33:26 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 137
+ERROR - 2019-01-09 14:33:26 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 138
+ERROR - 2019-01-09 14:33:26 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 138
+ERROR - 2019-01-09 14:33:26 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 139
+ERROR - 2019-01-09 14:33:26 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 139
+ERROR - 2019-01-09 14:33:40 --> Severity: Notice --> Undefined variable: financialyear C:\xampp\htdocs\ria\application\views\bankinvoice.php 2
+ERROR - 2019-01-09 14:33:40 --> Severity: Warning --> Invalid argument supplied for foreach() C:\xampp\htdocs\ria\application\views\bankinvoice.php 2
+ERROR - 2019-01-09 14:33:40 --> Severity: Notice --> Undefined variable: cash C:\xampp\htdocs\ria\application\views\bankinvoice.php 80
+ERROR - 2019-01-09 14:33:41 --> Severity: Notice --> Undefined variable: bankid C:\xampp\htdocs\ria\application\views\bankinvoice.php 82
+ERROR - 2019-01-09 14:33:49 --> Severity: Notice --> Undefined variable: financialyear C:\xampp\htdocs\ria\application\views\bankinvoice.php 2
+ERROR - 2019-01-09 14:33:50 --> Severity: Warning --> Invalid argument supplied for foreach() C:\xampp\htdocs\ria\application\views\bankinvoice.php 2
+ERROR - 2019-01-09 14:33:50 --> Severity: Notice --> Undefined variable: cash C:\xampp\htdocs\ria\application\views\bankinvoice.php 80
+ERROR - 2019-01-09 14:33:50 --> Severity: Notice --> Undefined variable: bankid C:\xampp\htdocs\ria\application\views\bankinvoice.php 82
+ERROR - 2019-01-09 14:33:50 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-09 14:33:50 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-09 14:33:50 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-09 14:33:51 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-09 14:33:51 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-09 14:33:51 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-09 14:33:51 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-09 14:33:51 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-09 14:34:51 --> Severity: Notice --> Undefined variable: financialyear C:\xampp\htdocs\ria\application\views\bankinvoice.php 2
+ERROR - 2019-01-09 14:34:51 --> Severity: Warning --> Invalid argument supplied for foreach() C:\xampp\htdocs\ria\application\views\bankinvoice.php 2
+ERROR - 2019-01-09 14:34:51 --> Severity: Notice --> Undefined variable: cash C:\xampp\htdocs\ria\application\views\bankinvoice.php 80
+ERROR - 2019-01-09 14:34:52 --> Severity: Notice --> Undefined variable: bankid C:\xampp\htdocs\ria\application\views\bankinvoice.php 82
+ERROR - 2019-01-09 14:34:52 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-09 14:34:52 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-09 14:34:52 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-09 14:34:52 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-09 14:34:52 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-09 14:34:53 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-09 14:34:53 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-09 14:34:53 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-09 14:35:17 --> Severity: Notice --> Undefined variable: fdate C:\xampp\htdocs\ria\application\controllers\cashbook.php 1172
+ERROR - 2019-01-09 14:35:18 --> Severity: Notice --> Undefined variable: tdate C:\xampp\htdocs\ria\application\controllers\cashbook.php 1172
+ERROR - 2019-01-09 14:35:18 --> Severity: Notice --> Undefined variable: fa C:\xampp\htdocs\ria\application\controllers\cashbook.php 1172
+ERROR - 2019-01-09 14:35:18 --> Severity: Notice --> Undefined variable: aa C:\xampp\htdocs\ria\application\controllers\cashbook.php 1172
+ERROR - 2019-01-09 14:35:18 --> Severity: Notice --> Undefined variable: financialyear C:\xampp\htdocs\ria\application\views\bankstatement.php 2
+ERROR - 2019-01-09 14:35:18 --> Severity: Warning --> Invalid argument supplied for foreach() C:\xampp\htdocs\ria\application\views\bankstatement.php 2
+ERROR - 2019-01-09 14:35:19 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 85
+ERROR - 2019-01-09 14:35:19 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 85
+ERROR - 2019-01-09 14:35:19 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 86
+ERROR - 2019-01-09 14:35:19 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 86
+ERROR - 2019-01-09 14:35:19 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 87
+ERROR - 2019-01-09 14:35:19 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 87
+ERROR - 2019-01-09 14:35:20 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 137
+ERROR - 2019-01-09 14:35:20 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 137
+ERROR - 2019-01-09 14:35:20 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 138
+ERROR - 2019-01-09 14:35:20 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 138
+ERROR - 2019-01-09 14:35:20 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 139
+ERROR - 2019-01-09 14:35:21 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 139
+ERROR - 2019-01-09 14:35:42 --> Severity: Notice --> Undefined variable: financialyear C:\xampp\htdocs\ria\application\views\bankinvoice.php 2
+ERROR - 2019-01-09 14:35:43 --> Severity: Warning --> Invalid argument supplied for foreach() C:\xampp\htdocs\ria\application\views\bankinvoice.php 2
+ERROR - 2019-01-09 14:35:43 --> Severity: Notice --> Undefined variable: cash C:\xampp\htdocs\ria\application\views\bankinvoice.php 80
+ERROR - 2019-01-09 14:35:43 --> Severity: Notice --> Undefined variable: bankid C:\xampp\htdocs\ria\application\views\bankinvoice.php 82
+ERROR - 2019-01-09 14:35:53 --> Severity: Notice --> Undefined variable: financialyear C:\xampp\htdocs\ria\application\views\bankinvoice.php 2
+ERROR - 2019-01-09 14:35:53 --> Severity: Warning --> Invalid argument supplied for foreach() C:\xampp\htdocs\ria\application\views\bankinvoice.php 2
+ERROR - 2019-01-09 14:35:53 --> Severity: Notice --> Undefined variable: cash C:\xampp\htdocs\ria\application\views\bankinvoice.php 80
+ERROR - 2019-01-09 14:35:53 --> Severity: Notice --> Undefined variable: bankid C:\xampp\htdocs\ria\application\views\bankinvoice.php 82
+ERROR - 2019-01-09 14:35:53 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-09 14:35:54 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-09 14:35:54 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-09 14:35:54 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-09 14:35:54 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-09 14:35:54 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-09 14:35:54 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-09 14:35:55 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-09 14:36:06 --> Severity: Notice --> Undefined variable: fdate C:\xampp\htdocs\ria\application\controllers\cashbook.php 1172
+ERROR - 2019-01-09 14:36:06 --> Severity: Notice --> Undefined variable: tdate C:\xampp\htdocs\ria\application\controllers\cashbook.php 1172
+ERROR - 2019-01-09 14:36:06 --> Severity: Notice --> Undefined variable: fa C:\xampp\htdocs\ria\application\controllers\cashbook.php 1172
+ERROR - 2019-01-09 14:36:06 --> Severity: Notice --> Undefined variable: aa C:\xampp\htdocs\ria\application\controllers\cashbook.php 1172
+ERROR - 2019-01-09 14:36:07 --> Severity: Notice --> Undefined variable: financialyear C:\xampp\htdocs\ria\application\views\bankstatement.php 2
+ERROR - 2019-01-09 14:36:07 --> Severity: Warning --> Invalid argument supplied for foreach() C:\xampp\htdocs\ria\application\views\bankstatement.php 2
+ERROR - 2019-01-09 14:36:07 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 85
+ERROR - 2019-01-09 14:36:07 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 85
+ERROR - 2019-01-09 14:36:07 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 86
+ERROR - 2019-01-09 14:36:07 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 86
+ERROR - 2019-01-09 14:36:08 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 87
+ERROR - 2019-01-09 14:36:08 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 87
+ERROR - 2019-01-09 14:36:08 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 137
+ERROR - 2019-01-09 14:36:08 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 137
+ERROR - 2019-01-09 14:36:08 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 138
+ERROR - 2019-01-09 14:36:09 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 138
+ERROR - 2019-01-09 14:36:09 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 139
+ERROR - 2019-01-09 14:36:09 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 139
+ERROR - 2019-01-09 14:36:19 --> Severity: Notice --> Undefined variable: financialyear C:\xampp\htdocs\ria\application\views\bankinvoicesettlement.php 12
+ERROR - 2019-01-09 14:36:19 --> Severity: Warning --> Invalid argument supplied for foreach() C:\xampp\htdocs\ria\application\views\bankinvoicesettlement.php 12
+ERROR - 2019-01-09 14:36:19 --> Severity: Notice --> Undefined variable: record C:\xampp\htdocs\ria\application\views\bankinvoicesettlement.php 186
+ERROR - 2019-01-09 14:36:19 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoicesettlement.php 186
+ERROR - 2019-01-09 14:36:19 --> Severity: Notice --> Undefined variable: record C:\xampp\htdocs\ria\application\views\bankinvoicesettlement.php 186
+ERROR - 2019-01-09 14:36:20 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoicesettlement.php 186
+ERROR - 2019-01-09 14:37:20 --> Severity: Notice --> Use of undefined constant OPEN - assumed 'OPEN' C:\xampp\htdocs\ria\application\controllers\cashbook.php 2335
+ERROR - 2019-01-09 14:37:21 --> Severity: Notice --> Undefined variable: financialyear C:\xampp\htdocs\ria\application\views\bankstatement.php 2
+ERROR - 2019-01-09 14:37:21 --> Severity: Warning --> Invalid argument supplied for foreach() C:\xampp\htdocs\ria\application\views\bankstatement.php 2
+ERROR - 2019-01-09 14:37:21 --> Severity: Notice --> Undefined variable: bankreport C:\xampp\htdocs\ria\application\views\bankstatement.php 8
+ERROR - 2019-01-09 14:37:21 --> Severity: Warning --> Invalid argument supplied for foreach() C:\xampp\htdocs\ria\application\views\bankstatement.php 8
+ERROR - 2019-01-09 14:37:21 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 85
+ERROR - 2019-01-09 14:37:22 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 85
+ERROR - 2019-01-09 14:37:22 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 86
+ERROR - 2019-01-09 14:37:22 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 86
+ERROR - 2019-01-09 14:37:22 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 87
+ERROR - 2019-01-09 14:37:22 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 87
+ERROR - 2019-01-09 14:37:23 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 137
+ERROR - 2019-01-09 14:37:23 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 137
+ERROR - 2019-01-09 14:37:23 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 138
+ERROR - 2019-01-09 14:37:23 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 138
+ERROR - 2019-01-09 14:37:23 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 139
+ERROR - 2019-01-09 14:37:23 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 139
+ERROR - 2019-01-09 14:37:24 --> Severity: Notice --> Undefined variable: finyear C:\xampp\htdocs\ria\application\views\bankstatement.php 197
+ERROR - 2019-01-09 14:37:24 --> Severity: Warning --> Invalid argument supplied for foreach() C:\xampp\htdocs\ria\application\views\bankstatement.php 197
+ERROR - 2019-01-09 14:37:24 --> Severity: Notice --> Undefined variable: Bankname C:\xampp\htdocs\ria\application\views\bankstatement.php 235
+ERROR - 2019-01-09 14:37:25 --> Severity: Notice --> Undefined variable: fdate C:\xampp\htdocs\ria\application\controllers\cashbook.php 1172
+ERROR - 2019-01-09 14:37:25 --> Severity: Notice --> Undefined variable: tdate C:\xampp\htdocs\ria\application\controllers\cashbook.php 1172
+ERROR - 2019-01-09 14:37:25 --> Severity: Notice --> Undefined variable: fa C:\xampp\htdocs\ria\application\controllers\cashbook.php 1172
+ERROR - 2019-01-09 14:37:25 --> Severity: Notice --> Undefined variable: aa C:\xampp\htdocs\ria\application\controllers\cashbook.php 1172
+ERROR - 2019-01-09 14:37:26 --> Severity: Notice --> Undefined variable: financialyear C:\xampp\htdocs\ria\application\views\bankstatement.php 2
+ERROR - 2019-01-09 14:37:27 --> Severity: Warning --> Invalid argument supplied for foreach() C:\xampp\htdocs\ria\application\views\bankstatement.php 2
+ERROR - 2019-01-09 14:37:27 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 85
+ERROR - 2019-01-09 14:37:27 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 85
+ERROR - 2019-01-09 14:37:27 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 86
+ERROR - 2019-01-09 14:37:27 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 86
+ERROR - 2019-01-09 14:37:27 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 87
+ERROR - 2019-01-09 14:37:28 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 87
+ERROR - 2019-01-09 14:37:28 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 137
+ERROR - 2019-01-09 14:37:28 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 137
+ERROR - 2019-01-09 14:37:28 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 138
+ERROR - 2019-01-09 14:37:28 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 138
+ERROR - 2019-01-09 14:37:29 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 139
+ERROR - 2019-01-09 14:37:29 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 139
+ERROR - 2019-01-09 14:37:41 --> Severity: Notice --> Undefined variable: financialyear C:\xampp\htdocs\ria\application\views\bankinvoicesettlement.php 12
+ERROR - 2019-01-09 14:37:41 --> Severity: Warning --> Invalid argument supplied for foreach() C:\xampp\htdocs\ria\application\views\bankinvoicesettlement.php 12
+ERROR - 2019-01-09 14:37:41 --> Severity: Notice --> Undefined variable: record C:\xampp\htdocs\ria\application\views\bankinvoicesettlement.php 186
+ERROR - 2019-01-09 14:37:41 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoicesettlement.php 186
+ERROR - 2019-01-09 14:40:43 --> Severity: Notice --> Undefined variable: creditdebit C:\xampp\htdocs\ria\application\views\bankingfile.php 132
+ERROR - 2019-01-09 14:41:00 --> Severity: Notice --> Use of undefined constant ST066 - assumed 'ST066' C:\xampp\htdocs\ria\application\models\cashbook_model.php 1766
+ERROR - 2019-01-09 14:41:01 --> Severity: Notice --> Undefined variable: financialyear C:\xampp\htdocs\ria\application\views\bankreceivedsupp.php 2
+ERROR - 2019-01-09 14:41:01 --> Severity: Warning --> Invalid argument supplied for foreach() C:\xampp\htdocs\ria\application\views\bankreceivedsupp.php 2
+ERROR - 2019-01-09 14:41:02 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankreceivedsupp.php 243
+ERROR - 2019-01-09 14:41:02 --> Severity: Notice --> Undefined variable: fa C:\xampp\htdocs\ria\application\views\bankreceivedsupp.php 243
+ERROR - 2019-01-09 14:41:02 --> Severity: Notice --> Undefined variable: aa C:\xampp\htdocs\ria\application\views\bankreceivedsupp.php 243
+ERROR - 2019-01-09 14:41:02 --> Severity: Notice --> Undefined variable: m C:\xampp\htdocs\ria\application\views\bankreceivedsupp.php 243
+ERROR - 2019-01-09 14:41:02 --> Severity: Notice --> Undefined variable: fdate C:\xampp\htdocs\ria\application\views\bankreceivedsupp.php 243
+ERROR - 2019-01-09 14:41:02 --> Severity: Notice --> Undefined variable: tdate C:\xampp\htdocs\ria\application\views\bankreceivedsupp.php 243
+ERROR - 2019-01-09 14:41:03 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankreceivedsupp.php 244
+ERROR - 2019-01-09 14:41:03 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankreceivedsupp.php 250
+ERROR - 2019-01-09 14:41:11 --> Severity: Notice --> Use of undefined constant ST066 - assumed 'ST066' C:\xampp\htdocs\ria\application\models\cashbook_model.php 1732
+ERROR - 2019-01-09 14:41:12 --> Severity: Notice --> Undefined variable: financialyear C:\xampp\htdocs\ria\application\views\bankamountreceived.php 10
+ERROR - 2019-01-09 14:41:12 --> Severity: Warning --> Invalid argument supplied for foreach() C:\xampp\htdocs\ria\application\views\bankamountreceived.php 10
+ERROR - 2019-01-09 14:41:12 --> Severity: Notice --> Undefined variable: t C:\xampp\htdocs\ria\application\views\bankamountreceived.php 281
+ERROR - 2019-01-09 14:41:12 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankamountreceived.php 281
+ERROR - 2019-01-09 14:41:12 --> Severity: Notice --> Undefined variable: t C:\xampp\htdocs\ria\application\views\bankamountreceived.php 281
+ERROR - 2019-01-09 14:41:13 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankamountreceived.php 281
+ERROR - 2019-01-09 14:41:13 --> Severity: Notice --> Undefined variable: record C:\xampp\htdocs\ria\application\views\bankamountreceived.php 288
+ERROR - 2019-01-09 14:41:13 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankamountreceived.php 288
+ERROR - 2019-01-09 14:41:30 --> Severity: Notice --> Undefined variable: financialyear C:\xampp\htdocs\ria\application\views\bankinvoisettle.php 10
+ERROR - 2019-01-09 14:41:31 --> Severity: Warning --> Invalid argument supplied for foreach() C:\xampp\htdocs\ria\application\views\bankinvoisettle.php 10
+ERROR - 2019-01-09 14:41:31 --> Severity: Notice --> Undefined variable: supplier C:\xampp\htdocs\ria\application\views\bankinvoisettle.php 101
+ERROR - 2019-01-09 14:41:31 --> Severity: Warning --> Invalid argument supplied for foreach() C:\xampp\htdocs\ria\application\views\bankinvoisettle.php 101
+ERROR - 2019-01-09 14:43:26 --> Severity: Notice --> Undefined variable: financialyear C:\xampp\htdocs\ria\application\views\bankinvoisettle.php 10
+ERROR - 2019-01-09 14:43:26 --> Severity: Warning --> Invalid argument supplied for foreach() C:\xampp\htdocs\ria\application\views\bankinvoisettle.php 10
+ERROR - 2019-01-09 14:43:26 --> Severity: Notice --> Undefined variable: supplier C:\xampp\htdocs\ria\application\views\bankinvoisettle.php 101
+ERROR - 2019-01-09 14:43:26 --> Severity: Warning --> Invalid argument supplied for foreach() C:\xampp\htdocs\ria\application\views\bankinvoisettle.php 101
+ERROR - 2019-01-09 14:43:40 --> Severity: Notice --> Undefined index: fa C:\xampp\htdocs\ria\application\controllers\cashbook.php 1636
+ERROR - 2019-01-09 14:43:40 --> Severity: Notice --> Undefined index: aa C:\xampp\htdocs\ria\application\controllers\cashbook.php 1637
+ERROR - 2019-01-09 14:43:40 --> Severity: Notice --> Undefined index: m C:\xampp\htdocs\ria\application\controllers\cashbook.php 1638
+ERROR - 2019-01-09 14:43:40 --> Severity: Notice --> Undefined index: fdate C:\xampp\htdocs\ria\application\controllers\cashbook.php 1639
+ERROR - 2019-01-09 14:43:41 --> Severity: Notice --> Undefined index: tdate C:\xampp\htdocs\ria\application\controllers\cashbook.php 1640
+ERROR - 2019-01-09 14:43:41 --> Severity: Notice --> Undefined index: sid C:\xampp\htdocs\ria\application\controllers\cashbook.php 1646
+ERROR - 2019-01-09 14:43:41 --> Severity: Notice --> Undefined index: sn C:\xampp\htdocs\ria\application\controllers\cashbook.php 1648
+ERROR - 2019-01-09 14:43:42 --> Severity: Notice --> Undefined variable: financialyear C:\xampp\htdocs\ria\application\views\bankamountpaid.php 10
+ERROR - 2019-01-09 14:43:42 --> Severity: Warning --> Invalid argument supplied for foreach() C:\xampp\htdocs\ria\application\views\bankamountpaid.php 10
+ERROR - 2019-01-09 14:43:49 --> Severity: Notice --> Undefined variable: financialyear C:\xampp\htdocs\ria\application\views\bankamountpaid.php 10
+ERROR - 2019-01-09 14:43:49 --> Severity: Warning --> Invalid argument supplied for foreach() C:\xampp\htdocs\ria\application\views\bankamountpaid.php 10
+ERROR - 2019-01-09 14:44:00 --> Severity: Notice --> Undefined variable: financialyear C:\xampp\htdocs\ria\application\views\bankamountpaid.php 10
+ERROR - 2019-01-09 14:44:01 --> Severity: Warning --> Invalid argument supplied for foreach() C:\xampp\htdocs\ria\application\views\bankamountpaid.php 10
+ERROR - 2019-01-09 14:44:16 --> Severity: Notice --> Undefined variable: financialyear C:\xampp\htdocs\ria\application\views\bankamountpaid.php 10
+ERROR - 2019-01-09 14:44:16 --> Severity: Warning --> Invalid argument supplied for foreach() C:\xampp\htdocs\ria\application\views\bankamountpaid.php 10
+ERROR - 2019-01-09 14:44:33 --> Severity: Notice --> Undefined variable: financialyear C:\xampp\htdocs\ria\application\views\bankamountpaid.php 10
+ERROR - 2019-01-09 14:44:33 --> Severity: Warning --> Invalid argument supplied for foreach() C:\xampp\htdocs\ria\application\views\bankamountpaid.php 10
+ERROR - 2019-01-09 14:45:44 --> Severity: Notice --> Undefined variable: financialyear C:\xampp\htdocs\ria\application\views\bankunpaidsupp.php 2
+ERROR - 2019-01-09 14:45:45 --> Severity: Warning --> Invalid argument supplied for foreach() C:\xampp\htdocs\ria\application\views\bankunpaidsupp.php 2
+ERROR - 2019-01-09 14:45:45 --> Severity: Notice --> Undefined variable: t C:\xampp\htdocs\ria\application\views\bankunpaidsupp.php 110
+ERROR - 2019-01-09 14:45:45 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankunpaidsupp.php 110
+ERROR - 2019-01-09 14:45:45 --> Severity: Notice --> Undefined variable: fa C:\xampp\htdocs\ria\application\views\bankunpaidsupp.php 111
+ERROR - 2019-01-09 14:45:45 --> Severity: Notice --> Undefined variable: ta C:\xampp\htdocs\ria\application\views\bankunpaidsupp.php 112
+ERROR - 2019-01-09 14:45:46 --> Severity: Notice --> Undefined variable: m C:\xampp\htdocs\ria\application\views\bankunpaidsupp.php 113
+ERROR - 2019-01-09 14:45:46 --> Severity: Notice --> Undefined variable: fdate C:\xampp\htdocs\ria\application\views\bankunpaidsupp.php 114
+ERROR - 2019-01-09 14:45:46 --> Severity: Notice --> Undefined variable: tdate C:\xampp\htdocs\ria\application\views\bankunpaidsupp.php 115
+ERROR - 2019-01-09 14:45:55 --> Severity: Notice --> Undefined variable: financialyear C:\xampp\htdocs\ria\application\views\bankunpaidsupp.php 2
+ERROR - 2019-01-09 14:45:55 --> Severity: Warning --> Invalid argument supplied for foreach() C:\xampp\htdocs\ria\application\views\bankunpaidsupp.php 2
+ERROR - 2019-01-09 14:45:56 --> Severity: Notice --> Undefined variable: t C:\xampp\htdocs\ria\application\views\bankunpaidsupp.php 110
+ERROR - 2019-01-09 14:45:56 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankunpaidsupp.php 110
+ERROR - 2019-01-09 14:45:56 --> Severity: Notice --> Undefined variable: ta C:\xampp\htdocs\ria\application\views\bankunpaidsupp.php 112
+ERROR - 2019-01-09 14:45:56 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankunpaidsupp.php 200
+ERROR - 2019-01-09 14:45:56 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankunpaidsupp.php 201
+ERROR - 2019-01-09 14:45:56 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\ria\application\views\bankunpaidsupp.php 202
+ERROR - 2019-01-09 14:45:57 --> Severity: Notice --> Undefined property: stdClass::$SupplierID C:\xampp\htdocs\ria\application\views\bankunpaidsupp.php 204
+ERROR - 2019-01-09 14:45:57 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankunpaidsupp.php 214
+ERROR - 2019-01-09 14:45:57 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankunpaidsupp.php 215
+ERROR - 2019-01-09 14:45:57 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankunpaidsupp.php 221
+ERROR - 2019-01-09 14:45:57 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankunpaidsupp.php 200
+ERROR - 2019-01-09 14:45:57 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankunpaidsupp.php 201
+ERROR - 2019-01-09 14:45:58 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\ria\application\views\bankunpaidsupp.php 202
+ERROR - 2019-01-09 14:45:58 --> Severity: Notice --> Undefined property: stdClass::$SupplierID C:\xampp\htdocs\ria\application\views\bankunpaidsupp.php 204
+ERROR - 2019-01-09 14:45:58 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankunpaidsupp.php 200
+ERROR - 2019-01-09 14:45:58 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankunpaidsupp.php 201
+ERROR - 2019-01-09 14:45:58 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\ria\application\views\bankunpaidsupp.php 202
+ERROR - 2019-01-09 14:45:58 --> Severity: Notice --> Undefined property: stdClass::$SupplierID C:\xampp\htdocs\ria\application\views\bankunpaidsupp.php 204
+ERROR - 2019-01-09 14:46:17 --> Severity: Notice --> Use of undefined constant ST066 - assumed 'ST066' C:\xampp\htdocs\ria\application\models\cashbook_model.php 1851
+ERROR - 2019-01-09 14:46:23 --> Severity: Notice --> Use of undefined constant ST066 - assumed 'ST066' C:\xampp\htdocs\ria\application\models\cashbook_model.php 1868
+ERROR - 2019-01-09 14:47:14 --> Severity: Notice --> Undefined variable: openingbalancesupplier C:\xampp\htdocs\ria\application\views\banksupplierledger.php 6
+ERROR - 2019-01-09 14:47:14 --> Severity: Warning --> Invalid argument supplied for foreach() C:\xampp\htdocs\ria\application\views\banksupplierledger.php 6
+ERROR - 2019-01-09 14:47:14 --> Severity: Notice --> Undefined variable: financialyear C:\xampp\htdocs\ria\application\views\banksupplierledger.php 10
+ERROR - 2019-01-09 14:47:14 --> Severity: Warning --> Invalid argument supplied for foreach() C:\xampp\htdocs\ria\application\views\banksupplierledger.php 10
+ERROR - 2019-01-09 14:47:15 --> Severity: Notice --> Undefined variable: supplierledger C:\xampp\htdocs\ria\application\views\banksupplierledger.php 102
+ERROR - 2019-01-09 14:47:15 --> Severity: Warning --> Invalid argument supplied for foreach() C:\xampp\htdocs\ria\application\views\banksupplierledger.php 102
+ERROR - 2019-01-09 14:47:15 --> Severity: Notice --> Undefined variable: suppliername C:\xampp\htdocs\ria\application\views\banksupplierledger.php 107
+ERROR - 2019-01-09 14:47:15 --> Severity: Notice --> Undefined variable: tot_amount C:\xampp\htdocs\ria\application\views\banksupplierledger.php 108
+ERROR - 2019-01-09 14:47:15 --> Severity: Notice --> Undefined variable: supplierid C:\xampp\htdocs\ria\application\views\banksupplierledger.php 112
+ERROR - 2019-01-09 14:47:15 --> Severity: Notice --> Undefined variable: suppliername C:\xampp\htdocs\ria\application\views\banksupplierledger.php 113
+ERROR - 2019-01-09 14:47:26 --> Severity: Notice --> Undefined variable: customer C:\xampp\htdocs\ria\application\controllers\cashbook.php 1886
+ERROR - 2019-01-09 14:47:26 --> Severity: Notice --> Undefined variable: financialyear C:\xampp\htdocs\ria\application\views\banksupplierledger.php 10
+ERROR - 2019-01-09 14:47:27 --> Severity: Warning --> Invalid argument supplied for foreach() C:\xampp\htdocs\ria\application\views\banksupplierledger.php 10
+ERROR - 2019-01-09 14:47:27 --> Severity: Notice --> Undefined variable: tot_amount C:\xampp\htdocs\ria\application\views\banksupplierledger.php 108
+ERROR - 2019-01-09 14:47:27 --> Severity: Notice --> Undefined property: stdClass::$bankdate C:\xampp\htdocs\ria\application\views\banksupplierledger.php 278
+ERROR - 2019-01-09 14:47:27 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\banksupplierledger.php 286
+ERROR - 2019-01-09 14:47:27 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\banksupplierledger.php 286
+ERROR - 2019-01-09 14:47:27 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\banksupplierledger.php 287
+ERROR - 2019-01-09 14:47:28 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\banksupplierledger.php 287
+ERROR - 2019-01-09 14:47:28 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\banksupplierledger.php 288
+ERROR - 2019-01-09 14:47:28 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\banksupplierledger.php 288
+ERROR - 2019-01-09 14:47:28 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\banksupplierledger.php 289
+ERROR - 2019-01-09 14:47:28 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\banksupplierledger.php 289
+ERROR - 2019-01-09 14:47:29 --> Severity: Notice --> Undefined variable: tot_amount C:\xampp\htdocs\ria\application\views\banksupplierledger.php 306
+ERROR - 2019-01-09 14:47:29 --> Severity: Notice --> Undefined variable: record C:\xampp\htdocs\ria\application\views\banksupplierledger.php 320
+ERROR - 2019-01-09 14:47:29 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\banksupplierledger.php 320
+ERROR - 2019-01-09 14:47:29 --> Severity: Notice --> Undefined property: stdClass::$bankdate C:\xampp\htdocs\ria\application\views\banksupplierledger.php 278
+ERROR - 2019-01-09 14:47:29 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\banksupplierledger.php 286
+ERROR - 2019-01-09 14:47:29 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\banksupplierledger.php 286
+ERROR - 2019-01-09 14:47:30 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\banksupplierledger.php 287
+ERROR - 2019-01-09 14:47:30 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\banksupplierledger.php 287
+ERROR - 2019-01-09 14:47:30 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\banksupplierledger.php 288
+ERROR - 2019-01-09 14:47:30 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\banksupplierledger.php 288
+ERROR - 2019-01-09 14:47:30 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\banksupplierledger.php 289
+ERROR - 2019-01-09 14:47:30 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\banksupplierledger.php 289
+ERROR - 2019-01-09 14:47:31 --> Severity: Notice --> Undefined variable: record C:\xampp\htdocs\ria\application\views\banksupplierledger.php 320
+ERROR - 2019-01-09 14:47:31 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\banksupplierledger.php 320
+ERROR - 2019-01-09 14:47:31 --> Severity: Notice --> Undefined property: stdClass::$bankdate C:\xampp\htdocs\ria\application\views\banksupplierledger.php 278
+ERROR - 2019-01-09 14:47:31 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\banksupplierledger.php 286
+ERROR - 2019-01-09 14:47:31 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\banksupplierledger.php 286
+ERROR - 2019-01-09 14:47:32 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\banksupplierledger.php 287
+ERROR - 2019-01-09 14:47:32 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\banksupplierledger.php 287
+ERROR - 2019-01-09 14:47:32 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\banksupplierledger.php 288
+ERROR - 2019-01-09 14:47:32 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\banksupplierledger.php 288
+ERROR - 2019-01-09 14:47:32 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\banksupplierledger.php 289
+ERROR - 2019-01-09 14:47:32 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\banksupplierledger.php 289
+ERROR - 2019-01-09 14:47:33 --> Severity: Notice --> Undefined variable: record C:\xampp\htdocs\ria\application\views\banksupplierledger.php 320
+ERROR - 2019-01-09 14:47:33 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\banksupplierledger.php 320
+ERROR - 2019-01-09 14:47:33 --> Severity: Notice --> Undefined property: stdClass::$bankdate C:\xampp\htdocs\ria\application\views\banksupplierledger.php 278
+ERROR - 2019-01-09 14:47:33 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\banksupplierledger.php 286
+ERROR - 2019-01-09 14:47:34 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\banksupplierledger.php 286
+ERROR - 2019-01-09 14:47:34 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\banksupplierledger.php 287
+ERROR - 2019-01-09 14:47:34 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\banksupplierledger.php 287
+ERROR - 2019-01-09 14:47:34 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\banksupplierledger.php 288
+ERROR - 2019-01-09 14:47:34 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\banksupplierledger.php 288
+ERROR - 2019-01-09 14:47:35 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\banksupplierledger.php 289
+ERROR - 2019-01-09 14:47:35 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\banksupplierledger.php 289
+ERROR - 2019-01-09 14:47:35 --> Severity: Notice --> Undefined variable: record C:\xampp\htdocs\ria\application\views\banksupplierledger.php 320
+ERROR - 2019-01-09 14:47:35 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\banksupplierledger.php 320
+ERROR - 2019-01-09 14:47:35 --> Severity: Notice --> Undefined property: stdClass::$bankdate C:\xampp\htdocs\ria\application\views\banksupplierledger.php 278
+ERROR - 2019-01-09 14:47:36 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\banksupplierledger.php 286
+ERROR - 2019-01-09 14:47:36 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\banksupplierledger.php 286
+ERROR - 2019-01-09 14:47:36 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\banksupplierledger.php 287
+ERROR - 2019-01-09 14:47:36 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\banksupplierledger.php 287
+ERROR - 2019-01-09 14:47:37 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\banksupplierledger.php 288
+ERROR - 2019-01-09 14:47:37 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\banksupplierledger.php 288
+ERROR - 2019-01-09 14:47:37 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\banksupplierledger.php 289
+ERROR - 2019-01-09 14:47:37 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\banksupplierledger.php 289
+ERROR - 2019-01-09 14:47:37 --> Severity: Notice --> Undefined variable: record C:\xampp\htdocs\ria\application\views\banksupplierledger.php 320
+ERROR - 2019-01-09 14:47:37 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\banksupplierledger.php 320
+ERROR - 2019-01-09 14:47:38 --> Severity: Notice --> Undefined property: stdClass::$bankdate C:\xampp\htdocs\ria\application\views\banksupplierledger.php 278
+ERROR - 2019-01-09 14:47:38 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\banksupplierledger.php 286
+ERROR - 2019-01-09 14:47:38 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\banksupplierledger.php 286
+ERROR - 2019-01-09 14:47:38 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\banksupplierledger.php 287
+ERROR - 2019-01-09 14:47:39 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\banksupplierledger.php 287
+ERROR - 2019-01-09 14:47:39 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\banksupplierledger.php 288
+ERROR - 2019-01-09 14:47:39 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\banksupplierledger.php 288
+ERROR - 2019-01-09 14:47:39 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\banksupplierledger.php 289
+ERROR - 2019-01-09 14:47:40 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\banksupplierledger.php 289
+ERROR - 2019-01-09 14:47:40 --> Severity: Notice --> Undefined variable: record C:\xampp\htdocs\ria\application\views\banksupplierledger.php 320
+ERROR - 2019-01-09 14:47:40 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\banksupplierledger.php 320
+ERROR - 2019-01-09 14:47:40 --> Severity: Notice --> Undefined property: stdClass::$bankdate C:\xampp\htdocs\ria\application\views\banksupplierledger.php 278
+ERROR - 2019-01-09 14:47:41 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\banksupplierledger.php 286
+ERROR - 2019-01-09 14:47:41 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\banksupplierledger.php 286
+ERROR - 2019-01-09 14:47:41 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\banksupplierledger.php 287
+ERROR - 2019-01-09 14:47:41 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\banksupplierledger.php 287
+ERROR - 2019-01-09 14:47:41 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\banksupplierledger.php 288
+ERROR - 2019-01-09 14:47:42 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\banksupplierledger.php 288
+ERROR - 2019-01-09 14:47:42 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\banksupplierledger.php 289
+ERROR - 2019-01-09 14:47:42 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\banksupplierledger.php 289
+ERROR - 2019-01-09 14:47:42 --> Severity: Notice --> Undefined variable: record C:\xampp\htdocs\ria\application\views\banksupplierledger.php 320
+ERROR - 2019-01-09 14:47:42 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\banksupplierledger.php 320
+ERROR - 2019-01-09 14:47:42 --> Severity: Notice --> Undefined property: stdClass::$bankdate C:\xampp\htdocs\ria\application\views\banksupplierledger.php 278
+ERROR - 2019-01-09 14:47:43 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\banksupplierledger.php 286
+ERROR - 2019-01-09 14:47:43 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\banksupplierledger.php 286
+ERROR - 2019-01-09 14:47:43 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\banksupplierledger.php 287
+ERROR - 2019-01-09 14:47:43 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\banksupplierledger.php 287
+ERROR - 2019-01-09 14:47:43 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\banksupplierledger.php 288
+ERROR - 2019-01-09 14:47:44 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\banksupplierledger.php 288
+ERROR - 2019-01-09 14:47:44 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\banksupplierledger.php 289
+ERROR - 2019-01-09 14:47:44 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\banksupplierledger.php 289
+ERROR - 2019-01-09 14:47:44 --> Severity: Notice --> Undefined variable: record C:\xampp\htdocs\ria\application\views\banksupplierledger.php 320
+ERROR - 2019-01-09 14:47:44 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\banksupplierledger.php 320
+ERROR - 2019-01-09 14:47:44 --> Severity: Notice --> Undefined property: stdClass::$bankdate C:\xampp\htdocs\ria\application\views\banksupplierledger.php 278
+ERROR - 2019-01-09 14:47:45 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\banksupplierledger.php 286
+ERROR - 2019-01-09 14:47:45 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\banksupplierledger.php 286
+ERROR - 2019-01-09 14:47:45 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\banksupplierledger.php 287
+ERROR - 2019-01-09 14:47:45 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\banksupplierledger.php 287
+ERROR - 2019-01-09 14:47:45 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\banksupplierledger.php 288
+ERROR - 2019-01-09 14:47:45 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\banksupplierledger.php 288
+ERROR - 2019-01-09 14:47:46 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\banksupplierledger.php 289
+ERROR - 2019-01-09 14:47:46 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\banksupplierledger.php 289
+ERROR - 2019-01-09 14:47:46 --> Severity: Notice --> Undefined variable: record C:\xampp\htdocs\ria\application\views\banksupplierledger.php 320
+ERROR - 2019-01-09 14:47:46 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\banksupplierledger.php 320
+ERROR - 2019-01-09 14:47:46 --> Severity: Notice --> Undefined property: stdClass::$bankdate C:\xampp\htdocs\ria\application\views\banksupplierledger.php 278
+ERROR - 2019-01-09 14:47:46 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\banksupplierledger.php 286
+ERROR - 2019-01-09 14:47:47 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\banksupplierledger.php 286
+ERROR - 2019-01-09 14:47:47 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\banksupplierledger.php 287
+ERROR - 2019-01-09 14:47:47 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\banksupplierledger.php 287
+ERROR - 2019-01-09 14:47:47 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\banksupplierledger.php 288
+ERROR - 2019-01-09 14:47:47 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\banksupplierledger.php 288
+ERROR - 2019-01-09 14:47:48 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\banksupplierledger.php 289
+ERROR - 2019-01-09 14:47:48 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\banksupplierledger.php 289
+ERROR - 2019-01-09 14:47:48 --> Severity: Notice --> Undefined variable: record C:\xampp\htdocs\ria\application\views\banksupplierledger.php 320
+ERROR - 2019-01-09 14:47:48 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\banksupplierledger.php 320
+ERROR - 2019-01-09 14:47:48 --> Severity: Notice --> Undefined property: stdClass::$bankdate C:\xampp\htdocs\ria\application\views\banksupplierledger.php 278
+ERROR - 2019-01-09 14:47:48 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\banksupplierledger.php 286
+ERROR - 2019-01-09 14:47:49 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\banksupplierledger.php 286
+ERROR - 2019-01-09 14:47:49 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\banksupplierledger.php 287
+ERROR - 2019-01-09 14:47:49 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\banksupplierledger.php 287
+ERROR - 2019-01-09 14:47:49 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\banksupplierledger.php 288
+ERROR - 2019-01-09 14:47:49 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\banksupplierledger.php 288
+ERROR - 2019-01-09 14:47:50 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\banksupplierledger.php 289
+ERROR - 2019-01-09 14:47:50 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\banksupplierledger.php 289
+ERROR - 2019-01-09 14:47:50 --> Severity: Notice --> Undefined variable: record C:\xampp\htdocs\ria\application\views\banksupplierledger.php 320
+ERROR - 2019-01-09 14:47:50 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\banksupplierledger.php 320
+ERROR - 2019-01-09 14:47:50 --> Severity: Notice --> Undefined property: stdClass::$bankdate C:\xampp\htdocs\ria\application\views\banksupplierledger.php 278
+ERROR - 2019-01-09 14:47:50 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\banksupplierledger.php 286
+ERROR - 2019-01-09 14:47:51 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\banksupplierledger.php 286
+ERROR - 2019-01-09 14:47:51 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\banksupplierledger.php 287
+ERROR - 2019-01-09 14:47:51 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\banksupplierledger.php 287
+ERROR - 2019-01-09 14:47:51 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\banksupplierledger.php 288
+ERROR - 2019-01-09 14:47:51 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\banksupplierledger.php 288
+ERROR - 2019-01-09 14:47:51 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\banksupplierledger.php 289
+ERROR - 2019-01-09 14:47:52 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\banksupplierledger.php 289
+ERROR - 2019-01-09 14:47:52 --> Severity: Notice --> Undefined variable: record C:\xampp\htdocs\ria\application\views\banksupplierledger.php 320
+ERROR - 2019-01-09 14:47:52 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\banksupplierledger.php 320
+ERROR - 2019-01-09 14:47:52 --> Severity: Notice --> Undefined property: stdClass::$bankdate C:\xampp\htdocs\ria\application\views\banksupplierledger.php 278
+ERROR - 2019-01-09 14:47:52 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\banksupplierledger.php 286
+ERROR - 2019-01-09 14:47:53 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\banksupplierledger.php 286
+ERROR - 2019-01-09 14:47:53 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\banksupplierledger.php 287
+ERROR - 2019-01-09 14:47:53 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\banksupplierledger.php 287
+ERROR - 2019-01-09 14:47:53 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\banksupplierledger.php 288
+ERROR - 2019-01-09 14:47:53 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\banksupplierledger.php 288
+ERROR - 2019-01-09 14:47:53 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\banksupplierledger.php 289
+ERROR - 2019-01-09 14:47:54 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\banksupplierledger.php 289
+ERROR - 2019-01-09 14:47:54 --> Severity: Notice --> Undefined variable: record C:\xampp\htdocs\ria\application\views\banksupplierledger.php 320
+ERROR - 2019-01-09 14:47:54 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\banksupplierledger.php 320
+ERROR - 2019-01-09 14:47:54 --> Severity: Notice --> Undefined property: stdClass::$bankdate C:\xampp\htdocs\ria\application\views\banksupplierledger.php 278
+ERROR - 2019-01-09 14:47:54 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\banksupplierledger.php 286
+ERROR - 2019-01-09 14:47:54 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\banksupplierledger.php 286
+ERROR - 2019-01-09 14:47:55 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\banksupplierledger.php 287
+ERROR - 2019-01-09 14:47:55 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\banksupplierledger.php 287
+ERROR - 2019-01-09 14:47:55 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\banksupplierledger.php 288
+ERROR - 2019-01-09 14:47:55 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\banksupplierledger.php 288
+ERROR - 2019-01-09 14:47:55 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\banksupplierledger.php 289
+ERROR - 2019-01-09 14:47:55 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\banksupplierledger.php 289
+ERROR - 2019-01-09 14:47:56 --> Severity: Notice --> Undefined variable: record C:\xampp\htdocs\ria\application\views\banksupplierledger.php 320
+ERROR - 2019-01-09 14:47:56 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\banksupplierledger.php 320
+ERROR - 2019-01-09 14:47:56 --> Severity: Notice --> Undefined property: stdClass::$bankdate C:\xampp\htdocs\ria\application\views\banksupplierledger.php 278
+ERROR - 2019-01-09 14:47:56 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\banksupplierledger.php 286
+ERROR - 2019-01-09 14:47:56 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\banksupplierledger.php 286
+ERROR - 2019-01-09 14:47:57 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\banksupplierledger.php 287
+ERROR - 2019-01-09 14:47:57 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\banksupplierledger.php 287
+ERROR - 2019-01-09 14:47:57 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\banksupplierledger.php 288
+ERROR - 2019-01-09 14:47:57 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\banksupplierledger.php 288
+ERROR - 2019-01-09 14:47:57 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\banksupplierledger.php 289
+ERROR - 2019-01-09 14:47:57 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\banksupplierledger.php 289
+ERROR - 2019-01-09 14:47:58 --> Severity: Notice --> Undefined variable: record C:\xampp\htdocs\ria\application\views\banksupplierledger.php 320
+ERROR - 2019-01-09 14:47:58 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\banksupplierledger.php 320
+ERROR - 2019-01-09 14:47:58 --> Severity: Notice --> Undefined property: stdClass::$bankdate C:\xampp\htdocs\ria\application\views\banksupplierledger.php 278
+ERROR - 2019-01-09 14:47:58 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\banksupplierledger.php 286
+ERROR - 2019-01-09 14:47:58 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\banksupplierledger.php 286
+ERROR - 2019-01-09 14:47:59 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\banksupplierledger.php 287
+ERROR - 2019-01-09 14:47:59 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\banksupplierledger.php 287
+ERROR - 2019-01-09 14:47:59 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\banksupplierledger.php 288
+ERROR - 2019-01-09 14:47:59 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\banksupplierledger.php 288
+ERROR - 2019-01-09 14:47:59 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\banksupplierledger.php 289
+ERROR - 2019-01-09 14:47:59 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\banksupplierledger.php 289
+ERROR - 2019-01-09 14:48:00 --> Severity: Notice --> Undefined variable: record C:\xampp\htdocs\ria\application\views\banksupplierledger.php 320
+ERROR - 2019-01-09 14:48:00 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\banksupplierledger.php 320
+ERROR - 2019-01-09 14:48:00 --> Severity: Notice --> Undefined property: stdClass::$bankdate C:\xampp\htdocs\ria\application\views\banksupplierledger.php 278
+ERROR - 2019-01-09 14:48:00 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\banksupplierledger.php 286
+ERROR - 2019-01-09 14:48:00 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\banksupplierledger.php 286
+ERROR - 2019-01-09 14:48:00 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\banksupplierledger.php 287
+ERROR - 2019-01-09 14:48:01 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\banksupplierledger.php 287
+ERROR - 2019-01-09 14:48:01 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\banksupplierledger.php 288
+ERROR - 2019-01-09 14:48:01 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\banksupplierledger.php 288
+ERROR - 2019-01-09 14:48:01 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\banksupplierledger.php 289
+ERROR - 2019-01-09 14:48:01 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\banksupplierledger.php 289
+ERROR - 2019-01-09 14:48:02 --> Severity: Notice --> Undefined variable: record C:\xampp\htdocs\ria\application\views\banksupplierledger.php 320
+ERROR - 2019-01-09 14:48:02 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\banksupplierledger.php 320
+ERROR - 2019-01-09 14:48:02 --> Severity: Notice --> Undefined property: stdClass::$bankdate C:\xampp\htdocs\ria\application\views\banksupplierledger.php 278
+ERROR - 2019-01-09 14:48:02 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\banksupplierledger.php 286
+ERROR - 2019-01-09 14:48:02 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\banksupplierledger.php 286
+ERROR - 2019-01-09 14:48:02 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\banksupplierledger.php 287
+ERROR - 2019-01-09 14:48:03 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\banksupplierledger.php 287
+ERROR - 2019-01-09 14:48:03 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\banksupplierledger.php 288
+ERROR - 2019-01-09 14:48:03 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\banksupplierledger.php 288
+ERROR - 2019-01-09 14:48:03 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\banksupplierledger.php 289
+ERROR - 2019-01-09 14:48:03 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\banksupplierledger.php 289
+ERROR - 2019-01-09 14:48:03 --> Severity: Notice --> Undefined variable: record C:\xampp\htdocs\ria\application\views\banksupplierledger.php 320
+ERROR - 2019-01-09 14:48:04 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\banksupplierledger.php 320
+ERROR - 2019-01-09 14:48:04 --> Severity: Notice --> Undefined property: stdClass::$bankdate C:\xampp\htdocs\ria\application\views\banksupplierledger.php 278
+ERROR - 2019-01-09 14:48:04 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\banksupplierledger.php 286
+ERROR - 2019-01-09 14:48:04 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\banksupplierledger.php 286
+ERROR - 2019-01-09 14:48:04 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\banksupplierledger.php 287
+ERROR - 2019-01-09 14:48:04 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\banksupplierledger.php 287
+ERROR - 2019-01-09 14:48:05 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\banksupplierledger.php 288
+ERROR - 2019-01-09 14:48:05 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\banksupplierledger.php 288
+ERROR - 2019-01-09 14:48:05 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\banksupplierledger.php 289
+ERROR - 2019-01-09 14:48:05 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\banksupplierledger.php 289
+ERROR - 2019-01-09 14:48:05 --> Severity: Notice --> Undefined variable: record C:\xampp\htdocs\ria\application\views\banksupplierledger.php 320
+ERROR - 2019-01-09 14:48:06 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\banksupplierledger.php 320
+ERROR - 2019-01-09 14:48:06 --> Severity: Notice --> Undefined property: stdClass::$bankdate C:\xampp\htdocs\ria\application\views\banksupplierledger.php 278
+ERROR - 2019-01-09 14:48:06 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\banksupplierledger.php 286
+ERROR - 2019-01-09 14:48:06 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\banksupplierledger.php 286
+ERROR - 2019-01-09 14:48:06 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\banksupplierledger.php 287
+ERROR - 2019-01-09 14:48:06 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\banksupplierledger.php 287
+ERROR - 2019-01-09 14:48:07 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\banksupplierledger.php 288
+ERROR - 2019-01-09 14:48:07 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\banksupplierledger.php 288
+ERROR - 2019-01-09 14:48:07 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\banksupplierledger.php 289
+ERROR - 2019-01-09 14:48:07 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\banksupplierledger.php 289
+ERROR - 2019-01-09 14:48:07 --> Severity: Notice --> Undefined variable: record C:\xampp\htdocs\ria\application\views\banksupplierledger.php 320
+ERROR - 2019-01-09 14:48:07 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\banksupplierledger.php 320
+ERROR - 2019-01-09 14:48:08 --> Severity: Notice --> Undefined property: stdClass::$bankdate C:\xampp\htdocs\ria\application\views\banksupplierledger.php 278
+ERROR - 2019-01-09 14:48:08 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\banksupplierledger.php 286
+ERROR - 2019-01-09 14:48:08 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\banksupplierledger.php 286
+ERROR - 2019-01-09 14:48:08 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\banksupplierledger.php 287
+ERROR - 2019-01-09 14:48:08 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\banksupplierledger.php 287
+ERROR - 2019-01-09 14:48:08 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\banksupplierledger.php 288
+ERROR - 2019-01-09 14:48:09 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\banksupplierledger.php 288
+ERROR - 2019-01-09 14:48:09 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\banksupplierledger.php 289
+ERROR - 2019-01-09 14:48:09 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\banksupplierledger.php 289
+ERROR - 2019-01-09 14:48:09 --> Severity: Notice --> Undefined variable: record C:\xampp\htdocs\ria\application\views\banksupplierledger.php 320
+ERROR - 2019-01-09 14:48:09 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\banksupplierledger.php 320
+ERROR - 2019-01-09 14:48:10 --> Severity: Notice --> Undefined property: stdClass::$bankdate C:\xampp\htdocs\ria\application\views\banksupplierledger.php 278
+ERROR - 2019-01-09 14:48:10 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\banksupplierledger.php 286
+ERROR - 2019-01-09 14:48:10 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\banksupplierledger.php 286
+ERROR - 2019-01-09 14:48:10 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\banksupplierledger.php 287
+ERROR - 2019-01-09 14:48:10 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\banksupplierledger.php 287
+ERROR - 2019-01-09 14:48:10 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\banksupplierledger.php 288
+ERROR - 2019-01-09 14:48:11 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\banksupplierledger.php 288
+ERROR - 2019-01-09 14:48:11 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\banksupplierledger.php 289
+ERROR - 2019-01-09 14:48:11 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\banksupplierledger.php 289
+ERROR - 2019-01-09 14:48:11 --> Severity: Notice --> Undefined variable: record C:\xampp\htdocs\ria\application\views\banksupplierledger.php 320
+ERROR - 2019-01-09 14:48:11 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\banksupplierledger.php 320
+ERROR - 2019-01-09 14:55:28 --> Severity: Notice --> Undefined variable: fdate C:\xampp\htdocs\ria\application\controllers\cashbook.php 1172
+ERROR - 2019-01-09 14:55:28 --> Severity: Notice --> Undefined variable: tdate C:\xampp\htdocs\ria\application\controllers\cashbook.php 1172
+ERROR - 2019-01-09 14:55:28 --> Severity: Notice --> Undefined variable: fa C:\xampp\htdocs\ria\application\controllers\cashbook.php 1172
+ERROR - 2019-01-09 14:55:29 --> Severity: Notice --> Undefined variable: aa C:\xampp\htdocs\ria\application\controllers\cashbook.php 1172
+ERROR - 2019-01-09 14:55:29 --> Severity: Notice --> Undefined variable: financialyear C:\xampp\htdocs\ria\application\views\bankstatement.php 2
+ERROR - 2019-01-09 14:55:29 --> Severity: Warning --> Invalid argument supplied for foreach() C:\xampp\htdocs\ria\application\views\bankstatement.php 2
+ERROR - 2019-01-09 14:55:29 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 85
+ERROR - 2019-01-09 14:55:29 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 85
+ERROR - 2019-01-09 14:55:30 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 86
+ERROR - 2019-01-09 14:55:30 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 86
+ERROR - 2019-01-09 14:55:30 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 87
+ERROR - 2019-01-09 14:55:30 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 87
+ERROR - 2019-01-09 14:55:30 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 137
+ERROR - 2019-01-09 14:55:31 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 137
+ERROR - 2019-01-09 14:55:31 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 138
+ERROR - 2019-01-09 14:55:31 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 138
+ERROR - 2019-01-09 14:55:31 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 139
+ERROR - 2019-01-09 14:55:31 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 139
+ERROR - 2019-01-09 14:55:48 --> Severity: Notice --> Undefined variable: financialyear C:\xampp\htdocs\ria\application\views\bankinvoice.php 2
+ERROR - 2019-01-09 14:55:48 --> Severity: Warning --> Invalid argument supplied for foreach() C:\xampp\htdocs\ria\application\views\bankinvoice.php 2
+ERROR - 2019-01-09 14:55:48 --> Severity: Notice --> Undefined variable: cash C:\xampp\htdocs\ria\application\views\bankinvoice.php 80
+ERROR - 2019-01-09 14:55:48 --> Severity: Notice --> Undefined variable: bankid C:\xampp\htdocs\ria\application\views\bankinvoice.php 82
+ERROR - 2019-01-09 14:55:54 --> Severity: Notice --> Undefined variable: financialyear C:\xampp\htdocs\ria\application\views\bankinvoice.php 2
+ERROR - 2019-01-09 14:55:54 --> Severity: Warning --> Invalid argument supplied for foreach() C:\xampp\htdocs\ria\application\views\bankinvoice.php 2
+ERROR - 2019-01-09 14:55:54 --> Severity: Notice --> Undefined variable: cash C:\xampp\htdocs\ria\application\views\bankinvoice.php 80
+ERROR - 2019-01-09 14:55:54 --> Severity: Notice --> Undefined variable: bankid C:\xampp\htdocs\ria\application\views\bankinvoice.php 82
+ERROR - 2019-01-09 14:55:55 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-09 14:55:55 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-09 14:55:55 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-09 14:55:55 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-09 14:55:55 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-09 14:55:55 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-09 14:55:56 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-09 14:55:56 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-09 14:56:47 --> Severity: Notice --> Undefined variable: financialyear C:\xampp\htdocs\ria\application\views\bankinvoice.php 2
+ERROR - 2019-01-09 14:56:47 --> Severity: Warning --> Invalid argument supplied for foreach() C:\xampp\htdocs\ria\application\views\bankinvoice.php 2
+ERROR - 2019-01-09 14:56:47 --> Severity: Notice --> Undefined variable: cash C:\xampp\htdocs\ria\application\views\bankinvoice.php 80
+ERROR - 2019-01-09 14:56:47 --> Severity: Notice --> Undefined variable: bankid C:\xampp\htdocs\ria\application\views\bankinvoice.php 82
+ERROR - 2019-01-09 14:56:48 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-09 14:56:48 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-09 14:56:48 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-09 14:56:48 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-09 14:56:48 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-09 14:56:48 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-09 14:56:49 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-09 14:56:49 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-09 14:57:31 --> Severity: Notice --> Undefined variable: financialyear C:\xampp\htdocs\ria\application\views\bankinvoice.php 2
+ERROR - 2019-01-09 14:57:31 --> Severity: Warning --> Invalid argument supplied for foreach() C:\xampp\htdocs\ria\application\views\bankinvoice.php 2
+ERROR - 2019-01-09 14:57:31 --> Severity: Notice --> Undefined variable: cash C:\xampp\htdocs\ria\application\views\bankinvoice.php 80
+ERROR - 2019-01-09 14:57:31 --> Severity: Notice --> Undefined variable: bankid C:\xampp\htdocs\ria\application\views\bankinvoice.php 82
+ERROR - 2019-01-09 14:57:32 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-09 14:57:32 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-09 14:57:32 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-09 14:57:32 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-09 14:57:32 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-09 14:57:33 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-09 14:57:33 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-09 14:57:33 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-09 15:20:46 --> Severity: Notice --> Undefined variable: financialyear C:\xampp\htdocs\ria\application\views\bankinvoice.php 2
+ERROR - 2019-01-09 15:20:46 --> Severity: Warning --> Invalid argument supplied for foreach() C:\xampp\htdocs\ria\application\views\bankinvoice.php 2
+ERROR - 2019-01-09 15:20:46 --> Severity: Notice --> Undefined variable: cash C:\xampp\htdocs\ria\application\views\bankinvoice.php 80
+ERROR - 2019-01-09 15:20:47 --> Severity: Notice --> Undefined variable: bankid C:\xampp\htdocs\ria\application\views\bankinvoice.php 82
+ERROR - 2019-01-09 15:20:47 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-09 15:20:47 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-09 15:20:47 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-09 15:20:47 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-09 15:20:48 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-09 15:20:48 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-09 15:20:48 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-09 15:20:48 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-09 15:21:53 --> Severity: Notice --> Undefined variable: financialyear C:\xampp\htdocs\ria\application\views\bankinvoice.php 2
+ERROR - 2019-01-09 15:21:53 --> Severity: Warning --> Invalid argument supplied for foreach() C:\xampp\htdocs\ria\application\views\bankinvoice.php 2
+ERROR - 2019-01-09 15:21:53 --> Severity: Notice --> Undefined variable: cash C:\xampp\htdocs\ria\application\views\bankinvoice.php 80
+ERROR - 2019-01-09 15:21:53 --> Severity: Notice --> Undefined variable: bankid C:\xampp\htdocs\ria\application\views\bankinvoice.php 82
+ERROR - 2019-01-09 15:21:54 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-09 15:21:54 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-09 15:21:54 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-09 15:21:54 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-09 15:21:54 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-09 15:21:55 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-09 15:21:55 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-09 15:21:55 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
diff --git a/application/logs/log-2019-01-10.php b/application/logs/log-2019-01-10.php
new file mode 100644
index 00000000..7ee79536
--- /dev/null
+++ b/application/logs/log-2019-01-10.php
@@ -0,0 +1,27695 @@
+
+
+ERROR - 2019-01-10 06:52:54 --> Severity: Notice --> Undefined variable: fdate C:\xampp\htdocs\ria\application\controllers\cashbook.php 1172
+ERROR - 2019-01-10 06:52:54 --> Severity: Notice --> Undefined variable: tdate C:\xampp\htdocs\ria\application\controllers\cashbook.php 1172
+ERROR - 2019-01-10 06:52:54 --> Severity: Notice --> Undefined variable: fa C:\xampp\htdocs\ria\application\controllers\cashbook.php 1172
+ERROR - 2019-01-10 06:52:54 --> Severity: Notice --> Undefined variable: aa C:\xampp\htdocs\ria\application\controllers\cashbook.php 1172
+ERROR - 2019-01-10 06:52:55 --> Severity: Notice --> Undefined variable: financialyear C:\xampp\htdocs\ria\application\views\bankstatement.php 2
+ERROR - 2019-01-10 06:52:55 --> Severity: Warning --> Invalid argument supplied for foreach() C:\xampp\htdocs\ria\application\views\bankstatement.php 2
+ERROR - 2019-01-10 06:52:55 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 85
+ERROR - 2019-01-10 06:52:55 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 85
+ERROR - 2019-01-10 06:52:55 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 86
+ERROR - 2019-01-10 06:52:55 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 86
+ERROR - 2019-01-10 06:52:55 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 87
+ERROR - 2019-01-10 06:52:55 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 87
+ERROR - 2019-01-10 06:52:55 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 137
+ERROR - 2019-01-10 06:52:55 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 137
+ERROR - 2019-01-10 06:52:55 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 138
+ERROR - 2019-01-10 06:52:55 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 138
+ERROR - 2019-01-10 06:52:55 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 139
+ERROR - 2019-01-10 06:52:55 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 139
+ERROR - 2019-01-10 06:53:12 --> Severity: Notice --> Undefined variable: financialyear C:\xampp\htdocs\ria\application\views\bankdebit.php 2
+ERROR - 2019-01-10 06:53:13 --> Severity: Warning --> Invalid argument supplied for foreach() C:\xampp\htdocs\ria\application\views\bankdebit.php 2
+ERROR - 2019-01-10 06:53:19 --> Severity: Notice --> Undefined variable: financialyear C:\xampp\htdocs\ria\application\views\bankdebit.php 2
+ERROR - 2019-01-10 06:53:19 --> Severity: Warning --> Invalid argument supplied for foreach() C:\xampp\htdocs\ria\application\views\bankdebit.php 2
+ERROR - 2019-01-10 06:53:19 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankdebit.php 177
+ERROR - 2019-01-10 06:53:19 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\ria\application\views\bankdebit.php 179
+ERROR - 2019-01-10 06:53:19 --> Severity: Notice --> Undefined property: stdClass::$IGRItemNo C:\xampp\htdocs\ria\application\views\bankdebit.php 193
+ERROR - 2019-01-10 06:53:19 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankdebit.php 177
+ERROR - 2019-01-10 06:53:19 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\ria\application\views\bankdebit.php 179
+ERROR - 2019-01-10 06:53:19 --> Severity: Notice --> Undefined property: stdClass::$IGRItemNo C:\xampp\htdocs\ria\application\views\bankdebit.php 193
+ERROR - 2019-01-10 06:53:19 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankdebit.php 177
+ERROR - 2019-01-10 06:53:19 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\ria\application\views\bankdebit.php 179
+ERROR - 2019-01-10 06:53:19 --> Severity: Notice --> Undefined property: stdClass::$IGRItemNo C:\xampp\htdocs\ria\application\views\bankdebit.php 193
+ERROR - 2019-01-10 06:53:19 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankdebit.php 177
+ERROR - 2019-01-10 06:53:19 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\ria\application\views\bankdebit.php 179
+ERROR - 2019-01-10 06:53:19 --> Severity: Notice --> Undefined property: stdClass::$IGRItemNo C:\xampp\htdocs\ria\application\views\bankdebit.php 193
+ERROR - 2019-01-10 06:53:19 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankdebit.php 177
+ERROR - 2019-01-10 06:53:19 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\ria\application\views\bankdebit.php 179
+ERROR - 2019-01-10 06:53:19 --> Severity: Notice --> Undefined property: stdClass::$IGRItemNo C:\xampp\htdocs\ria\application\views\bankdebit.php 193
+ERROR - 2019-01-10 06:53:19 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankdebit.php 177
+ERROR - 2019-01-10 06:53:19 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\ria\application\views\bankdebit.php 179
+ERROR - 2019-01-10 06:53:19 --> Severity: Notice --> Undefined property: stdClass::$IGRItemNo C:\xampp\htdocs\ria\application\views\bankdebit.php 193
+ERROR - 2019-01-10 06:53:20 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankdebit.php 177
+ERROR - 2019-01-10 06:53:20 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\ria\application\views\bankdebit.php 179
+ERROR - 2019-01-10 06:53:20 --> Severity: Notice --> Undefined property: stdClass::$IGRItemNo C:\xampp\htdocs\ria\application\views\bankdebit.php 193
+ERROR - 2019-01-10 06:53:20 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankdebit.php 177
+ERROR - 2019-01-10 06:53:20 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\ria\application\views\bankdebit.php 179
+ERROR - 2019-01-10 06:53:20 --> Severity: Notice --> Undefined property: stdClass::$IGRItemNo C:\xampp\htdocs\ria\application\views\bankdebit.php 193
+ERROR - 2019-01-10 06:53:20 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankdebit.php 177
+ERROR - 2019-01-10 06:53:20 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\ria\application\views\bankdebit.php 179
+ERROR - 2019-01-10 06:53:20 --> Severity: Notice --> Undefined property: stdClass::$IGRItemNo C:\xampp\htdocs\ria\application\views\bankdebit.php 193
+ERROR - 2019-01-10 06:53:20 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankdebit.php 177
+ERROR - 2019-01-10 06:53:20 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\ria\application\views\bankdebit.php 179
+ERROR - 2019-01-10 06:53:20 --> Severity: Notice --> Undefined property: stdClass::$IGRItemNo C:\xampp\htdocs\ria\application\views\bankdebit.php 193
+ERROR - 2019-01-10 06:53:20 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankdebit.php 177
+ERROR - 2019-01-10 06:53:20 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\ria\application\views\bankdebit.php 179
+ERROR - 2019-01-10 06:53:20 --> Severity: Notice --> Undefined property: stdClass::$IGRItemNo C:\xampp\htdocs\ria\application\views\bankdebit.php 193
+ERROR - 2019-01-10 06:53:20 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankdebit.php 177
+ERROR - 2019-01-10 06:53:20 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\ria\application\views\bankdebit.php 179
+ERROR - 2019-01-10 06:53:20 --> Severity: Notice --> Undefined property: stdClass::$IGRItemNo C:\xampp\htdocs\ria\application\views\bankdebit.php 193
+ERROR - 2019-01-10 06:53:20 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankdebit.php 177
+ERROR - 2019-01-10 06:53:20 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\ria\application\views\bankdebit.php 179
+ERROR - 2019-01-10 06:53:20 --> Severity: Notice --> Undefined property: stdClass::$IGRItemNo C:\xampp\htdocs\ria\application\views\bankdebit.php 193
+ERROR - 2019-01-10 06:53:20 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankdebit.php 177
+ERROR - 2019-01-10 06:53:20 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\ria\application\views\bankdebit.php 179
+ERROR - 2019-01-10 06:53:21 --> Severity: Notice --> Undefined property: stdClass::$IGRItemNo C:\xampp\htdocs\ria\application\views\bankdebit.php 193
+ERROR - 2019-01-10 06:53:21 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankdebit.php 177
+ERROR - 2019-01-10 06:53:21 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\ria\application\views\bankdebit.php 179
+ERROR - 2019-01-10 06:53:21 --> Severity: Notice --> Undefined property: stdClass::$IGRItemNo C:\xampp\htdocs\ria\application\views\bankdebit.php 193
+ERROR - 2019-01-10 06:53:21 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankdebit.php 177
+ERROR - 2019-01-10 06:53:21 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\ria\application\views\bankdebit.php 179
+ERROR - 2019-01-10 06:53:21 --> Severity: Notice --> Undefined property: stdClass::$IGRItemNo C:\xampp\htdocs\ria\application\views\bankdebit.php 193
+ERROR - 2019-01-10 06:54:17 --> Severity: Notice --> Undefined variable: balancetocleared C:\xampp\htdocs\ria\application\controllers\cashbook.php 1375
+ERROR - 2019-01-10 06:54:17 --> Severity: Notice --> Undefined variable: clearedblnce C:\xampp\htdocs\ria\application\controllers\cashbook.php 1384
+ERROR - 2019-01-10 06:54:17 --> Severity: Notice --> Undefined variable: balancetocleared C:\xampp\htdocs\ria\application\controllers\cashbook.php 1384
+ERROR - 2019-01-10 06:54:18 --> Severity: Notice --> Undefined variable: data C:\xampp\htdocs\ria\application\controllers\cashbook.php 1456
+ERROR - 2019-01-10 06:54:18 --> Severity: Notice --> Undefined variable: data C:\xampp\htdocs\ria\application\controllers\cashbook.php 1456
+ERROR - 2019-01-10 06:54:18 --> Severity: Notice --> Undefined variable: financialyear C:\xampp\htdocs\ria\application\views\bankstatement.php 2
+ERROR - 2019-01-10 06:54:18 --> Severity: Warning --> Invalid argument supplied for foreach() C:\xampp\htdocs\ria\application\views\bankstatement.php 2
+ERROR - 2019-01-10 06:54:18 --> Severity: Notice --> Undefined variable: financialyear C:\xampp\htdocs\ria\application\views\bankstatement.php 2
+ERROR - 2019-01-10 06:54:18 --> Severity: Notice --> Undefined variable: bankreport C:\xampp\htdocs\ria\application\views\bankstatement.php 8
+ERROR - 2019-01-10 06:54:18 --> Severity: Warning --> Invalid argument supplied for foreach() C:\xampp\htdocs\ria\application\views\bankstatement.php 2
+ERROR - 2019-01-10 06:54:18 --> Severity: Notice --> Undefined variable: bankreport C:\xampp\htdocs\ria\application\views\bankstatement.php 8
+ERROR - 2019-01-10 06:54:18 --> Severity: Warning --> Invalid argument supplied for foreach() C:\xampp\htdocs\ria\application\views\bankstatement.php 8
+ERROR - 2019-01-10 06:54:18 --> Severity: Warning --> Invalid argument supplied for foreach() C:\xampp\htdocs\ria\application\views\bankstatement.php 8
+ERROR - 2019-01-10 06:54:18 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 85
+ERROR - 2019-01-10 06:54:18 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 85
+ERROR - 2019-01-10 06:54:18 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 85
+ERROR - 2019-01-10 06:54:18 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 86
+ERROR - 2019-01-10 06:54:18 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 85
+ERROR - 2019-01-10 06:54:18 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 86
+ERROR - 2019-01-10 06:54:18 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 86
+ERROR - 2019-01-10 06:54:18 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 87
+ERROR - 2019-01-10 06:54:18 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 86
+ERROR - 2019-01-10 06:54:18 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 87
+ERROR - 2019-01-10 06:54:18 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 87
+ERROR - 2019-01-10 06:54:18 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 87
+ERROR - 2019-01-10 06:54:18 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 137
+ERROR - 2019-01-10 06:54:18 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 137
+ERROR - 2019-01-10 06:54:18 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 137
+ERROR - 2019-01-10 06:54:18 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 137
+ERROR - 2019-01-10 06:54:18 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 138
+ERROR - 2019-01-10 06:54:18 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 138
+ERROR - 2019-01-10 06:54:18 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 138
+ERROR - 2019-01-10 06:54:18 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 138
+ERROR - 2019-01-10 06:54:18 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 139
+ERROR - 2019-01-10 06:54:18 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 139
+ERROR - 2019-01-10 06:54:18 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 139
+ERROR - 2019-01-10 06:54:18 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 139
+ERROR - 2019-01-10 06:54:18 --> Severity: Notice --> Undefined variable: finyear C:\xampp\htdocs\ria\application\views\bankstatement.php 197
+ERROR - 2019-01-10 06:54:18 --> Severity: Warning --> Invalid argument supplied for foreach() C:\xampp\htdocs\ria\application\views\bankstatement.php 197
+ERROR - 2019-01-10 06:54:18 --> Severity: Notice --> Undefined variable: finyear C:\xampp\htdocs\ria\application\views\bankstatement.php 197
+ERROR - 2019-01-10 06:54:18 --> Severity: Warning --> Invalid argument supplied for foreach() C:\xampp\htdocs\ria\application\views\bankstatement.php 197
+ERROR - 2019-01-10 06:54:18 --> Severity: Notice --> Undefined variable: Bankname C:\xampp\htdocs\ria\application\views\bankstatement.php 235
+ERROR - 2019-01-10 06:54:18 --> Severity: Notice --> Undefined variable: Bankname C:\xampp\htdocs\ria\application\views\bankstatement.php 235
+ERROR - 2019-01-10 06:54:19 --> Severity: Notice --> Undefined variable: fdate C:\xampp\htdocs\ria\application\controllers\cashbook.php 1172
+ERROR - 2019-01-10 06:54:19 --> Severity: Notice --> Undefined variable: tdate C:\xampp\htdocs\ria\application\controllers\cashbook.php 1172
+ERROR - 2019-01-10 06:54:19 --> Severity: Notice --> Undefined variable: fa C:\xampp\htdocs\ria\application\controllers\cashbook.php 1172
+ERROR - 2019-01-10 06:54:19 --> Severity: Notice --> Undefined variable: fdate C:\xampp\htdocs\ria\application\controllers\cashbook.php 1172
+ERROR - 2019-01-10 06:54:19 --> Severity: Notice --> Undefined variable: tdate C:\xampp\htdocs\ria\application\controllers\cashbook.php 1172
+ERROR - 2019-01-10 06:54:19 --> Severity: Notice --> Undefined variable: aa C:\xampp\htdocs\ria\application\controllers\cashbook.php 1172
+ERROR - 2019-01-10 06:54:19 --> Severity: Notice --> Undefined variable: fa C:\xampp\htdocs\ria\application\controllers\cashbook.php 1172
+ERROR - 2019-01-10 06:54:20 --> Severity: Notice --> Undefined variable: aa C:\xampp\htdocs\ria\application\controllers\cashbook.php 1172
+ERROR - 2019-01-10 06:54:20 --> Severity: Notice --> Undefined variable: financialyear C:\xampp\htdocs\ria\application\views\bankstatement.php 2
+ERROR - 2019-01-10 06:54:20 --> Severity: Warning --> Invalid argument supplied for foreach() C:\xampp\htdocs\ria\application\views\bankstatement.php 2
+ERROR - 2019-01-10 06:54:20 --> Severity: Notice --> Undefined variable: financialyear C:\xampp\htdocs\ria\application\views\bankstatement.php 2
+ERROR - 2019-01-10 06:54:20 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 85
+ERROR - 2019-01-10 06:54:20 --> Severity: Warning --> Invalid argument supplied for foreach() C:\xampp\htdocs\ria\application\views\bankstatement.php 2
+ERROR - 2019-01-10 06:54:20 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 85
+ERROR - 2019-01-10 06:54:20 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 85
+ERROR - 2019-01-10 06:54:20 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 85
+ERROR - 2019-01-10 06:54:20 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 86
+ERROR - 2019-01-10 06:54:20 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 86
+ERROR - 2019-01-10 06:54:20 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 86
+ERROR - 2019-01-10 06:54:20 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 86
+ERROR - 2019-01-10 06:54:20 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 87
+ERROR - 2019-01-10 06:54:20 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 87
+ERROR - 2019-01-10 06:54:20 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 87
+ERROR - 2019-01-10 06:54:20 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 137
+ERROR - 2019-01-10 06:54:20 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 87
+ERROR - 2019-01-10 06:54:20 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 137
+ERROR - 2019-01-10 06:54:20 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 137
+ERROR - 2019-01-10 06:54:20 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 138
+ERROR - 2019-01-10 06:54:20 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 137
+ERROR - 2019-01-10 06:54:20 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 138
+ERROR - 2019-01-10 06:54:20 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 138
+ERROR - 2019-01-10 06:54:20 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 139
+ERROR - 2019-01-10 06:54:20 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 138
+ERROR - 2019-01-10 06:54:20 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 139
+ERROR - 2019-01-10 06:54:20 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 139
+ERROR - 2019-01-10 06:54:20 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 139
+ERROR - 2019-01-10 06:54:36 --> Severity: Notice --> Undefined variable: fdate C:\xampp\htdocs\ria\application\controllers\cashbook.php 1172
+ERROR - 2019-01-10 06:54:36 --> Severity: Notice --> Undefined variable: tdate C:\xampp\htdocs\ria\application\controllers\cashbook.php 1172
+ERROR - 2019-01-10 06:54:36 --> Severity: Notice --> Undefined variable: fa C:\xampp\htdocs\ria\application\controllers\cashbook.php 1172
+ERROR - 2019-01-10 06:54:36 --> Severity: Notice --> Undefined variable: aa C:\xampp\htdocs\ria\application\controllers\cashbook.php 1172
+ERROR - 2019-01-10 06:54:36 --> Severity: Notice --> Undefined variable: financialyear C:\xampp\htdocs\ria\application\views\bankstatement.php 2
+ERROR - 2019-01-10 06:54:36 --> Severity: Warning --> Invalid argument supplied for foreach() C:\xampp\htdocs\ria\application\views\bankstatement.php 2
+ERROR - 2019-01-10 06:54:36 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 85
+ERROR - 2019-01-10 06:54:36 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 85
+ERROR - 2019-01-10 06:54:36 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 86
+ERROR - 2019-01-10 06:54:36 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 86
+ERROR - 2019-01-10 06:54:36 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 87
+ERROR - 2019-01-10 06:54:36 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 87
+ERROR - 2019-01-10 06:54:36 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 137
+ERROR - 2019-01-10 06:54:36 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 137
+ERROR - 2019-01-10 06:54:36 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 138
+ERROR - 2019-01-10 06:54:36 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 138
+ERROR - 2019-01-10 06:54:36 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 139
+ERROR - 2019-01-10 06:54:36 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 139
+ERROR - 2019-01-10 06:55:02 --> Severity: Notice --> Undefined variable: financialyear C:\xampp\htdocs\ria\application\views\bankdebit.php 2
+ERROR - 2019-01-10 06:55:02 --> Severity: Warning --> Invalid argument supplied for foreach() C:\xampp\htdocs\ria\application\views\bankdebit.php 2
+ERROR - 2019-01-10 06:55:57 --> Severity: Notice --> Undefined variable: fdate C:\xampp\htdocs\ria\application\controllers\cashbook.php 1172
+ERROR - 2019-01-10 06:55:57 --> Severity: Notice --> Undefined variable: tdate C:\xampp\htdocs\ria\application\controllers\cashbook.php 1172
+ERROR - 2019-01-10 06:55:57 --> Severity: Notice --> Undefined variable: fa C:\xampp\htdocs\ria\application\controllers\cashbook.php 1172
+ERROR - 2019-01-10 06:55:57 --> Severity: Notice --> Undefined variable: aa C:\xampp\htdocs\ria\application\controllers\cashbook.php 1172
+ERROR - 2019-01-10 06:55:57 --> Severity: Notice --> Undefined variable: financialyear C:\xampp\htdocs\ria\application\views\bankstatement.php 2
+ERROR - 2019-01-10 06:55:57 --> Severity: Warning --> Invalid argument supplied for foreach() C:\xampp\htdocs\ria\application\views\bankstatement.php 2
+ERROR - 2019-01-10 06:55:57 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 85
+ERROR - 2019-01-10 06:55:57 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 85
+ERROR - 2019-01-10 06:55:57 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 86
+ERROR - 2019-01-10 06:55:57 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 86
+ERROR - 2019-01-10 06:55:57 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 87
+ERROR - 2019-01-10 06:55:57 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 87
+ERROR - 2019-01-10 06:55:57 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 137
+ERROR - 2019-01-10 06:55:57 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 137
+ERROR - 2019-01-10 06:55:57 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 138
+ERROR - 2019-01-10 06:55:57 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 138
+ERROR - 2019-01-10 06:55:57 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 139
+ERROR - 2019-01-10 06:55:58 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 139
+ERROR - 2019-01-10 06:57:08 --> Severity: Notice --> Undefined variable: financialyear C:\xampp\htdocs\ria\application\views\banksettlement.php 11
+ERROR - 2019-01-10 06:57:09 --> Severity: Warning --> Invalid argument supplied for foreach() C:\xampp\htdocs\ria\application\views\banksettlement.php 11
+ERROR - 2019-01-10 06:57:09 --> Severity: Notice --> Undefined variable: t C:\xampp\htdocs\ria\application\views\banksettlement.php 289
+ERROR - 2019-01-10 06:57:09 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\banksettlement.php 289
+ERROR - 2019-01-10 06:57:09 --> Severity: Notice --> Undefined variable: t C:\xampp\htdocs\ria\application\views\banksettlement.php 289
+ERROR - 2019-01-10 06:57:09 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\banksettlement.php 289
+ERROR - 2019-01-10 06:57:09 --> Severity: Notice --> Undefined variable: rel C:\xampp\htdocs\ria\application\views\banksettlement.php 290
+ERROR - 2019-01-10 06:57:09 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\banksettlement.php 290
+ERROR - 2019-01-10 06:57:09 --> Severity: Notice --> Undefined variable: record C:\xampp\htdocs\ria\application\views\banksettlement.php 345
+ERROR - 2019-01-10 06:57:09 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\banksettlement.php 345
+ERROR - 2019-01-10 06:57:09 --> Severity: Notice --> Undefined variable: t C:\xampp\htdocs\ria\application\views\banksettlement.php 289
+ERROR - 2019-01-10 06:57:09 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\banksettlement.php 289
+ERROR - 2019-01-10 06:57:09 --> Severity: Notice --> Undefined variable: t C:\xampp\htdocs\ria\application\views\banksettlement.php 289
+ERROR - 2019-01-10 06:57:09 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\banksettlement.php 289
+ERROR - 2019-01-10 06:57:09 --> Severity: Notice --> Undefined variable: rel C:\xampp\htdocs\ria\application\views\banksettlement.php 290
+ERROR - 2019-01-10 06:57:09 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\banksettlement.php 290
+ERROR - 2019-01-10 06:57:09 --> Severity: Notice --> Undefined variable: record C:\xampp\htdocs\ria\application\views\banksettlement.php 311
+ERROR - 2019-01-10 06:57:09 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\banksettlement.php 311
+ERROR - 2019-01-10 06:57:09 --> Severity: Notice --> Undefined variable: record C:\xampp\htdocs\ria\application\views\banksettlement.php 345
+ERROR - 2019-01-10 06:57:09 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\banksettlement.php 345
+ERROR - 2019-01-10 06:58:45 --> Severity: Notice --> Undefined variable: fdate C:\xampp\htdocs\ria\application\controllers\cashbook.php 1172
+ERROR - 2019-01-10 06:58:45 --> Severity: Notice --> Undefined variable: tdate C:\xampp\htdocs\ria\application\controllers\cashbook.php 1172
+ERROR - 2019-01-10 06:58:45 --> Severity: Notice --> Undefined variable: fa C:\xampp\htdocs\ria\application\controllers\cashbook.php 1172
+ERROR - 2019-01-10 06:58:45 --> Severity: Notice --> Undefined variable: aa C:\xampp\htdocs\ria\application\controllers\cashbook.php 1172
+ERROR - 2019-01-10 06:58:46 --> Severity: Notice --> Undefined variable: financialyear C:\xampp\htdocs\ria\application\views\bankstatement.php 2
+ERROR - 2019-01-10 06:58:46 --> Severity: Warning --> Invalid argument supplied for foreach() C:\xampp\htdocs\ria\application\views\bankstatement.php 2
+ERROR - 2019-01-10 06:58:46 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 85
+ERROR - 2019-01-10 06:58:46 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 85
+ERROR - 2019-01-10 06:58:46 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 86
+ERROR - 2019-01-10 06:58:46 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 86
+ERROR - 2019-01-10 06:58:46 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 87
+ERROR - 2019-01-10 06:58:46 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 87
+ERROR - 2019-01-10 06:58:46 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 137
+ERROR - 2019-01-10 06:58:46 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 137
+ERROR - 2019-01-10 06:58:46 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 138
+ERROR - 2019-01-10 06:58:46 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 138
+ERROR - 2019-01-10 06:58:46 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 139
+ERROR - 2019-01-10 06:58:46 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 139
+ERROR - 2019-01-10 06:59:01 --> Severity: Notice --> Undefined variable: financialyear C:\xampp\htdocs\ria\application\views\bankdebit.php 2
+ERROR - 2019-01-10 06:59:01 --> Severity: Warning --> Invalid argument supplied for foreach() C:\xampp\htdocs\ria\application\views\bankdebit.php 2
+ERROR - 2019-01-10 06:59:05 --> Severity: Notice --> Undefined variable: financialyear C:\xampp\htdocs\ria\application\views\bankdebit.php 2
+ERROR - 2019-01-10 06:59:05 --> Severity: Warning --> Invalid argument supplied for foreach() C:\xampp\htdocs\ria\application\views\bankdebit.php 2
+ERROR - 2019-01-10 06:59:05 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankdebit.php 177
+ERROR - 2019-01-10 06:59:05 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\ria\application\views\bankdebit.php 179
+ERROR - 2019-01-10 06:59:05 --> Severity: Notice --> Undefined property: stdClass::$IGRItemNo C:\xampp\htdocs\ria\application\views\bankdebit.php 193
+ERROR - 2019-01-10 06:59:05 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankdebit.php 177
+ERROR - 2019-01-10 06:59:05 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\ria\application\views\bankdebit.php 179
+ERROR - 2019-01-10 06:59:05 --> Severity: Notice --> Undefined property: stdClass::$IGRItemNo C:\xampp\htdocs\ria\application\views\bankdebit.php 193
+ERROR - 2019-01-10 06:59:06 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankdebit.php 177
+ERROR - 2019-01-10 06:59:06 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\ria\application\views\bankdebit.php 179
+ERROR - 2019-01-10 06:59:06 --> Severity: Notice --> Undefined property: stdClass::$IGRItemNo C:\xampp\htdocs\ria\application\views\bankdebit.php 193
+ERROR - 2019-01-10 06:59:06 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankdebit.php 177
+ERROR - 2019-01-10 06:59:06 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\ria\application\views\bankdebit.php 179
+ERROR - 2019-01-10 06:59:06 --> Severity: Notice --> Undefined property: stdClass::$IGRItemNo C:\xampp\htdocs\ria\application\views\bankdebit.php 193
+ERROR - 2019-01-10 06:59:06 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankdebit.php 177
+ERROR - 2019-01-10 06:59:06 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\ria\application\views\bankdebit.php 179
+ERROR - 2019-01-10 06:59:06 --> Severity: Notice --> Undefined property: stdClass::$IGRItemNo C:\xampp\htdocs\ria\application\views\bankdebit.php 193
+ERROR - 2019-01-10 06:59:06 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankdebit.php 177
+ERROR - 2019-01-10 06:59:06 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\ria\application\views\bankdebit.php 179
+ERROR - 2019-01-10 06:59:06 --> Severity: Notice --> Undefined property: stdClass::$IGRItemNo C:\xampp\htdocs\ria\application\views\bankdebit.php 193
+ERROR - 2019-01-10 06:59:06 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankdebit.php 177
+ERROR - 2019-01-10 06:59:06 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\ria\application\views\bankdebit.php 179
+ERROR - 2019-01-10 06:59:06 --> Severity: Notice --> Undefined property: stdClass::$IGRItemNo C:\xampp\htdocs\ria\application\views\bankdebit.php 193
+ERROR - 2019-01-10 06:59:06 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankdebit.php 177
+ERROR - 2019-01-10 06:59:06 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\ria\application\views\bankdebit.php 179
+ERROR - 2019-01-10 06:59:06 --> Severity: Notice --> Undefined property: stdClass::$IGRItemNo C:\xampp\htdocs\ria\application\views\bankdebit.php 193
+ERROR - 2019-01-10 06:59:06 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankdebit.php 177
+ERROR - 2019-01-10 06:59:06 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\ria\application\views\bankdebit.php 179
+ERROR - 2019-01-10 06:59:06 --> Severity: Notice --> Undefined property: stdClass::$IGRItemNo C:\xampp\htdocs\ria\application\views\bankdebit.php 193
+ERROR - 2019-01-10 06:59:06 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankdebit.php 177
+ERROR - 2019-01-10 06:59:07 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\ria\application\views\bankdebit.php 179
+ERROR - 2019-01-10 06:59:07 --> Severity: Notice --> Undefined property: stdClass::$IGRItemNo C:\xampp\htdocs\ria\application\views\bankdebit.php 193
+ERROR - 2019-01-10 06:59:07 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankdebit.php 177
+ERROR - 2019-01-10 06:59:07 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\ria\application\views\bankdebit.php 179
+ERROR - 2019-01-10 06:59:07 --> Severity: Notice --> Undefined property: stdClass::$IGRItemNo C:\xampp\htdocs\ria\application\views\bankdebit.php 193
+ERROR - 2019-01-10 06:59:07 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankdebit.php 177
+ERROR - 2019-01-10 06:59:07 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\ria\application\views\bankdebit.php 179
+ERROR - 2019-01-10 06:59:07 --> Severity: Notice --> Undefined property: stdClass::$IGRItemNo C:\xampp\htdocs\ria\application\views\bankdebit.php 193
+ERROR - 2019-01-10 06:59:07 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankdebit.php 177
+ERROR - 2019-01-10 06:59:07 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\ria\application\views\bankdebit.php 179
+ERROR - 2019-01-10 06:59:07 --> Severity: Notice --> Undefined property: stdClass::$IGRItemNo C:\xampp\htdocs\ria\application\views\bankdebit.php 193
+ERROR - 2019-01-10 06:59:07 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankdebit.php 177
+ERROR - 2019-01-10 06:59:07 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\ria\application\views\bankdebit.php 179
+ERROR - 2019-01-10 06:59:07 --> Severity: Notice --> Undefined property: stdClass::$IGRItemNo C:\xampp\htdocs\ria\application\views\bankdebit.php 193
+ERROR - 2019-01-10 06:59:07 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankdebit.php 177
+ERROR - 2019-01-10 06:59:07 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\ria\application\views\bankdebit.php 179
+ERROR - 2019-01-10 06:59:07 --> Severity: Notice --> Undefined property: stdClass::$IGRItemNo C:\xampp\htdocs\ria\application\views\bankdebit.php 193
+ERROR - 2019-01-10 06:59:07 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankdebit.php 177
+ERROR - 2019-01-10 06:59:07 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\ria\application\views\bankdebit.php 179
+ERROR - 2019-01-10 06:59:07 --> Severity: Notice --> Undefined property: stdClass::$IGRItemNo C:\xampp\htdocs\ria\application\views\bankdebit.php 193
+ERROR - 2019-01-10 06:59:39 --> Severity: Notice --> Undefined variable: balancetocleared C:\xampp\htdocs\ria\application\controllers\cashbook.php 1375
+ERROR - 2019-01-10 06:59:39 --> Severity: Notice --> Undefined variable: clearedblnce C:\xampp\htdocs\ria\application\controllers\cashbook.php 1384
+ERROR - 2019-01-10 06:59:39 --> Severity: Notice --> Undefined variable: balancetocleared C:\xampp\htdocs\ria\application\controllers\cashbook.php 1384
+ERROR - 2019-01-10 06:59:39 --> Severity: Notice --> Undefined variable: data C:\xampp\htdocs\ria\application\controllers\cashbook.php 1456
+ERROR - 2019-01-10 06:59:39 --> Severity: Notice --> Undefined variable: data C:\xampp\htdocs\ria\application\controllers\cashbook.php 1456
+ERROR - 2019-01-10 06:59:39 --> Severity: Notice --> Undefined variable: financialyear C:\xampp\htdocs\ria\application\views\bankstatement.php 2
+ERROR - 2019-01-10 06:59:39 --> Severity: Warning --> Invalid argument supplied for foreach() C:\xampp\htdocs\ria\application\views\bankstatement.php 2
+ERROR - 2019-01-10 06:59:39 --> Severity: Notice --> Undefined variable: financialyear C:\xampp\htdocs\ria\application\views\bankstatement.php 2
+ERROR - 2019-01-10 06:59:39 --> Severity: Notice --> Undefined variable: bankreport C:\xampp\htdocs\ria\application\views\bankstatement.php 8
+ERROR - 2019-01-10 06:59:39 --> Severity: Warning --> Invalid argument supplied for foreach() C:\xampp\htdocs\ria\application\views\bankstatement.php 2
+ERROR - 2019-01-10 06:59:39 --> Severity: Warning --> Invalid argument supplied for foreach() C:\xampp\htdocs\ria\application\views\bankstatement.php 8
+ERROR - 2019-01-10 06:59:39 --> Severity: Notice --> Undefined variable: bankreport C:\xampp\htdocs\ria\application\views\bankstatement.php 8
+ERROR - 2019-01-10 06:59:39 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 85
+ERROR - 2019-01-10 06:59:40 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 85
+ERROR - 2019-01-10 06:59:40 --> Severity: Warning --> Invalid argument supplied for foreach() C:\xampp\htdocs\ria\application\views\bankstatement.php 8
+ERROR - 2019-01-10 06:59:40 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 86
+ERROR - 2019-01-10 06:59:40 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 85
+ERROR - 2019-01-10 06:59:40 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 86
+ERROR - 2019-01-10 06:59:40 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 85
+ERROR - 2019-01-10 06:59:40 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 87
+ERROR - 2019-01-10 06:59:40 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 86
+ERROR - 2019-01-10 06:59:40 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 86
+ERROR - 2019-01-10 06:59:40 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 87
+ERROR - 2019-01-10 06:59:40 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 137
+ERROR - 2019-01-10 06:59:40 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 87
+ERROR - 2019-01-10 06:59:40 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 87
+ERROR - 2019-01-10 06:59:40 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 137
+ERROR - 2019-01-10 06:59:40 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 137
+ERROR - 2019-01-10 06:59:40 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 138
+ERROR - 2019-01-10 06:59:40 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 138
+ERROR - 2019-01-10 06:59:40 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 137
+ERROR - 2019-01-10 06:59:40 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 138
+ERROR - 2019-01-10 06:59:40 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 139
+ERROR - 2019-01-10 06:59:40 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 139
+ERROR - 2019-01-10 06:59:40 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 138
+ERROR - 2019-01-10 06:59:40 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 139
+ERROR - 2019-01-10 06:59:40 --> Severity: Notice --> Undefined variable: finyear C:\xampp\htdocs\ria\application\views\bankstatement.php 197
+ERROR - 2019-01-10 06:59:40 --> Severity: Warning --> Invalid argument supplied for foreach() C:\xampp\htdocs\ria\application\views\bankstatement.php 197
+ERROR - 2019-01-10 06:59:40 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 139
+ERROR - 2019-01-10 06:59:40 --> Severity: Notice --> Undefined variable: Bankname C:\xampp\htdocs\ria\application\views\bankstatement.php 235
+ERROR - 2019-01-10 06:59:40 --> Severity: Notice --> Undefined variable: finyear C:\xampp\htdocs\ria\application\views\bankstatement.php 197
+ERROR - 2019-01-10 06:59:40 --> Severity: Warning --> Invalid argument supplied for foreach() C:\xampp\htdocs\ria\application\views\bankstatement.php 197
+ERROR - 2019-01-10 06:59:40 --> Severity: Notice --> Undefined variable: Bankname C:\xampp\htdocs\ria\application\views\bankstatement.php 235
+ERROR - 2019-01-10 06:59:41 --> Severity: Notice --> Undefined variable: fdate C:\xampp\htdocs\ria\application\controllers\cashbook.php 1172
+ERROR - 2019-01-10 06:59:41 --> Severity: Notice --> Undefined variable: tdate C:\xampp\htdocs\ria\application\controllers\cashbook.php 1172
+ERROR - 2019-01-10 06:59:41 --> Severity: Notice --> Undefined variable: fa C:\xampp\htdocs\ria\application\controllers\cashbook.php 1172
+ERROR - 2019-01-10 06:59:41 --> Severity: Notice --> Undefined variable: aa C:\xampp\htdocs\ria\application\controllers\cashbook.php 1172
+ERROR - 2019-01-10 06:59:41 --> Severity: Notice --> Undefined variable: fdate C:\xampp\htdocs\ria\application\controllers\cashbook.php 1172
+ERROR - 2019-01-10 06:59:41 --> Severity: Notice --> Undefined variable: tdate C:\xampp\htdocs\ria\application\controllers\cashbook.php 1172
+ERROR - 2019-01-10 06:59:41 --> Severity: Notice --> Undefined variable: fa C:\xampp\htdocs\ria\application\controllers\cashbook.php 1172
+ERROR - 2019-01-10 06:59:41 --> Severity: Notice --> Undefined variable: aa C:\xampp\htdocs\ria\application\controllers\cashbook.php 1172
+ERROR - 2019-01-10 06:59:42 --> Severity: Notice --> Undefined variable: financialyear C:\xampp\htdocs\ria\application\views\bankstatement.php 2
+ERROR - 2019-01-10 06:59:42 --> Severity: Warning --> Invalid argument supplied for foreach() C:\xampp\htdocs\ria\application\views\bankstatement.php 2
+ERROR - 2019-01-10 06:59:42 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 85
+ERROR - 2019-01-10 06:59:42 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 85
+ERROR - 2019-01-10 06:59:42 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 86
+ERROR - 2019-01-10 06:59:42 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 86
+ERROR - 2019-01-10 06:59:42 --> Severity: Notice --> Undefined variable: financialyear C:\xampp\htdocs\ria\application\views\bankstatement.php 2
+ERROR - 2019-01-10 06:59:42 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 87
+ERROR - 2019-01-10 06:59:42 --> Severity: Warning --> Invalid argument supplied for foreach() C:\xampp\htdocs\ria\application\views\bankstatement.php 2
+ERROR - 2019-01-10 06:59:42 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 87
+ERROR - 2019-01-10 06:59:42 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 85
+ERROR - 2019-01-10 06:59:42 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 85
+ERROR - 2019-01-10 06:59:42 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 137
+ERROR - 2019-01-10 06:59:42 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 137
+ERROR - 2019-01-10 06:59:42 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 86
+ERROR - 2019-01-10 06:59:42 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 86
+ERROR - 2019-01-10 06:59:42 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 138
+ERROR - 2019-01-10 06:59:42 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 87
+ERROR - 2019-01-10 06:59:42 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 138
+ERROR - 2019-01-10 06:59:42 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 139
+ERROR - 2019-01-10 06:59:42 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 87
+ERROR - 2019-01-10 06:59:42 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 137
+ERROR - 2019-01-10 06:59:42 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 139
+ERROR - 2019-01-10 06:59:42 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 137
+ERROR - 2019-01-10 06:59:42 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 138
+ERROR - 2019-01-10 06:59:42 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 138
+ERROR - 2019-01-10 06:59:42 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 139
+ERROR - 2019-01-10 06:59:42 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 139
+ERROR - 2019-01-10 06:59:56 --> Severity: Notice --> Undefined variable: fdate C:\xampp\htdocs\ria\application\controllers\cashbook.php 1172
+ERROR - 2019-01-10 06:59:56 --> Severity: Notice --> Undefined variable: tdate C:\xampp\htdocs\ria\application\controllers\cashbook.php 1172
+ERROR - 2019-01-10 06:59:56 --> Severity: Notice --> Undefined variable: fa C:\xampp\htdocs\ria\application\controllers\cashbook.php 1172
+ERROR - 2019-01-10 06:59:56 --> Severity: Notice --> Undefined variable: aa C:\xampp\htdocs\ria\application\controllers\cashbook.php 1172
+ERROR - 2019-01-10 06:59:56 --> Severity: Notice --> Undefined variable: financialyear C:\xampp\htdocs\ria\application\views\bankstatement.php 2
+ERROR - 2019-01-10 06:59:56 --> Severity: Warning --> Invalid argument supplied for foreach() C:\xampp\htdocs\ria\application\views\bankstatement.php 2
+ERROR - 2019-01-10 06:59:56 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 85
+ERROR - 2019-01-10 06:59:56 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 85
+ERROR - 2019-01-10 06:59:56 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 86
+ERROR - 2019-01-10 06:59:56 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 86
+ERROR - 2019-01-10 06:59:56 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 87
+ERROR - 2019-01-10 06:59:56 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 87
+ERROR - 2019-01-10 06:59:56 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 137
+ERROR - 2019-01-10 06:59:56 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 137
+ERROR - 2019-01-10 06:59:56 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 138
+ERROR - 2019-01-10 06:59:56 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 138
+ERROR - 2019-01-10 06:59:56 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 139
+ERROR - 2019-01-10 06:59:56 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 139
+ERROR - 2019-01-10 07:00:04 --> Severity: Notice --> Undefined variable: financialyear C:\xampp\htdocs\ria\application\views\banksettlement.php 11
+ERROR - 2019-01-10 07:00:05 --> Severity: Warning --> Invalid argument supplied for foreach() C:\xampp\htdocs\ria\application\views\banksettlement.php 11
+ERROR - 2019-01-10 07:00:05 --> Severity: Notice --> Undefined variable: t C:\xampp\htdocs\ria\application\views\banksettlement.php 289
+ERROR - 2019-01-10 07:00:05 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\banksettlement.php 289
+ERROR - 2019-01-10 07:00:05 --> Severity: Notice --> Undefined variable: t C:\xampp\htdocs\ria\application\views\banksettlement.php 289
+ERROR - 2019-01-10 07:00:05 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\banksettlement.php 289
+ERROR - 2019-01-10 07:00:05 --> Severity: Notice --> Undefined variable: rel C:\xampp\htdocs\ria\application\views\banksettlement.php 290
+ERROR - 2019-01-10 07:00:05 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\banksettlement.php 290
+ERROR - 2019-01-10 07:00:05 --> Severity: Notice --> Undefined variable: record C:\xampp\htdocs\ria\application\views\banksettlement.php 345
+ERROR - 2019-01-10 07:00:05 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\banksettlement.php 345
+ERROR - 2019-01-10 07:00:05 --> Severity: Notice --> Undefined variable: t C:\xampp\htdocs\ria\application\views\banksettlement.php 289
+ERROR - 2019-01-10 07:00:05 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\banksettlement.php 289
+ERROR - 2019-01-10 07:00:05 --> Severity: Notice --> Undefined variable: t C:\xampp\htdocs\ria\application\views\banksettlement.php 289
+ERROR - 2019-01-10 07:00:05 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\banksettlement.php 289
+ERROR - 2019-01-10 07:00:05 --> Severity: Notice --> Undefined variable: rel C:\xampp\htdocs\ria\application\views\banksettlement.php 290
+ERROR - 2019-01-10 07:00:05 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\banksettlement.php 290
+ERROR - 2019-01-10 07:00:05 --> Severity: Notice --> Undefined variable: record C:\xampp\htdocs\ria\application\views\banksettlement.php 311
+ERROR - 2019-01-10 07:00:05 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\banksettlement.php 311
+ERROR - 2019-01-10 07:00:05 --> Severity: Notice --> Undefined variable: record C:\xampp\htdocs\ria\application\views\banksettlement.php 345
+ERROR - 2019-01-10 07:00:05 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\banksettlement.php 345
+ERROR - 2019-01-10 07:00:06 --> Severity: Notice --> Undefined variable: t C:\xampp\htdocs\ria\application\views\banksettlement.php 289
+ERROR - 2019-01-10 07:00:06 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\banksettlement.php 289
+ERROR - 2019-01-10 07:00:06 --> Severity: Notice --> Undefined variable: t C:\xampp\htdocs\ria\application\views\banksettlement.php 289
+ERROR - 2019-01-10 07:00:06 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\banksettlement.php 289
+ERROR - 2019-01-10 07:00:06 --> Severity: Notice --> Undefined variable: rel C:\xampp\htdocs\ria\application\views\banksettlement.php 290
+ERROR - 2019-01-10 07:00:06 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\banksettlement.php 290
+ERROR - 2019-01-10 07:00:06 --> Severity: Notice --> Undefined variable: record C:\xampp\htdocs\ria\application\views\banksettlement.php 345
+ERROR - 2019-01-10 07:00:06 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\banksettlement.php 345
+ERROR - 2019-01-10 07:00:06 --> Severity: Notice --> Undefined variable: t C:\xampp\htdocs\ria\application\views\banksettlement.php 289
+ERROR - 2019-01-10 07:00:06 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\banksettlement.php 289
+ERROR - 2019-01-10 07:00:06 --> Severity: Notice --> Undefined variable: t C:\xampp\htdocs\ria\application\views\banksettlement.php 289
+ERROR - 2019-01-10 07:00:06 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\banksettlement.php 289
+ERROR - 2019-01-10 07:00:06 --> Severity: Notice --> Undefined variable: rel C:\xampp\htdocs\ria\application\views\banksettlement.php 290
+ERROR - 2019-01-10 07:00:06 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\banksettlement.php 290
+ERROR - 2019-01-10 07:00:06 --> Severity: Notice --> Undefined variable: record C:\xampp\htdocs\ria\application\views\banksettlement.php 311
+ERROR - 2019-01-10 07:00:06 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\banksettlement.php 311
+ERROR - 2019-01-10 07:00:06 --> Severity: Notice --> Undefined variable: record C:\xampp\htdocs\ria\application\views\banksettlement.php 345
+ERROR - 2019-01-10 07:00:06 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\banksettlement.php 345
+ERROR - 2019-01-10 07:05:49 --> Severity: Notice --> Undefined variable: financialyear C:\xampp\htdocs\ria\application\views\banksettlement.php 11
+ERROR - 2019-01-10 07:05:49 --> Severity: Warning --> Invalid argument supplied for foreach() C:\xampp\htdocs\ria\application\views\banksettlement.php 11
+ERROR - 2019-01-10 07:05:49 --> Severity: Notice --> Undefined variable: t C:\xampp\htdocs\ria\application\views\banksettlement.php 289
+ERROR - 2019-01-10 07:05:50 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\banksettlement.php 289
+ERROR - 2019-01-10 07:05:50 --> Severity: Notice --> Undefined variable: t C:\xampp\htdocs\ria\application\views\banksettlement.php 289
+ERROR - 2019-01-10 07:05:50 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\banksettlement.php 289
+ERROR - 2019-01-10 07:05:50 --> Severity: Notice --> Undefined variable: rel C:\xampp\htdocs\ria\application\views\banksettlement.php 290
+ERROR - 2019-01-10 07:05:50 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\banksettlement.php 290
+ERROR - 2019-01-10 07:05:50 --> Severity: Notice --> Undefined variable: record C:\xampp\htdocs\ria\application\views\banksettlement.php 345
+ERROR - 2019-01-10 07:05:50 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\banksettlement.php 345
+ERROR - 2019-01-10 07:05:50 --> Severity: Notice --> Undefined variable: t C:\xampp\htdocs\ria\application\views\banksettlement.php 289
+ERROR - 2019-01-10 07:05:50 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\banksettlement.php 289
+ERROR - 2019-01-10 07:05:50 --> Severity: Notice --> Undefined variable: t C:\xampp\htdocs\ria\application\views\banksettlement.php 289
+ERROR - 2019-01-10 07:05:50 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\banksettlement.php 289
+ERROR - 2019-01-10 07:05:50 --> Severity: Notice --> Undefined variable: rel C:\xampp\htdocs\ria\application\views\banksettlement.php 290
+ERROR - 2019-01-10 07:05:50 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\banksettlement.php 290
+ERROR - 2019-01-10 07:05:50 --> Severity: Notice --> Undefined variable: record C:\xampp\htdocs\ria\application\views\banksettlement.php 311
+ERROR - 2019-01-10 07:05:50 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\banksettlement.php 311
+ERROR - 2019-01-10 07:05:50 --> Severity: Notice --> Undefined variable: record C:\xampp\htdocs\ria\application\views\banksettlement.php 345
+ERROR - 2019-01-10 07:05:50 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\banksettlement.php 345
+ERROR - 2019-01-10 07:05:50 --> Severity: Notice --> Undefined variable: t C:\xampp\htdocs\ria\application\views\banksettlement.php 289
+ERROR - 2019-01-10 07:05:50 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\banksettlement.php 289
+ERROR - 2019-01-10 07:05:50 --> Severity: Notice --> Undefined variable: t C:\xampp\htdocs\ria\application\views\banksettlement.php 289
+ERROR - 2019-01-10 07:05:50 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\banksettlement.php 289
+ERROR - 2019-01-10 07:05:50 --> Severity: Notice --> Undefined variable: rel C:\xampp\htdocs\ria\application\views\banksettlement.php 290
+ERROR - 2019-01-10 07:05:50 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\banksettlement.php 290
+ERROR - 2019-01-10 07:05:50 --> Severity: Notice --> Undefined variable: record C:\xampp\htdocs\ria\application\views\banksettlement.php 345
+ERROR - 2019-01-10 07:05:50 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\banksettlement.php 345
+ERROR - 2019-01-10 07:05:50 --> Severity: Notice --> Undefined variable: t C:\xampp\htdocs\ria\application\views\banksettlement.php 289
+ERROR - 2019-01-10 07:05:50 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\banksettlement.php 289
+ERROR - 2019-01-10 07:05:50 --> Severity: Notice --> Undefined variable: t C:\xampp\htdocs\ria\application\views\banksettlement.php 289
+ERROR - 2019-01-10 07:05:50 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\banksettlement.php 289
+ERROR - 2019-01-10 07:05:50 --> Severity: Notice --> Undefined variable: rel C:\xampp\htdocs\ria\application\views\banksettlement.php 290
+ERROR - 2019-01-10 07:05:50 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\banksettlement.php 290
+ERROR - 2019-01-10 07:05:51 --> Severity: Notice --> Undefined variable: record C:\xampp\htdocs\ria\application\views\banksettlement.php 311
+ERROR - 2019-01-10 07:05:51 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\banksettlement.php 311
+ERROR - 2019-01-10 07:05:51 --> Severity: Notice --> Undefined variable: record C:\xampp\htdocs\ria\application\views\banksettlement.php 345
+ERROR - 2019-01-10 07:05:51 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\banksettlement.php 345
+ERROR - 2019-01-10 07:08:37 --> Severity: Notice --> Undefined variable: financialyear C:\xampp\htdocs\ria\application\views\banksettlement.php 11
+ERROR - 2019-01-10 07:08:37 --> Severity: Warning --> Invalid argument supplied for foreach() C:\xampp\htdocs\ria\application\views\banksettlement.php 11
+ERROR - 2019-01-10 07:08:37 --> Severity: Notice --> Undefined variable: t C:\xampp\htdocs\ria\application\views\banksettlement.php 289
+ERROR - 2019-01-10 07:08:37 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\banksettlement.php 289
+ERROR - 2019-01-10 07:08:37 --> Severity: Notice --> Undefined variable: t C:\xampp\htdocs\ria\application\views\banksettlement.php 289
+ERROR - 2019-01-10 07:08:37 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\banksettlement.php 289
+ERROR - 2019-01-10 07:08:37 --> Severity: Notice --> Undefined variable: rel C:\xampp\htdocs\ria\application\views\banksettlement.php 290
+ERROR - 2019-01-10 07:08:37 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\banksettlement.php 290
+ERROR - 2019-01-10 07:08:37 --> Severity: Notice --> Undefined variable: record C:\xampp\htdocs\ria\application\views\banksettlement.php 345
+ERROR - 2019-01-10 07:08:37 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\banksettlement.php 345
+ERROR - 2019-01-10 07:08:37 --> Severity: Notice --> Undefined variable: financialyear C:\xampp\htdocs\ria\application\views\banksettlement.php 11
+ERROR - 2019-01-10 07:08:37 --> Severity: Notice --> Undefined variable: t C:\xampp\htdocs\ria\application\views\banksettlement.php 289
+ERROR - 2019-01-10 07:08:37 --> Severity: Warning --> Invalid argument supplied for foreach() C:\xampp\htdocs\ria\application\views\banksettlement.php 11
+ERROR - 2019-01-10 07:08:37 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\banksettlement.php 289
+ERROR - 2019-01-10 07:08:37 --> Severity: Notice --> Undefined variable: t C:\xampp\htdocs\ria\application\views\banksettlement.php 289
+ERROR - 2019-01-10 07:08:37 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\banksettlement.php 289
+ERROR - 2019-01-10 07:08:37 --> Severity: Notice --> Undefined variable: t C:\xampp\htdocs\ria\application\views\banksettlement.php 289
+ERROR - 2019-01-10 07:08:37 --> Severity: Notice --> Undefined variable: t C:\xampp\htdocs\ria\application\views\banksettlement.php 289
+ERROR - 2019-01-10 07:08:37 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\banksettlement.php 289
+ERROR - 2019-01-10 07:08:37 --> Severity: Notice --> Undefined variable: rel C:\xampp\htdocs\ria\application\views\banksettlement.php 290
+ERROR - 2019-01-10 07:08:37 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\banksettlement.php 289
+ERROR - 2019-01-10 07:08:38 --> Severity: Notice --> Undefined variable: rel C:\xampp\htdocs\ria\application\views\banksettlement.php 290
+ERROR - 2019-01-10 07:08:38 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\banksettlement.php 290
+ERROR - 2019-01-10 07:08:38 --> Severity: Notice --> Undefined variable: record C:\xampp\htdocs\ria\application\views\banksettlement.php 311
+ERROR - 2019-01-10 07:08:38 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\banksettlement.php 290
+ERROR - 2019-01-10 07:08:38 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\banksettlement.php 311
+ERROR - 2019-01-10 07:08:38 --> Severity: Notice --> Undefined variable: record C:\xampp\htdocs\ria\application\views\banksettlement.php 345
+ERROR - 2019-01-10 07:08:38 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\banksettlement.php 345
+ERROR - 2019-01-10 07:08:38 --> Severity: Notice --> Undefined variable: record C:\xampp\htdocs\ria\application\views\banksettlement.php 345
+ERROR - 2019-01-10 07:08:38 --> Severity: Notice --> Undefined variable: t C:\xampp\htdocs\ria\application\views\banksettlement.php 289
+ERROR - 2019-01-10 07:08:38 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\banksettlement.php 345
+ERROR - 2019-01-10 07:08:38 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\banksettlement.php 289
+ERROR - 2019-01-10 07:08:38 --> Severity: Notice --> Undefined variable: t C:\xampp\htdocs\ria\application\views\banksettlement.php 289
+ERROR - 2019-01-10 07:08:38 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\banksettlement.php 289
+ERROR - 2019-01-10 07:08:38 --> Severity: Notice --> Undefined variable: t C:\xampp\htdocs\ria\application\views\banksettlement.php 289
+ERROR - 2019-01-10 07:08:38 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\banksettlement.php 289
+ERROR - 2019-01-10 07:08:38 --> Severity: Notice --> Undefined variable: t C:\xampp\htdocs\ria\application\views\banksettlement.php 289
+ERROR - 2019-01-10 07:08:38 --> Severity: Notice --> Undefined variable: rel C:\xampp\htdocs\ria\application\views\banksettlement.php 290
+ERROR - 2019-01-10 07:08:38 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\banksettlement.php 289
+ERROR - 2019-01-10 07:08:38 --> Severity: Notice --> Undefined variable: rel C:\xampp\htdocs\ria\application\views\banksettlement.php 290
+ERROR - 2019-01-10 07:08:38 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\banksettlement.php 290
+ERROR - 2019-01-10 07:08:38 --> Severity: Notice --> Undefined variable: record C:\xampp\htdocs\ria\application\views\banksettlement.php 311
+ERROR - 2019-01-10 07:08:38 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\banksettlement.php 290
+ERROR - 2019-01-10 07:08:38 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\banksettlement.php 311
+ERROR - 2019-01-10 07:08:38 --> Severity: Notice --> Undefined variable: record C:\xampp\htdocs\ria\application\views\banksettlement.php 345
+ERROR - 2019-01-10 07:08:38 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\banksettlement.php 345
+ERROR - 2019-01-10 07:08:38 --> Severity: Notice --> Undefined variable: record C:\xampp\htdocs\ria\application\views\banksettlement.php 345
+ERROR - 2019-01-10 07:08:38 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\banksettlement.php 345
+ERROR - 2019-01-10 07:08:38 --> Severity: Notice --> Undefined variable: t C:\xampp\htdocs\ria\application\views\banksettlement.php 289
+ERROR - 2019-01-10 07:08:38 --> Severity: Notice --> Undefined variable: t C:\xampp\htdocs\ria\application\views\banksettlement.php 289
+ERROR - 2019-01-10 07:08:38 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\banksettlement.php 289
+ERROR - 2019-01-10 07:08:38 --> Severity: Notice --> Undefined variable: t C:\xampp\htdocs\ria\application\views\banksettlement.php 289
+ERROR - 2019-01-10 07:08:38 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\banksettlement.php 289
+ERROR - 2019-01-10 07:08:38 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\banksettlement.php 289
+ERROR - 2019-01-10 07:08:38 --> Severity: Notice --> Undefined variable: t C:\xampp\htdocs\ria\application\views\banksettlement.php 289
+ERROR - 2019-01-10 07:08:38 --> Severity: Notice --> Undefined variable: rel C:\xampp\htdocs\ria\application\views\banksettlement.php 290
+ERROR - 2019-01-10 07:08:38 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\banksettlement.php 289
+ERROR - 2019-01-10 07:08:38 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\banksettlement.php 290
+ERROR - 2019-01-10 07:08:38 --> Severity: Notice --> Undefined variable: rel C:\xampp\htdocs\ria\application\views\banksettlement.php 290
+ERROR - 2019-01-10 07:08:38 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\banksettlement.php 290
+ERROR - 2019-01-10 07:08:38 --> Severity: Notice --> Undefined variable: record C:\xampp\htdocs\ria\application\views\banksettlement.php 311
+ERROR - 2019-01-10 07:08:38 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\banksettlement.php 311
+ERROR - 2019-01-10 07:08:38 --> Severity: Notice --> Undefined variable: record C:\xampp\htdocs\ria\application\views\banksettlement.php 345
+ERROR - 2019-01-10 07:08:38 --> Severity: Notice --> Undefined variable: record C:\xampp\htdocs\ria\application\views\banksettlement.php 345
+ERROR - 2019-01-10 07:08:38 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\banksettlement.php 345
+ERROR - 2019-01-10 07:08:38 --> Severity: Notice --> Undefined variable: t C:\xampp\htdocs\ria\application\views\banksettlement.php 289
+ERROR - 2019-01-10 07:08:38 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\banksettlement.php 345
+ERROR - 2019-01-10 07:08:39 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\banksettlement.php 289
+ERROR - 2019-01-10 07:08:39 --> Severity: Notice --> Undefined variable: t C:\xampp\htdocs\ria\application\views\banksettlement.php 289
+ERROR - 2019-01-10 07:08:39 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\banksettlement.php 289
+ERROR - 2019-01-10 07:08:39 --> Severity: Notice --> Undefined variable: rel C:\xampp\htdocs\ria\application\views\banksettlement.php 290
+ERROR - 2019-01-10 07:08:39 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\banksettlement.php 290
+ERROR - 2019-01-10 07:08:39 --> Severity: Notice --> Undefined variable: record C:\xampp\htdocs\ria\application\views\banksettlement.php 311
+ERROR - 2019-01-10 07:08:39 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\banksettlement.php 311
+ERROR - 2019-01-10 07:08:39 --> Severity: Notice --> Undefined variable: record C:\xampp\htdocs\ria\application\views\banksettlement.php 345
+ERROR - 2019-01-10 07:08:39 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\banksettlement.php 345
+ERROR - 2019-01-10 07:09:53 --> Severity: Notice --> Undefined variable: financialyear C:\xampp\htdocs\ria\application\views\banksettlement.php 11
+ERROR - 2019-01-10 07:09:53 --> Severity: Warning --> Invalid argument supplied for foreach() C:\xampp\htdocs\ria\application\views\banksettlement.php 11
+ERROR - 2019-01-10 07:09:53 --> Severity: Notice --> Undefined variable: t C:\xampp\htdocs\ria\application\views\banksettlement.php 289
+ERROR - 2019-01-10 07:09:53 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\banksettlement.php 289
+ERROR - 2019-01-10 07:09:53 --> Severity: Notice --> Undefined variable: t C:\xampp\htdocs\ria\application\views\banksettlement.php 289
+ERROR - 2019-01-10 07:09:53 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\banksettlement.php 289
+ERROR - 2019-01-10 07:09:54 --> Severity: Notice --> Undefined variable: rel C:\xampp\htdocs\ria\application\views\banksettlement.php 290
+ERROR - 2019-01-10 07:09:54 --> Severity: Notice --> Undefined variable: financialyear C:\xampp\htdocs\ria\application\views\banksettlement.php 11
+ERROR - 2019-01-10 07:09:54 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\banksettlement.php 290
+ERROR - 2019-01-10 07:09:54 --> Severity: Notice --> Undefined variable: record C:\xampp\htdocs\ria\application\views\banksettlement.php 345
+ERROR - 2019-01-10 07:09:54 --> Severity: Warning --> Invalid argument supplied for foreach() C:\xampp\htdocs\ria\application\views\banksettlement.php 11
+ERROR - 2019-01-10 07:09:54 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\banksettlement.php 345
+ERROR - 2019-01-10 07:09:54 --> Severity: Notice --> Undefined variable: t C:\xampp\htdocs\ria\application\views\banksettlement.php 289
+ERROR - 2019-01-10 07:09:54 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\banksettlement.php 289
+ERROR - 2019-01-10 07:09:55 --> Severity: Notice --> Undefined variable: t C:\xampp\htdocs\ria\application\views\banksettlement.php 289
+ERROR - 2019-01-10 07:09:55 --> Severity: Notice --> Undefined variable: financialyear C:\xampp\htdocs\ria\application\views\banksettlement.php 11
+ERROR - 2019-01-10 07:09:55 --> Severity: Notice --> Undefined variable: financialyear C:\xampp\htdocs\ria\application\views\banksettlement.php 11
+ERROR - 2019-01-10 07:09:55 --> Severity: Notice --> Undefined variable: financialyear C:\xampp\htdocs\ria\application\views\banksettlement.php 11
+ERROR - 2019-01-10 07:09:55 --> Severity: Notice --> Undefined variable: financialyear C:\xampp\htdocs\ria\application\views\banksettlement.php 11
+ERROR - 2019-01-10 07:09:55 --> Severity: Notice --> Undefined variable: t C:\xampp\htdocs\ria\application\views\banksettlement.php 289
+ERROR - 2019-01-10 07:09:55 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\banksettlement.php 289
+ERROR - 2019-01-10 07:09:55 --> Severity: Warning --> Invalid argument supplied for foreach() C:\xampp\htdocs\ria\application\views\banksettlement.php 11
+ERROR - 2019-01-10 07:09:55 --> Severity: Notice --> Undefined variable: t C:\xampp\htdocs\ria\application\views\banksettlement.php 289
+ERROR - 2019-01-10 07:09:55 --> Severity: Warning --> Invalid argument supplied for foreach() C:\xampp\htdocs\ria\application\views\banksettlement.php 11
+ERROR - 2019-01-10 07:09:56 --> Severity: Warning --> Invalid argument supplied for foreach() C:\xampp\htdocs\ria\application\views\banksettlement.php 11
+ERROR - 2019-01-10 07:09:56 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\banksettlement.php 289
+ERROR - 2019-01-10 07:09:56 --> Severity: Notice --> Undefined variable: rel C:\xampp\htdocs\ria\application\views\banksettlement.php 290
+ERROR - 2019-01-10 07:09:56 --> Severity: Notice --> Undefined variable: t C:\xampp\htdocs\ria\application\views\banksettlement.php 289
+ERROR - 2019-01-10 07:09:56 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\banksettlement.php 289
+ERROR - 2019-01-10 07:09:56 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\banksettlement.php 290
+ERROR - 2019-01-10 07:09:56 --> Severity: Notice --> Undefined variable: t C:\xampp\htdocs\ria\application\views\banksettlement.php 289
+ERROR - 2019-01-10 07:09:56 --> Severity: Notice --> Undefined variable: t C:\xampp\htdocs\ria\application\views\banksettlement.php 289
+ERROR - 2019-01-10 07:09:56 --> Severity: Warning --> Invalid argument supplied for foreach() C:\xampp\htdocs\ria\application\views\banksettlement.php 11
+ERROR - 2019-01-10 07:09:56 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\banksettlement.php 289
+ERROR - 2019-01-10 07:09:56 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\banksettlement.php 289
+ERROR - 2019-01-10 07:09:56 --> Severity: Notice --> Undefined variable: record C:\xampp\htdocs\ria\application\views\banksettlement.php 311
+ERROR - 2019-01-10 07:09:56 --> Severity: Notice --> Undefined variable: t C:\xampp\htdocs\ria\application\views\banksettlement.php 289
+ERROR - 2019-01-10 07:09:56 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\banksettlement.php 289
+ERROR - 2019-01-10 07:09:56 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\banksettlement.php 311
+ERROR - 2019-01-10 07:09:56 --> Severity: Notice --> Undefined variable: rel C:\xampp\htdocs\ria\application\views\banksettlement.php 290
+ERROR - 2019-01-10 07:09:56 --> Severity: Notice --> Undefined variable: t C:\xampp\htdocs\ria\application\views\banksettlement.php 289
+ERROR - 2019-01-10 07:09:56 --> Severity: Notice --> Undefined variable: t C:\xampp\htdocs\ria\application\views\banksettlement.php 289
+ERROR - 2019-01-10 07:09:56 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\banksettlement.php 289
+ERROR - 2019-01-10 07:09:56 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\banksettlement.php 290
+ERROR - 2019-01-10 07:09:56 --> Severity: Notice --> Undefined variable: t C:\xampp\htdocs\ria\application\views\banksettlement.php 289
+ERROR - 2019-01-10 07:09:56 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\banksettlement.php 289
+ERROR - 2019-01-10 07:09:56 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\banksettlement.php 289
+ERROR - 2019-01-10 07:09:56 --> Severity: Notice --> Undefined variable: t C:\xampp\htdocs\ria\application\views\banksettlement.php 289
+ERROR - 2019-01-10 07:09:56 --> Severity: Notice --> Undefined variable: record C:\xampp\htdocs\ria\application\views\banksettlement.php 345
+ERROR - 2019-01-10 07:09:56 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\banksettlement.php 289
+ERROR - 2019-01-10 07:09:56 --> Severity: Notice --> Undefined variable: record C:\xampp\htdocs\ria\application\views\banksettlement.php 345
+ERROR - 2019-01-10 07:09:56 --> Severity: Notice --> Undefined variable: rel C:\xampp\htdocs\ria\application\views\banksettlement.php 290
+ERROR - 2019-01-10 07:09:56 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\banksettlement.php 289
+ERROR - 2019-01-10 07:09:56 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\banksettlement.php 345
+ERROR - 2019-01-10 07:09:56 --> Severity: Notice --> Undefined variable: rel C:\xampp\htdocs\ria\application\views\banksettlement.php 290
+ERROR - 2019-01-10 07:09:56 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\banksettlement.php 290
+ERROR - 2019-01-10 07:09:56 --> Severity: Notice --> Undefined variable: rel C:\xampp\htdocs\ria\application\views\banksettlement.php 290
+ERROR - 2019-01-10 07:09:56 --> Severity: Notice --> Undefined variable: rel C:\xampp\htdocs\ria\application\views\banksettlement.php 290
+ERROR - 2019-01-10 07:09:56 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\banksettlement.php 345
+ERROR - 2019-01-10 07:09:56 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\banksettlement.php 290
+ERROR - 2019-01-10 07:09:56 --> Severity: Notice --> Undefined variable: t C:\xampp\htdocs\ria\application\views\banksettlement.php 289
+ERROR - 2019-01-10 07:09:56 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\banksettlement.php 290
+ERROR - 2019-01-10 07:09:56 --> Severity: Notice --> Undefined variable: t C:\xampp\htdocs\ria\application\views\banksettlement.php 289
+ERROR - 2019-01-10 07:09:56 --> Severity: Notice --> Undefined variable: record C:\xampp\htdocs\ria\application\views\banksettlement.php 345
+ERROR - 2019-01-10 07:09:56 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\banksettlement.php 289
+ERROR - 2019-01-10 07:09:56 --> Severity: Notice --> Undefined variable: record C:\xampp\htdocs\ria\application\views\banksettlement.php 345
+ERROR - 2019-01-10 07:09:56 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\banksettlement.php 290
+ERROR - 2019-01-10 07:09:56 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\banksettlement.php 289
+ERROR - 2019-01-10 07:09:56 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\banksettlement.php 345
+ERROR - 2019-01-10 07:09:56 --> Severity: Notice --> Undefined variable: t C:\xampp\htdocs\ria\application\views\banksettlement.php 289
+ERROR - 2019-01-10 07:09:56 --> Severity: Notice --> Undefined variable: record C:\xampp\htdocs\ria\application\views\banksettlement.php 345
+ERROR - 2019-01-10 07:09:56 --> Severity: Notice --> Undefined variable: t C:\xampp\htdocs\ria\application\views\banksettlement.php 289
+ERROR - 2019-01-10 07:09:56 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\banksettlement.php 345
+ERROR - 2019-01-10 07:09:56 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\banksettlement.php 289
+ERROR - 2019-01-10 07:09:56 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\banksettlement.php 345
+ERROR - 2019-01-10 07:09:56 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\banksettlement.php 289
+ERROR - 2019-01-10 07:09:56 --> Severity: Notice --> Undefined variable: t C:\xampp\htdocs\ria\application\views\banksettlement.php 289
+ERROR - 2019-01-10 07:09:56 --> Severity: Notice --> Undefined variable: t C:\xampp\htdocs\ria\application\views\banksettlement.php 289
+ERROR - 2019-01-10 07:09:56 --> Severity: Notice --> Undefined variable: t C:\xampp\htdocs\ria\application\views\banksettlement.php 289
+ERROR - 2019-01-10 07:09:56 --> Severity: Notice --> Undefined variable: record C:\xampp\htdocs\ria\application\views\banksettlement.php 345
+ERROR - 2019-01-10 07:09:56 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\banksettlement.php 345
+ERROR - 2019-01-10 07:09:56 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\banksettlement.php 289
+ERROR - 2019-01-10 07:09:56 --> Severity: Notice --> Undefined variable: rel C:\xampp\htdocs\ria\application\views\banksettlement.php 290
+ERROR - 2019-01-10 07:09:56 --> Severity: Notice --> Undefined variable: t C:\xampp\htdocs\ria\application\views\banksettlement.php 289
+ERROR - 2019-01-10 07:09:56 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\banksettlement.php 289
+ERROR - 2019-01-10 07:09:56 --> Severity: Notice --> Undefined variable: financialyear C:\xampp\htdocs\ria\application\views\banksettlement.php 11
+ERROR - 2019-01-10 07:09:56 --> Severity: Notice --> Undefined variable: rel C:\xampp\htdocs\ria\application\views\banksettlement.php 290
+ERROR - 2019-01-10 07:09:56 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\banksettlement.php 289
+ERROR - 2019-01-10 07:09:56 --> Severity: Notice --> Undefined variable: t C:\xampp\htdocs\ria\application\views\banksettlement.php 289
+ERROR - 2019-01-10 07:09:56 --> Severity: Warning --> Invalid argument supplied for foreach() C:\xampp\htdocs\ria\application\views\banksettlement.php 11
+ERROR - 2019-01-10 07:09:56 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\banksettlement.php 289
+ERROR - 2019-01-10 07:09:56 --> Severity: Notice --> Undefined variable: t C:\xampp\htdocs\ria\application\views\banksettlement.php 289
+ERROR - 2019-01-10 07:09:56 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\banksettlement.php 290
+ERROR - 2019-01-10 07:09:56 --> Severity: Notice --> Undefined variable: rel C:\xampp\htdocs\ria\application\views\banksettlement.php 290
+ERROR - 2019-01-10 07:09:56 --> Severity: Notice --> Undefined variable: t C:\xampp\htdocs\ria\application\views\banksettlement.php 289
+ERROR - 2019-01-10 07:09:56 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\banksettlement.php 289
+ERROR - 2019-01-10 07:09:56 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\banksettlement.php 290
+ERROR - 2019-01-10 07:09:56 --> Severity: Notice --> Undefined variable: record C:\xampp\htdocs\ria\application\views\banksettlement.php 311
+ERROR - 2019-01-10 07:09:56 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\banksettlement.php 290
+ERROR - 2019-01-10 07:09:56 --> Severity: Notice --> Undefined variable: t C:\xampp\htdocs\ria\application\views\banksettlement.php 289
+ERROR - 2019-01-10 07:09:56 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\banksettlement.php 311
+ERROR - 2019-01-10 07:09:56 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\banksettlement.php 289
+ERROR - 2019-01-10 07:09:56 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\banksettlement.php 289
+ERROR - 2019-01-10 07:09:56 --> Severity: Notice --> Undefined variable: t C:\xampp\htdocs\ria\application\views\banksettlement.php 289
+ERROR - 2019-01-10 07:09:56 --> Severity: Notice --> Undefined variable: record C:\xampp\htdocs\ria\application\views\banksettlement.php 345
+ERROR - 2019-01-10 07:09:56 --> Severity: Notice --> Undefined variable: t C:\xampp\htdocs\ria\application\views\banksettlement.php 289
+ERROR - 2019-01-10 07:09:56 --> Severity: Notice --> Undefined variable: record C:\xampp\htdocs\ria\application\views\banksettlement.php 311
+ERROR - 2019-01-10 07:09:56 --> Severity: Notice --> Undefined variable: record C:\xampp\htdocs\ria\application\views\banksettlement.php 345
+ERROR - 2019-01-10 07:09:56 --> Severity: Notice --> Undefined variable: rel C:\xampp\htdocs\ria\application\views\banksettlement.php 290
+ERROR - 2019-01-10 07:09:56 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\banksettlement.php 311
+ERROR - 2019-01-10 07:09:56 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\banksettlement.php 345
+ERROR - 2019-01-10 07:09:56 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\banksettlement.php 289
+ERROR - 2019-01-10 07:09:56 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\banksettlement.php 289
+ERROR - 2019-01-10 07:09:56 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\banksettlement.php 290
+ERROR - 2019-01-10 07:09:56 --> Severity: Notice --> Undefined variable: financialyear C:\xampp\htdocs\ria\application\views\banksettlement.php 11
+ERROR - 2019-01-10 07:09:56 --> Severity: Notice --> Undefined variable: financialyear C:\xampp\htdocs\ria\application\views\banksettlement.php 11
+ERROR - 2019-01-10 07:09:56 --> Severity: Notice --> Undefined variable: record C:\xampp\htdocs\ria\application\views\banksettlement.php 311
+ERROR - 2019-01-10 07:09:56 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\banksettlement.php 289
+ERROR - 2019-01-10 07:09:56 --> Severity: Notice --> Undefined variable: rel C:\xampp\htdocs\ria\application\views\banksettlement.php 290
+ERROR - 2019-01-10 07:09:56 --> Severity: Warning --> Invalid argument supplied for foreach() C:\xampp\htdocs\ria\application\views\banksettlement.php 11
+ERROR - 2019-01-10 07:09:56 --> Severity: Notice --> Undefined variable: t C:\xampp\htdocs\ria\application\views\banksettlement.php 289
+ERROR - 2019-01-10 07:09:56 --> Severity: Notice --> Undefined variable: record C:\xampp\htdocs\ria\application\views\banksettlement.php 345
+ERROR - 2019-01-10 07:09:56 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\banksettlement.php 345
+ERROR - 2019-01-10 07:09:56 --> Severity: Notice --> Undefined variable: rel C:\xampp\htdocs\ria\application\views\banksettlement.php 290
+ERROR - 2019-01-10 07:09:56 --> Severity: Warning --> Invalid argument supplied for foreach() C:\xampp\htdocs\ria\application\views\banksettlement.php 11
+ERROR - 2019-01-10 07:09:56 --> Severity: Notice --> Undefined variable: rel C:\xampp\htdocs\ria\application\views\banksettlement.php 290
+ERROR - 2019-01-10 07:09:56 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\banksettlement.php 289
+ERROR - 2019-01-10 07:09:57 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\banksettlement.php 311
+ERROR - 2019-01-10 07:09:57 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\banksettlement.php 290
+ERROR - 2019-01-10 07:09:57 --> Severity: Notice --> Undefined variable: t C:\xampp\htdocs\ria\application\views\banksettlement.php 289
+ERROR - 2019-01-10 07:09:57 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\banksettlement.php 290
+ERROR - 2019-01-10 07:09:57 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\banksettlement.php 345
+ERROR - 2019-01-10 07:09:57 --> Severity: Notice --> Undefined variable: t C:\xampp\htdocs\ria\application\views\banksettlement.php 289
+ERROR - 2019-01-10 07:09:57 --> Severity: Notice --> Undefined variable: record C:\xampp\htdocs\ria\application\views\banksettlement.php 311
+ERROR - 2019-01-10 07:09:57 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\banksettlement.php 289
+ERROR - 2019-01-10 07:09:57 --> Severity: Notice --> Undefined variable: t C:\xampp\htdocs\ria\application\views\banksettlement.php 289
+ERROR - 2019-01-10 07:09:57 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\banksettlement.php 289
+ERROR - 2019-01-10 07:09:57 --> Severity: Notice --> Undefined variable: t C:\xampp\htdocs\ria\application\views\banksettlement.php 289
+ERROR - 2019-01-10 07:09:57 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\banksettlement.php 290
+ERROR - 2019-01-10 07:09:57 --> Severity: Notice --> Undefined variable: t C:\xampp\htdocs\ria\application\views\banksettlement.php 289
+ERROR - 2019-01-10 07:09:57 --> Severity: Notice --> Undefined variable: record C:\xampp\htdocs\ria\application\views\banksettlement.php 345
+ERROR - 2019-01-10 07:09:57 --> Severity: Notice --> Undefined variable: t C:\xampp\htdocs\ria\application\views\banksettlement.php 289
+ERROR - 2019-01-10 07:09:57 --> Severity: Notice --> Undefined variable: t C:\xampp\htdocs\ria\application\views\banksettlement.php 289
+ERROR - 2019-01-10 07:09:57 --> Severity: Notice --> Undefined variable: record C:\xampp\htdocs\ria\application\views\banksettlement.php 311
+ERROR - 2019-01-10 07:09:57 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\banksettlement.php 289
+ERROR - 2019-01-10 07:09:57 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\banksettlement.php 289
+ERROR - 2019-01-10 07:09:57 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\banksettlement.php 311
+ERROR - 2019-01-10 07:09:57 --> Severity: Notice --> Undefined variable: record C:\xampp\htdocs\ria\application\views\banksettlement.php 345
+ERROR - 2019-01-10 07:09:57 --> Severity: Notice --> Undefined variable: rel C:\xampp\htdocs\ria\application\views\banksettlement.php 290
+ERROR - 2019-01-10 07:09:57 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\banksettlement.php 311
+ERROR - 2019-01-10 07:09:57 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\banksettlement.php 289
+ERROR - 2019-01-10 07:09:57 --> Severity: Notice --> Undefined variable: rel C:\xampp\htdocs\ria\application\views\banksettlement.php 290
+ERROR - 2019-01-10 07:09:57 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\banksettlement.php 289
+ERROR - 2019-01-10 07:09:57 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\banksettlement.php 345
+ERROR - 2019-01-10 07:09:57 --> Severity: Notice --> Undefined variable: record C:\xampp\htdocs\ria\application\views\banksettlement.php 345
+ERROR - 2019-01-10 07:09:57 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\banksettlement.php 289
+ERROR - 2019-01-10 07:09:57 --> Severity: Notice --> Undefined variable: t C:\xampp\htdocs\ria\application\views\banksettlement.php 289
+ERROR - 2019-01-10 07:09:57 --> Severity: Notice --> Undefined variable: rel C:\xampp\htdocs\ria\application\views\banksettlement.php 290
+ERROR - 2019-01-10 07:09:57 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\banksettlement.php 345
+ERROR - 2019-01-10 07:09:57 --> Severity: Notice --> Undefined variable: record C:\xampp\htdocs\ria\application\views\banksettlement.php 345
+ERROR - 2019-01-10 07:09:57 --> Severity: Notice --> Undefined variable: financialyear C:\xampp\htdocs\ria\application\views\banksettlement.php 11
+ERROR - 2019-01-10 07:09:57 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\banksettlement.php 290
+ERROR - 2019-01-10 07:09:57 --> Severity: Notice --> Undefined variable: financialyear C:\xampp\htdocs\ria\application\views\banksettlement.php 11
+ERROR - 2019-01-10 07:09:57 --> Severity: Notice --> Undefined variable: t C:\xampp\htdocs\ria\application\views\banksettlement.php 289
+ERROR - 2019-01-10 07:09:57 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\banksettlement.php 290
+ERROR - 2019-01-10 07:09:57 --> Severity: Notice --> Undefined variable: t C:\xampp\htdocs\ria\application\views\banksettlement.php 289
+ERROR - 2019-01-10 07:09:57 --> Severity: Notice --> Undefined variable: financialyear C:\xampp\htdocs\ria\application\views\banksettlement.php 11
+ERROR - 2019-01-10 07:09:57 --> Severity: Notice --> Undefined variable: financialyear C:\xampp\htdocs\ria\application\views\banksettlement.php 11
+ERROR - 2019-01-10 07:09:57 --> Severity: Warning --> Invalid argument supplied for foreach() C:\xampp\htdocs\ria\application\views\banksettlement.php 11
+ERROR - 2019-01-10 07:09:57 --> Severity: Notice --> Undefined variable: record C:\xampp\htdocs\ria\application\views\banksettlement.php 345
+ERROR - 2019-01-10 07:09:57 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\banksettlement.php 345
+ERROR - 2019-01-10 07:09:57 --> Severity: Notice --> Undefined variable: t C:\xampp\htdocs\ria\application\views\banksettlement.php 289
+ERROR - 2019-01-10 07:09:57 --> Severity: Warning --> Invalid argument supplied for foreach() C:\xampp\htdocs\ria\application\views\banksettlement.php 11
+ERROR - 2019-01-10 07:09:57 --> Severity: Warning --> Invalid argument supplied for foreach() C:\xampp\htdocs\ria\application\views\banksettlement.php 11
+ERROR - 2019-01-10 07:09:57 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\banksettlement.php 290
+ERROR - 2019-01-10 07:09:57 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\banksettlement.php 289
+ERROR - 2019-01-10 07:09:57 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\banksettlement.php 345
+ERROR - 2019-01-10 07:09:57 --> Severity: Notice --> Undefined variable: t C:\xampp\htdocs\ria\application\views\banksettlement.php 289
+ERROR - 2019-01-10 07:09:57 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\banksettlement.php 345
+ERROR - 2019-01-10 07:09:57 --> Severity: Warning --> Invalid argument supplied for foreach() C:\xampp\htdocs\ria\application\views\banksettlement.php 11
+ERROR - 2019-01-10 07:09:57 --> Severity: Notice --> Undefined variable: record C:\xampp\htdocs\ria\application\views\banksettlement.php 345
+ERROR - 2019-01-10 07:09:57 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\banksettlement.php 289
+ERROR - 2019-01-10 07:09:57 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\banksettlement.php 289
+ERROR - 2019-01-10 07:09:57 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\banksettlement.php 345
+ERROR - 2019-01-10 07:09:57 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\banksettlement.php 289
+ERROR - 2019-01-10 07:09:57 --> Severity: Notice --> Undefined variable: rel C:\xampp\htdocs\ria\application\views\banksettlement.php 290
+ERROR - 2019-01-10 07:09:57 --> Severity: Notice --> Undefined variable: t C:\xampp\htdocs\ria\application\views\banksettlement.php 289
+ERROR - 2019-01-10 07:09:57 --> Severity: Notice --> Undefined variable: t C:\xampp\htdocs\ria\application\views\banksettlement.php 289
+ERROR - 2019-01-10 07:09:57 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\banksettlement.php 289
+ERROR - 2019-01-10 07:09:57 --> Severity: Notice --> Undefined variable: t C:\xampp\htdocs\ria\application\views\banksettlement.php 289
+ERROR - 2019-01-10 07:09:57 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\banksettlement.php 289
+ERROR - 2019-01-10 07:09:57 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\banksettlement.php 289
+ERROR - 2019-01-10 07:09:57 --> Severity: Notice --> Undefined variable: t C:\xampp\htdocs\ria\application\views\banksettlement.php 289
+ERROR - 2019-01-10 07:09:57 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\banksettlement.php 290
+ERROR - 2019-01-10 07:09:57 --> Severity: Notice --> Undefined variable: t C:\xampp\htdocs\ria\application\views\banksettlement.php 289
+ERROR - 2019-01-10 07:09:57 --> Severity: Notice --> Undefined variable: rel C:\xampp\htdocs\ria\application\views\banksettlement.php 290
+ERROR - 2019-01-10 07:09:57 --> Severity: Notice --> Undefined variable: record C:\xampp\htdocs\ria\application\views\banksettlement.php 311
+ERROR - 2019-01-10 07:09:57 --> Severity: Notice --> Undefined variable: t C:\xampp\htdocs\ria\application\views\banksettlement.php 289
+ERROR - 2019-01-10 07:09:57 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\banksettlement.php 289
+ERROR - 2019-01-10 07:09:57 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\banksettlement.php 311
+ERROR - 2019-01-10 07:09:57 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\banksettlement.php 289
+ERROR - 2019-01-10 07:09:57 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\banksettlement.php 290
+ERROR - 2019-01-10 07:09:57 --> Severity: Notice --> Undefined variable: t C:\xampp\htdocs\ria\application\views\banksettlement.php 289
+ERROR - 2019-01-10 07:09:57 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\banksettlement.php 289
+ERROR - 2019-01-10 07:09:57 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\banksettlement.php 289
+ERROR - 2019-01-10 07:09:57 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\banksettlement.php 289
+ERROR - 2019-01-10 07:09:57 --> Severity: Notice --> Undefined variable: record C:\xampp\htdocs\ria\application\views\banksettlement.php 345
+ERROR - 2019-01-10 07:09:57 --> Severity: Notice --> Undefined variable: rel C:\xampp\htdocs\ria\application\views\banksettlement.php 290
+ERROR - 2019-01-10 07:09:57 --> Severity: Notice --> Undefined variable: record C:\xampp\htdocs\ria\application\views\banksettlement.php 345
+ERROR - 2019-01-10 07:09:57 --> Severity: Notice --> Undefined variable: rel C:\xampp\htdocs\ria\application\views\banksettlement.php 290
+ERROR - 2019-01-10 07:09:57 --> Severity: Notice --> Undefined variable: rel C:\xampp\htdocs\ria\application\views\banksettlement.php 290
+ERROR - 2019-01-10 07:09:57 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\banksettlement.php 290
+ERROR - 2019-01-10 07:09:57 --> Severity: Notice --> Undefined variable: record C:\xampp\htdocs\ria\application\views\banksettlement.php 345
+ERROR - 2019-01-10 07:09:57 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\banksettlement.php 345
+ERROR - 2019-01-10 07:09:57 --> Severity: Notice --> Undefined variable: rel C:\xampp\htdocs\ria\application\views\banksettlement.php 290
+ERROR - 2019-01-10 07:09:57 --> Severity: Notice --> Undefined variable: rel C:\xampp\htdocs\ria\application\views\banksettlement.php 290
+ERROR - 2019-01-10 07:09:57 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\banksettlement.php 345
+ERROR - 2019-01-10 07:09:57 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\banksettlement.php 345
+ERROR - 2019-01-10 07:09:57 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\banksettlement.php 290
+ERROR - 2019-01-10 07:09:57 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\banksettlement.php 290
+ERROR - 2019-01-10 07:09:57 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\banksettlement.php 290
+ERROR - 2019-01-10 07:09:57 --> Severity: Notice --> Undefined variable: record C:\xampp\htdocs\ria\application\views\banksettlement.php 345
+ERROR - 2019-01-10 07:09:57 --> Severity: Notice --> Undefined variable: record C:\xampp\htdocs\ria\application\views\banksettlement.php 345
+ERROR - 2019-01-10 07:09:57 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\banksettlement.php 290
+ERROR - 2019-01-10 07:09:57 --> Severity: Notice --> Undefined variable: record C:\xampp\htdocs\ria\application\views\banksettlement.php 311
+ERROR - 2019-01-10 07:09:57 --> Severity: Notice --> Undefined variable: t C:\xampp\htdocs\ria\application\views\banksettlement.php 289
+ERROR - 2019-01-10 07:09:57 --> Severity: Notice --> Undefined variable: t C:\xampp\htdocs\ria\application\views\banksettlement.php 289
+ERROR - 2019-01-10 07:09:57 --> Severity: Notice --> Undefined variable: t C:\xampp\htdocs\ria\application\views\banksettlement.php 289
+ERROR - 2019-01-10 07:09:57 --> Severity: Notice --> Undefined variable: t C:\xampp\htdocs\ria\application\views\banksettlement.php 289
+ERROR - 2019-01-10 07:09:57 --> Severity: Notice --> Undefined variable: t C:\xampp\htdocs\ria\application\views\banksettlement.php 289
+ERROR - 2019-01-10 07:09:57 --> Severity: Notice --> Undefined variable: record C:\xampp\htdocs\ria\application\views\banksettlement.php 345
+ERROR - 2019-01-10 07:09:57 --> Severity: Notice --> Undefined variable: t C:\xampp\htdocs\ria\application\views\banksettlement.php 289
+ERROR - 2019-01-10 07:09:57 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\banksettlement.php 345
+ERROR - 2019-01-10 07:09:57 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\banksettlement.php 289
+ERROR - 2019-01-10 07:09:57 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\banksettlement.php 289
+ERROR - 2019-01-10 07:09:57 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\banksettlement.php 311
+ERROR - 2019-01-10 07:09:57 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\banksettlement.php 289
+ERROR - 2019-01-10 07:09:57 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\banksettlement.php 345
+ERROR - 2019-01-10 07:09:57 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\banksettlement.php 289
+ERROR - 2019-01-10 07:09:57 --> Severity: Notice --> Undefined variable: record C:\xampp\htdocs\ria\application\views\banksettlement.php 345
+ERROR - 2019-01-10 07:09:57 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\banksettlement.php 289
+ERROR - 2019-01-10 07:09:57 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\banksettlement.php 289
+ERROR - 2019-01-10 07:09:57 --> Severity: Notice --> Undefined variable: t C:\xampp\htdocs\ria\application\views\banksettlement.php 289
+ERROR - 2019-01-10 07:09:57 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\banksettlement.php 345
+ERROR - 2019-01-10 07:09:57 --> Severity: Notice --> Undefined variable: t C:\xampp\htdocs\ria\application\views\banksettlement.php 289
+ERROR - 2019-01-10 07:09:57 --> Severity: Notice --> Undefined variable: record C:\xampp\htdocs\ria\application\views\banksettlement.php 345
+ERROR - 2019-01-10 07:09:57 --> Severity: Notice --> Undefined variable: t C:\xampp\htdocs\ria\application\views\banksettlement.php 289
+ERROR - 2019-01-10 07:09:57 --> Severity: Notice --> Undefined variable: t C:\xampp\htdocs\ria\application\views\banksettlement.php 289
+ERROR - 2019-01-10 07:09:57 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\banksettlement.php 345
+ERROR - 2019-01-10 07:09:57 --> Severity: Notice --> Undefined variable: t C:\xampp\htdocs\ria\application\views\banksettlement.php 289
+ERROR - 2019-01-10 07:09:57 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\banksettlement.php 345
+ERROR - 2019-01-10 07:09:57 --> Severity: Notice --> Undefined variable: t C:\xampp\htdocs\ria\application\views\banksettlement.php 289
+ERROR - 2019-01-10 07:09:57 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\banksettlement.php 289
+ERROR - 2019-01-10 07:09:57 --> Severity: Notice --> Undefined variable: t C:\xampp\htdocs\ria\application\views\banksettlement.php 289
+ERROR - 2019-01-10 07:09:57 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\banksettlement.php 289
+ERROR - 2019-01-10 07:09:57 --> Severity: Notice --> Undefined variable: t C:\xampp\htdocs\ria\application\views\banksettlement.php 289
+ERROR - 2019-01-10 07:09:57 --> Severity: Notice --> Undefined variable: t C:\xampp\htdocs\ria\application\views\banksettlement.php 289
+ERROR - 2019-01-10 07:09:57 --> Severity: Notice --> Undefined variable: t C:\xampp\htdocs\ria\application\views\banksettlement.php 289
+ERROR - 2019-01-10 07:09:57 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\banksettlement.php 289
+ERROR - 2019-01-10 07:09:57 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\banksettlement.php 289
+ERROR - 2019-01-10 07:09:57 --> Severity: Notice --> Undefined variable: rel C:\xampp\htdocs\ria\application\views\banksettlement.php 290
+ERROR - 2019-01-10 07:09:57 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\banksettlement.php 289
+ERROR - 2019-01-10 07:09:57 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\banksettlement.php 289
+ERROR - 2019-01-10 07:09:57 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\banksettlement.php 289
+ERROR - 2019-01-10 07:09:57 --> Severity: Notice --> Undefined variable: rel C:\xampp\htdocs\ria\application\views\banksettlement.php 290
+ERROR - 2019-01-10 07:09:57 --> Severity: Notice --> Undefined variable: t C:\xampp\htdocs\ria\application\views\banksettlement.php 289
+ERROR - 2019-01-10 07:09:57 --> Severity: Notice --> Undefined variable: rel C:\xampp\htdocs\ria\application\views\banksettlement.php 290
+ERROR - 2019-01-10 07:09:57 --> Severity: Notice --> Undefined variable: rel C:\xampp\htdocs\ria\application\views\banksettlement.php 290
+ERROR - 2019-01-10 07:09:57 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\banksettlement.php 289
+ERROR - 2019-01-10 07:09:57 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\banksettlement.php 289
+ERROR - 2019-01-10 07:09:57 --> Severity: Notice --> Undefined variable: t C:\xampp\htdocs\ria\application\views\banksettlement.php 289
+ERROR - 2019-01-10 07:09:57 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\banksettlement.php 289
+ERROR - 2019-01-10 07:09:57 --> Severity: Notice --> Undefined variable: t C:\xampp\htdocs\ria\application\views\banksettlement.php 289
+ERROR - 2019-01-10 07:09:57 --> Severity: Notice --> Undefined variable: rel C:\xampp\htdocs\ria\application\views\banksettlement.php 290
+ERROR - 2019-01-10 07:09:57 --> Severity: Notice --> Undefined variable: rel C:\xampp\htdocs\ria\application\views\banksettlement.php 290
+ERROR - 2019-01-10 07:09:57 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\banksettlement.php 290
+ERROR - 2019-01-10 07:09:57 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\banksettlement.php 290
+ERROR - 2019-01-10 07:09:57 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\banksettlement.php 290
+ERROR - 2019-01-10 07:09:58 --> Severity: Notice --> Undefined variable: t C:\xampp\htdocs\ria\application\views\banksettlement.php 289
+ERROR - 2019-01-10 07:09:58 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\banksettlement.php 290
+ERROR - 2019-01-10 07:09:58 --> Severity: Notice --> Undefined variable: t C:\xampp\htdocs\ria\application\views\banksettlement.php 289
+ERROR - 2019-01-10 07:09:58 --> Severity: Notice --> Undefined variable: record C:\xampp\htdocs\ria\application\views\banksettlement.php 311
+ERROR - 2019-01-10 07:09:58 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\banksettlement.php 289
+ERROR - 2019-01-10 07:09:58 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\banksettlement.php 289
+ERROR - 2019-01-10 07:09:58 --> Severity: Notice --> Undefined variable: record C:\xampp\htdocs\ria\application\views\banksettlement.php 345
+ERROR - 2019-01-10 07:09:58 --> Severity: Notice --> Undefined variable: rel C:\xampp\htdocs\ria\application\views\banksettlement.php 290
+ERROR - 2019-01-10 07:09:58 --> Severity: Notice --> Undefined variable: record C:\xampp\htdocs\ria\application\views\banksettlement.php 311
+ERROR - 2019-01-10 07:09:58 --> Severity: Notice --> Undefined variable: record C:\xampp\htdocs\ria\application\views\banksettlement.php 345
+ERROR - 2019-01-10 07:09:58 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\banksettlement.php 289
+ERROR - 2019-01-10 07:09:58 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\banksettlement.php 290
+ERROR - 2019-01-10 07:09:58 --> Severity: Notice --> Undefined variable: rel C:\xampp\htdocs\ria\application\views\banksettlement.php 290
+ERROR - 2019-01-10 07:09:58 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\banksettlement.php 289
+ERROR - 2019-01-10 07:09:58 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\banksettlement.php 290
+ERROR - 2019-01-10 07:09:58 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\banksettlement.php 311
+ERROR - 2019-01-10 07:09:58 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\banksettlement.php 290
+ERROR - 2019-01-10 07:09:58 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\banksettlement.php 290
+ERROR - 2019-01-10 07:09:58 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\banksettlement.php 289
+ERROR - 2019-01-10 07:09:58 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\banksettlement.php 345
+ERROR - 2019-01-10 07:09:58 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\banksettlement.php 311
+ERROR - 2019-01-10 07:09:58 --> Severity: Notice --> Undefined variable: record C:\xampp\htdocs\ria\application\views\banksettlement.php 311
+ERROR - 2019-01-10 07:09:58 --> Severity: Notice --> Undefined variable: record C:\xampp\htdocs\ria\application\views\banksettlement.php 311
+ERROR - 2019-01-10 07:09:58 --> Severity: Notice --> Undefined variable: record C:\xampp\htdocs\ria\application\views\banksettlement.php 345
+ERROR - 2019-01-10 07:09:58 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\banksettlement.php 311
+ERROR - 2019-01-10 07:09:58 --> Severity: Notice --> Undefined variable: record C:\xampp\htdocs\ria\application\views\banksettlement.php 311
+ERROR - 2019-01-10 07:09:58 --> Severity: Notice --> Undefined variable: record C:\xampp\htdocs\ria\application\views\banksettlement.php 311
+ERROR - 2019-01-10 07:09:58 --> Severity: Notice --> Undefined variable: t C:\xampp\htdocs\ria\application\views\banksettlement.php 289
+ERROR - 2019-01-10 07:09:58 --> Severity: Notice --> Undefined variable: record C:\xampp\htdocs\ria\application\views\banksettlement.php 345
+ERROR - 2019-01-10 07:09:58 --> Severity: Notice --> Undefined variable: rel C:\xampp\htdocs\ria\application\views\banksettlement.php 290
+ERROR - 2019-01-10 07:09:58 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\banksettlement.php 290
+ERROR - 2019-01-10 07:09:58 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\banksettlement.php 345
+ERROR - 2019-01-10 07:09:58 --> Severity: Notice --> Undefined variable: rel C:\xampp\htdocs\ria\application\views\banksettlement.php 290
+ERROR - 2019-01-10 07:09:58 --> Severity: Notice --> Undefined variable: t C:\xampp\htdocs\ria\application\views\banksettlement.php 289
+ERROR - 2019-01-10 07:09:58 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\banksettlement.php 311
+ERROR - 2019-01-10 07:09:58 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\banksettlement.php 345
+ERROR - 2019-01-10 07:09:58 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\banksettlement.php 345
+ERROR - 2019-01-10 07:09:58 --> Severity: Notice --> Undefined variable: record C:\xampp\htdocs\ria\application\views\banksettlement.php 345
+ERROR - 2019-01-10 07:09:58 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\banksettlement.php 311
+ERROR - 2019-01-10 07:09:58 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\banksettlement.php 311
+ERROR - 2019-01-10 07:09:58 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\banksettlement.php 289
+ERROR - 2019-01-10 07:09:58 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\banksettlement.php 290
+ERROR - 2019-01-10 07:09:58 --> Severity: Notice --> Undefined variable: record C:\xampp\htdocs\ria\application\views\banksettlement.php 311
+ERROR - 2019-01-10 07:09:58 --> Severity: Notice --> Undefined variable: record C:\xampp\htdocs\ria\application\views\banksettlement.php 345
+ERROR - 2019-01-10 07:09:58 --> Severity: Notice --> Undefined variable: t C:\xampp\htdocs\ria\application\views\banksettlement.php 289
+ERROR - 2019-01-10 07:09:58 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\banksettlement.php 289
+ERROR - 2019-01-10 07:09:58 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\banksettlement.php 345
+ERROR - 2019-01-10 07:09:58 --> Severity: Notice --> Undefined variable: record C:\xampp\htdocs\ria\application\views\banksettlement.php 345
+ERROR - 2019-01-10 07:09:58 --> Severity: Notice --> Undefined variable: rel C:\xampp\htdocs\ria\application\views\banksettlement.php 290
+ERROR - 2019-01-10 07:09:58 --> Severity: Notice --> Undefined variable: record C:\xampp\htdocs\ria\application\views\banksettlement.php 345
+ERROR - 2019-01-10 07:09:58 --> Severity: Notice --> Undefined variable: t C:\xampp\htdocs\ria\application\views\banksettlement.php 289
+ERROR - 2019-01-10 07:09:58 --> Severity: Notice --> Undefined variable: record C:\xampp\htdocs\ria\application\views\banksettlement.php 311
+ERROR - 2019-01-10 07:09:58 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\banksettlement.php 290
+ERROR - 2019-01-10 07:09:58 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\banksettlement.php 345
+ERROR - 2019-01-10 07:09:58 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\banksettlement.php 311
+ERROR - 2019-01-10 07:09:58 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\banksettlement.php 345
+ERROR - 2019-01-10 07:09:58 --> Severity: Notice --> Undefined variable: t C:\xampp\htdocs\ria\application\views\banksettlement.php 289
+ERROR - 2019-01-10 07:09:58 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\banksettlement.php 311
+ERROR - 2019-01-10 07:09:58 --> Severity: Notice --> Undefined variable: t C:\xampp\htdocs\ria\application\views\banksettlement.php 289
+ERROR - 2019-01-10 07:09:58 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\banksettlement.php 289
+ERROR - 2019-01-10 07:09:58 --> Severity: Notice --> Undefined variable: t C:\xampp\htdocs\ria\application\views\banksettlement.php 289
+ERROR - 2019-01-10 07:09:58 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\banksettlement.php 345
+ERROR - 2019-01-10 07:09:58 --> Severity: Notice --> Undefined variable: record C:\xampp\htdocs\ria\application\views\banksettlement.php 345
+ERROR - 2019-01-10 07:09:58 --> Severity: Notice --> Undefined variable: record C:\xampp\htdocs\ria\application\views\banksettlement.php 345
+ERROR - 2019-01-10 07:09:58 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\banksettlement.php 289
+ERROR - 2019-01-10 07:09:58 --> Severity: Notice --> Undefined variable: record C:\xampp\htdocs\ria\application\views\banksettlement.php 345
+ERROR - 2019-01-10 07:09:58 --> Severity: Notice --> Undefined variable: t C:\xampp\htdocs\ria\application\views\banksettlement.php 289
+ERROR - 2019-01-10 07:09:58 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\banksettlement.php 289
+ERROR - 2019-01-10 07:09:58 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\banksettlement.php 289
+ERROR - 2019-01-10 07:09:58 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\banksettlement.php 289
+ERROR - 2019-01-10 07:09:58 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\banksettlement.php 345
+ERROR - 2019-01-10 07:09:58 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\banksettlement.php 345
+ERROR - 2019-01-10 07:09:58 --> Severity: Notice --> Undefined variable: t C:\xampp\htdocs\ria\application\views\banksettlement.php 289
+ERROR - 2019-01-10 07:09:58 --> Severity: Notice --> Undefined variable: t C:\xampp\htdocs\ria\application\views\banksettlement.php 289
+ERROR - 2019-01-10 07:09:58 --> Severity: Notice --> Undefined variable: t C:\xampp\htdocs\ria\application\views\banksettlement.php 289
+ERROR - 2019-01-10 07:09:58 --> Severity: Notice --> Undefined variable: rel C:\xampp\htdocs\ria\application\views\banksettlement.php 290
+ERROR - 2019-01-10 07:09:58 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\banksettlement.php 289
+ERROR - 2019-01-10 07:09:58 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\banksettlement.php 289
+ERROR - 2019-01-10 07:09:58 --> Severity: Notice --> Undefined variable: t C:\xampp\htdocs\ria\application\views\banksettlement.php 289
+ERROR - 2019-01-10 07:09:58 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\banksettlement.php 345
+ERROR - 2019-01-10 07:09:58 --> Severity: Notice --> Undefined variable: t C:\xampp\htdocs\ria\application\views\banksettlement.php 289
+ERROR - 2019-01-10 07:09:58 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\banksettlement.php 289
+ERROR - 2019-01-10 07:09:58 --> Severity: Notice --> Undefined variable: t C:\xampp\htdocs\ria\application\views\banksettlement.php 289
+ERROR - 2019-01-10 07:09:58 --> Severity: Notice --> Undefined variable: rel C:\xampp\htdocs\ria\application\views\banksettlement.php 290
+ERROR - 2019-01-10 07:09:58 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\banksettlement.php 289
+ERROR - 2019-01-10 07:09:58 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\banksettlement.php 290
+ERROR - 2019-01-10 07:09:58 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\banksettlement.php 289
+ERROR - 2019-01-10 07:09:58 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\banksettlement.php 289
+ERROR - 2019-01-10 07:09:58 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\banksettlement.php 289
+ERROR - 2019-01-10 07:09:58 --> Severity: Notice --> Undefined variable: rel C:\xampp\htdocs\ria\application\views\banksettlement.php 290
+ERROR - 2019-01-10 07:09:58 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\banksettlement.php 290
+ERROR - 2019-01-10 07:09:58 --> Severity: Notice --> Undefined variable: t C:\xampp\htdocs\ria\application\views\banksettlement.php 289
+ERROR - 2019-01-10 07:09:58 --> Severity: Notice --> Undefined variable: record C:\xampp\htdocs\ria\application\views\banksettlement.php 311
+ERROR - 2019-01-10 07:09:58 --> Severity: Notice --> Undefined variable: t C:\xampp\htdocs\ria\application\views\banksettlement.php 289
+ERROR - 2019-01-10 07:09:58 --> Severity: Notice --> Undefined variable: rel C:\xampp\htdocs\ria\application\views\banksettlement.php 290
+ERROR - 2019-01-10 07:09:58 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\banksettlement.php 290
+ERROR - 2019-01-10 07:09:58 --> Severity: Notice --> Undefined variable: rel C:\xampp\htdocs\ria\application\views\banksettlement.php 290
+ERROR - 2019-01-10 07:09:58 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\banksettlement.php 289
+ERROR - 2019-01-10 07:09:58 --> Severity: Notice --> Undefined variable: t C:\xampp\htdocs\ria\application\views\banksettlement.php 289
+ERROR - 2019-01-10 07:09:58 --> Severity: Notice --> Undefined variable: record C:\xampp\htdocs\ria\application\views\banksettlement.php 345
+ERROR - 2019-01-10 07:09:58 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\banksettlement.php 290
+ERROR - 2019-01-10 07:09:58 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\banksettlement.php 289
+ERROR - 2019-01-10 07:09:58 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\banksettlement.php 311
+ERROR - 2019-01-10 07:09:58 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\banksettlement.php 290
+ERROR - 2019-01-10 07:09:59 --> Severity: Notice --> Undefined variable: record C:\xampp\htdocs\ria\application\views\banksettlement.php 345
+ERROR - 2019-01-10 07:09:59 --> Severity: Notice --> Undefined variable: record C:\xampp\htdocs\ria\application\views\banksettlement.php 311
+ERROR - 2019-01-10 07:09:59 --> Severity: Notice --> Undefined variable: record C:\xampp\htdocs\ria\application\views\banksettlement.php 345
+ERROR - 2019-01-10 07:09:59 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\banksettlement.php 345
+ERROR - 2019-01-10 07:09:59 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\banksettlement.php 289
+ERROR - 2019-01-10 07:09:59 --> Severity: Notice --> Undefined variable: rel C:\xampp\htdocs\ria\application\views\banksettlement.php 290
+ERROR - 2019-01-10 07:09:59 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\banksettlement.php 345
+ERROR - 2019-01-10 07:09:59 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\banksettlement.php 345
+ERROR - 2019-01-10 07:09:59 --> Severity: Notice --> Undefined variable: record C:\xampp\htdocs\ria\application\views\banksettlement.php 345
+ERROR - 2019-01-10 07:09:59 --> Severity: Notice --> Undefined variable: rel C:\xampp\htdocs\ria\application\views\banksettlement.php 290
+ERROR - 2019-01-10 07:09:59 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\banksettlement.php 311
+ERROR - 2019-01-10 07:09:59 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\banksettlement.php 290
+ERROR - 2019-01-10 07:09:59 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\banksettlement.php 290
+ERROR - 2019-01-10 07:09:59 --> Severity: Notice --> Undefined variable: t C:\xampp\htdocs\ria\application\views\banksettlement.php 289
+ERROR - 2019-01-10 07:09:59 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\banksettlement.php 345
+ERROR - 2019-01-10 07:09:59 --> Severity: Notice --> Undefined variable: record C:\xampp\htdocs\ria\application\views\banksettlement.php 345
+ERROR - 2019-01-10 07:09:59 --> Severity: Notice --> Undefined variable: record C:\xampp\htdocs\ria\application\views\banksettlement.php 311
+ERROR - 2019-01-10 07:09:59 --> Severity: Notice --> Undefined variable: rel C:\xampp\htdocs\ria\application\views\banksettlement.php 290
+ERROR - 2019-01-10 07:09:59 --> Severity: Notice --> Undefined variable: t C:\xampp\htdocs\ria\application\views\banksettlement.php 289
+ERROR - 2019-01-10 07:09:59 --> Severity: Notice --> Undefined variable: record C:\xampp\htdocs\ria\application\views\banksettlement.php 345
+ERROR - 2019-01-10 07:09:59 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\banksettlement.php 289
+ERROR - 2019-01-10 07:09:59 --> Severity: Notice --> Undefined variable: t C:\xampp\htdocs\ria\application\views\banksettlement.php 289
+ERROR - 2019-01-10 07:09:59 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\banksettlement.php 345
+ERROR - 2019-01-10 07:09:59 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\banksettlement.php 311
+ERROR - 2019-01-10 07:09:59 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\banksettlement.php 290
+ERROR - 2019-01-10 07:09:59 --> Severity: Notice --> Undefined variable: t C:\xampp\htdocs\ria\application\views\banksettlement.php 289
+ERROR - 2019-01-10 07:09:59 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\banksettlement.php 345
+ERROR - 2019-01-10 07:09:59 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\banksettlement.php 289
+ERROR - 2019-01-10 07:09:59 --> Severity: Notice --> Undefined variable: t C:\xampp\htdocs\ria\application\views\banksettlement.php 289
+ERROR - 2019-01-10 07:09:59 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\banksettlement.php 289
+ERROR - 2019-01-10 07:09:59 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\banksettlement.php 289
+ERROR - 2019-01-10 07:09:59 --> Severity: Notice --> Undefined variable: record C:\xampp\htdocs\ria\application\views\banksettlement.php 345
+ERROR - 2019-01-10 07:09:59 --> Severity: Notice --> Undefined variable: t C:\xampp\htdocs\ria\application\views\banksettlement.php 289
+ERROR - 2019-01-10 07:09:59 --> Severity: Notice --> Undefined variable: t C:\xampp\htdocs\ria\application\views\banksettlement.php 289
+ERROR - 2019-01-10 07:09:59 --> Severity: Notice --> Undefined variable: t C:\xampp\htdocs\ria\application\views\banksettlement.php 289
+ERROR - 2019-01-10 07:09:59 --> Severity: Notice --> Undefined variable: record C:\xampp\htdocs\ria\application\views\banksettlement.php 345
+ERROR - 2019-01-10 07:09:59 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\banksettlement.php 289
+ERROR - 2019-01-10 07:09:59 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\banksettlement.php 345
+ERROR - 2019-01-10 07:09:59 --> Severity: Notice --> Undefined variable: rel C:\xampp\htdocs\ria\application\views\banksettlement.php 290
+ERROR - 2019-01-10 07:09:59 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\banksettlement.php 289
+ERROR - 2019-01-10 07:09:59 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\banksettlement.php 289
+ERROR - 2019-01-10 07:09:59 --> Severity: Notice --> Undefined variable: rel C:\xampp\htdocs\ria\application\views\banksettlement.php 290
+ERROR - 2019-01-10 07:09:59 --> Severity: Notice --> Undefined variable: rel C:\xampp\htdocs\ria\application\views\banksettlement.php 290
+ERROR - 2019-01-10 07:09:59 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\banksettlement.php 289
+ERROR - 2019-01-10 07:09:59 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\banksettlement.php 290
+ERROR - 2019-01-10 07:09:59 --> Severity: Notice --> Undefined variable: t C:\xampp\htdocs\ria\application\views\banksettlement.php 289
+ERROR - 2019-01-10 07:09:59 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\banksettlement.php 345
+ERROR - 2019-01-10 07:09:59 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\banksettlement.php 289
+ERROR - 2019-01-10 07:09:59 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\banksettlement.php 290
+ERROR - 2019-01-10 07:09:59 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\banksettlement.php 290
+ERROR - 2019-01-10 07:09:59 --> Severity: Notice --> Undefined variable: record C:\xampp\htdocs\ria\application\views\banksettlement.php 311
+ERROR - 2019-01-10 07:09:59 --> Severity: Notice --> Undefined variable: t C:\xampp\htdocs\ria\application\views\banksettlement.php 289
+ERROR - 2019-01-10 07:09:59 --> Severity: Notice --> Undefined variable: t C:\xampp\htdocs\ria\application\views\banksettlement.php 289
+ERROR - 2019-01-10 07:09:59 --> Severity: Notice --> Undefined variable: record C:\xampp\htdocs\ria\application\views\banksettlement.php 311
+ERROR - 2019-01-10 07:09:59 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\banksettlement.php 289
+ERROR - 2019-01-10 07:09:59 --> Severity: Notice --> Undefined variable: rel C:\xampp\htdocs\ria\application\views\banksettlement.php 290
+ERROR - 2019-01-10 07:09:59 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\banksettlement.php 311
+ERROR - 2019-01-10 07:09:59 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\banksettlement.php 289
+ERROR - 2019-01-10 07:09:59 --> Severity: Notice --> Undefined variable: record C:\xampp\htdocs\ria\application\views\banksettlement.php 311
+ERROR - 2019-01-10 07:09:59 --> Severity: Notice --> Undefined variable: record C:\xampp\htdocs\ria\application\views\banksettlement.php 345
+ERROR - 2019-01-10 07:09:59 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\banksettlement.php 311
+ERROR - 2019-01-10 07:09:59 --> Severity: Notice --> Undefined variable: rel C:\xampp\htdocs\ria\application\views\banksettlement.php 290
+ERROR - 2019-01-10 07:09:59 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\banksettlement.php 290
+ERROR - 2019-01-10 07:09:59 --> Severity: Notice --> Undefined variable: t C:\xampp\htdocs\ria\application\views\banksettlement.php 289
+ERROR - 2019-01-10 07:09:59 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\banksettlement.php 311
+ERROR - 2019-01-10 07:09:59 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\banksettlement.php 345
+ERROR - 2019-01-10 07:09:59 --> Severity: Notice --> Undefined variable: record C:\xampp\htdocs\ria\application\views\banksettlement.php 345
+ERROR - 2019-01-10 07:09:59 --> Severity: Notice --> Undefined variable: record C:\xampp\htdocs\ria\application\views\banksettlement.php 345
+ERROR - 2019-01-10 07:09:59 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\banksettlement.php 290
+ERROR - 2019-01-10 07:09:59 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\banksettlement.php 289
+ERROR - 2019-01-10 07:09:59 --> Severity: Notice --> Undefined variable: record C:\xampp\htdocs\ria\application\views\banksettlement.php 345
+ERROR - 2019-01-10 07:09:59 --> Severity: Notice --> Undefined variable: rel C:\xampp\htdocs\ria\application\views\banksettlement.php 290
+ERROR - 2019-01-10 07:09:59 --> Severity: Notice --> Undefined variable: record C:\xampp\htdocs\ria\application\views\banksettlement.php 311
+ERROR - 2019-01-10 07:09:59 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\banksettlement.php 345
+ERROR - 2019-01-10 07:09:59 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\banksettlement.php 345
+ERROR - 2019-01-10 07:09:59 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\banksettlement.php 345
+ERROR - 2019-01-10 07:09:59 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\banksettlement.php 290
+ERROR - 2019-01-10 07:09:59 --> Severity: Notice --> Undefined variable: t C:\xampp\htdocs\ria\application\views\banksettlement.php 289
+ERROR - 2019-01-10 07:09:59 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\banksettlement.php 311
+ERROR - 2019-01-10 07:10:00 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\banksettlement.php 289
+ERROR - 2019-01-10 07:10:00 --> Severity: Notice --> Undefined variable: record C:\xampp\htdocs\ria\application\views\banksettlement.php 311
+ERROR - 2019-01-10 07:10:00 --> Severity: Notice --> Undefined variable: t C:\xampp\htdocs\ria\application\views\banksettlement.php 289
+ERROR - 2019-01-10 07:10:00 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\banksettlement.php 289
+ERROR - 2019-01-10 07:10:00 --> Severity: Notice --> Undefined variable: record C:\xampp\htdocs\ria\application\views\banksettlement.php 345
+ERROR - 2019-01-10 07:10:00 --> Severity: Notice --> Undefined variable: rel C:\xampp\htdocs\ria\application\views\banksettlement.php 290
+ERROR - 2019-01-10 07:10:00 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\banksettlement.php 311
+ERROR - 2019-01-10 07:10:00 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\banksettlement.php 345
+ERROR - 2019-01-10 07:10:00 --> Severity: Notice --> Undefined variable: record C:\xampp\htdocs\ria\application\views\banksettlement.php 345
+ERROR - 2019-01-10 07:10:00 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\banksettlement.php 290
+ERROR - 2019-01-10 07:10:00 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\banksettlement.php 345
+ERROR - 2019-01-10 07:10:00 --> Severity: Notice --> Undefined variable: record C:\xampp\htdocs\ria\application\views\banksettlement.php 311
+ERROR - 2019-01-10 07:10:00 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\banksettlement.php 311
+ERROR - 2019-01-10 07:10:00 --> Severity: Notice --> Undefined variable: record C:\xampp\htdocs\ria\application\views\banksettlement.php 345
+ERROR - 2019-01-10 07:10:01 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\banksettlement.php 345
+ERROR - 2019-01-10 07:11:13 --> Severity: Notice --> Undefined variable: financialyear C:\xampp\htdocs\ria\application\views\banksettlement.php 11
+ERROR - 2019-01-10 07:11:13 --> Severity: Warning --> Invalid argument supplied for foreach() C:\xampp\htdocs\ria\application\views\banksettlement.php 11
+ERROR - 2019-01-10 07:11:13 --> Severity: Notice --> Undefined variable: t C:\xampp\htdocs\ria\application\views\banksettlement.php 289
+ERROR - 2019-01-10 07:11:13 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\banksettlement.php 289
+ERROR - 2019-01-10 07:11:13 --> Severity: Notice --> Undefined variable: t C:\xampp\htdocs\ria\application\views\banksettlement.php 289
+ERROR - 2019-01-10 07:11:13 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\banksettlement.php 289
+ERROR - 2019-01-10 07:11:13 --> Severity: Notice --> Undefined variable: rel C:\xampp\htdocs\ria\application\views\banksettlement.php 290
+ERROR - 2019-01-10 07:11:13 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\banksettlement.php 290
+ERROR - 2019-01-10 07:11:13 --> Severity: Notice --> Undefined variable: record C:\xampp\htdocs\ria\application\views\banksettlement.php 346
+ERROR - 2019-01-10 07:11:13 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\banksettlement.php 346
+ERROR - 2019-01-10 07:11:13 --> Severity: Notice --> Undefined variable: t C:\xampp\htdocs\ria\application\views\banksettlement.php 289
+ERROR - 2019-01-10 07:11:13 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\banksettlement.php 289
+ERROR - 2019-01-10 07:11:13 --> Severity: Notice --> Undefined variable: t C:\xampp\htdocs\ria\application\views\banksettlement.php 289
+ERROR - 2019-01-10 07:11:13 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\banksettlement.php 289
+ERROR - 2019-01-10 07:11:13 --> Severity: Notice --> Undefined variable: rel C:\xampp\htdocs\ria\application\views\banksettlement.php 290
+ERROR - 2019-01-10 07:11:13 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\banksettlement.php 290
+ERROR - 2019-01-10 07:11:13 --> Severity: Notice --> Undefined variable: record C:\xampp\htdocs\ria\application\views\banksettlement.php 312
+ERROR - 2019-01-10 07:11:13 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\banksettlement.php 312
+ERROR - 2019-01-10 07:11:13 --> Severity: Notice --> Undefined variable: record C:\xampp\htdocs\ria\application\views\banksettlement.php 346
+ERROR - 2019-01-10 07:11:13 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\banksettlement.php 346
+ERROR - 2019-01-10 07:11:13 --> Severity: Notice --> Undefined variable: t C:\xampp\htdocs\ria\application\views\banksettlement.php 289
+ERROR - 2019-01-10 07:11:13 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\banksettlement.php 289
+ERROR - 2019-01-10 07:11:14 --> Severity: Notice --> Undefined variable: t C:\xampp\htdocs\ria\application\views\banksettlement.php 289
+ERROR - 2019-01-10 07:11:14 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\banksettlement.php 289
+ERROR - 2019-01-10 07:11:14 --> Severity: Notice --> Undefined variable: rel C:\xampp\htdocs\ria\application\views\banksettlement.php 290
+ERROR - 2019-01-10 07:11:14 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\banksettlement.php 290
+ERROR - 2019-01-10 07:11:14 --> Severity: Notice --> Undefined variable: record C:\xampp\htdocs\ria\application\views\banksettlement.php 346
+ERROR - 2019-01-10 07:11:14 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\banksettlement.php 346
+ERROR - 2019-01-10 07:11:14 --> Severity: Notice --> Undefined variable: t C:\xampp\htdocs\ria\application\views\banksettlement.php 289
+ERROR - 2019-01-10 07:11:14 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\banksettlement.php 289
+ERROR - 2019-01-10 07:11:14 --> Severity: Notice --> Undefined variable: t C:\xampp\htdocs\ria\application\views\banksettlement.php 289
+ERROR - 2019-01-10 07:11:14 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\banksettlement.php 289
+ERROR - 2019-01-10 07:11:14 --> Severity: Notice --> Undefined variable: rel C:\xampp\htdocs\ria\application\views\banksettlement.php 290
+ERROR - 2019-01-10 07:11:14 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\banksettlement.php 290
+ERROR - 2019-01-10 07:11:14 --> Severity: Notice --> Undefined variable: record C:\xampp\htdocs\ria\application\views\banksettlement.php 312
+ERROR - 2019-01-10 07:11:14 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\banksettlement.php 312
+ERROR - 2019-01-10 07:11:14 --> Severity: Notice --> Undefined variable: record C:\xampp\htdocs\ria\application\views\banksettlement.php 346
+ERROR - 2019-01-10 07:11:14 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\banksettlement.php 346
+ERROR - 2019-01-10 07:12:28 --> Severity: Notice --> Undefined variable: fdate C:\xampp\htdocs\ria\application\controllers\cashbook.php 1172
+ERROR - 2019-01-10 07:12:28 --> Severity: Notice --> Undefined variable: tdate C:\xampp\htdocs\ria\application\controllers\cashbook.php 1172
+ERROR - 2019-01-10 07:12:28 --> Severity: Notice --> Undefined variable: fa C:\xampp\htdocs\ria\application\controllers\cashbook.php 1172
+ERROR - 2019-01-10 07:12:28 --> Severity: Notice --> Undefined variable: aa C:\xampp\htdocs\ria\application\controllers\cashbook.php 1172
+ERROR - 2019-01-10 07:12:29 --> Severity: Notice --> Undefined variable: financialyear C:\xampp\htdocs\ria\application\views\bankstatement.php 2
+ERROR - 2019-01-10 07:12:29 --> Severity: Warning --> Invalid argument supplied for foreach() C:\xampp\htdocs\ria\application\views\bankstatement.php 2
+ERROR - 2019-01-10 07:12:29 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 85
+ERROR - 2019-01-10 07:12:29 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 85
+ERROR - 2019-01-10 07:12:29 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 86
+ERROR - 2019-01-10 07:12:29 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 86
+ERROR - 2019-01-10 07:12:30 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 87
+ERROR - 2019-01-10 07:12:30 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 87
+ERROR - 2019-01-10 07:12:30 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 137
+ERROR - 2019-01-10 07:12:30 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 137
+ERROR - 2019-01-10 07:12:30 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 138
+ERROR - 2019-01-10 07:12:30 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 138
+ERROR - 2019-01-10 07:12:30 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 139
+ERROR - 2019-01-10 07:12:30 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 139
+ERROR - 2019-01-10 07:14:34 --> Severity: Notice --> Undefined variable: financialyear C:\xampp\htdocs\ria\application\views\banksettlement.php 11
+ERROR - 2019-01-10 07:14:34 --> Severity: Warning --> Invalid argument supplied for foreach() C:\xampp\htdocs\ria\application\views\banksettlement.php 11
+ERROR - 2019-01-10 07:14:34 --> Severity: Notice --> Undefined variable: t C:\xampp\htdocs\ria\application\views\banksettlement.php 289
+ERROR - 2019-01-10 07:14:34 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\banksettlement.php 289
+ERROR - 2019-01-10 07:14:34 --> Severity: Notice --> Undefined variable: t C:\xampp\htdocs\ria\application\views\banksettlement.php 289
+ERROR - 2019-01-10 07:14:34 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\banksettlement.php 289
+ERROR - 2019-01-10 07:14:34 --> Severity: Notice --> Undefined variable: rel C:\xampp\htdocs\ria\application\views\banksettlement.php 290
+ERROR - 2019-01-10 07:14:34 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\banksettlement.php 290
+ERROR - 2019-01-10 07:14:34 --> Severity: Notice --> Undefined variable: record C:\xampp\htdocs\ria\application\views\banksettlement.php 346
+ERROR - 2019-01-10 07:14:34 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\banksettlement.php 346
+ERROR - 2019-01-10 07:14:34 --> Severity: Notice --> Undefined variable: t C:\xampp\htdocs\ria\application\views\banksettlement.php 289
+ERROR - 2019-01-10 07:14:34 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\banksettlement.php 289
+ERROR - 2019-01-10 07:14:34 --> Severity: Notice --> Undefined variable: t C:\xampp\htdocs\ria\application\views\banksettlement.php 289
+ERROR - 2019-01-10 07:14:34 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\banksettlement.php 289
+ERROR - 2019-01-10 07:14:34 --> Severity: Notice --> Undefined variable: rel C:\xampp\htdocs\ria\application\views\banksettlement.php 290
+ERROR - 2019-01-10 07:14:34 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\banksettlement.php 290
+ERROR - 2019-01-10 07:14:34 --> Severity: Notice --> Undefined variable: record C:\xampp\htdocs\ria\application\views\banksettlement.php 346
+ERROR - 2019-01-10 07:14:34 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\banksettlement.php 346
+ERROR - 2019-01-10 07:14:49 --> Severity: Notice --> Undefined variable: fdate C:\xampp\htdocs\ria\application\controllers\cashbook.php 1172
+ERROR - 2019-01-10 07:14:49 --> Severity: Notice --> Undefined variable: tdate C:\xampp\htdocs\ria\application\controllers\cashbook.php 1172
+ERROR - 2019-01-10 07:14:49 --> Severity: Notice --> Undefined variable: fa C:\xampp\htdocs\ria\application\controllers\cashbook.php 1172
+ERROR - 2019-01-10 07:14:49 --> Severity: Notice --> Undefined variable: aa C:\xampp\htdocs\ria\application\controllers\cashbook.php 1172
+ERROR - 2019-01-10 07:14:49 --> Severity: Notice --> Undefined variable: financialyear C:\xampp\htdocs\ria\application\views\bankstatement.php 2
+ERROR - 2019-01-10 07:14:49 --> Severity: Warning --> Invalid argument supplied for foreach() C:\xampp\htdocs\ria\application\views\bankstatement.php 2
+ERROR - 2019-01-10 07:14:50 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 85
+ERROR - 2019-01-10 07:14:50 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 85
+ERROR - 2019-01-10 07:14:50 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 86
+ERROR - 2019-01-10 07:14:50 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 86
+ERROR - 2019-01-10 07:14:50 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 87
+ERROR - 2019-01-10 07:14:50 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 87
+ERROR - 2019-01-10 07:14:50 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 137
+ERROR - 2019-01-10 07:14:50 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 137
+ERROR - 2019-01-10 07:14:50 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 138
+ERROR - 2019-01-10 07:14:50 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 138
+ERROR - 2019-01-10 07:14:50 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 139
+ERROR - 2019-01-10 07:14:50 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 139
+ERROR - 2019-01-10 07:15:00 --> Severity: Notice --> Undefined variable: financialyear C:\xampp\htdocs\ria\application\views\banksettlement.php 11
+ERROR - 2019-01-10 07:15:00 --> Severity: Warning --> Invalid argument supplied for foreach() C:\xampp\htdocs\ria\application\views\banksettlement.php 11
+ERROR - 2019-01-10 07:15:00 --> Severity: Notice --> Undefined variable: t C:\xampp\htdocs\ria\application\views\banksettlement.php 289
+ERROR - 2019-01-10 07:15:00 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\banksettlement.php 289
+ERROR - 2019-01-10 07:15:00 --> Severity: Notice --> Undefined variable: t C:\xampp\htdocs\ria\application\views\banksettlement.php 289
+ERROR - 2019-01-10 07:15:00 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\banksettlement.php 289
+ERROR - 2019-01-10 07:15:00 --> Severity: Notice --> Undefined variable: rel C:\xampp\htdocs\ria\application\views\banksettlement.php 290
+ERROR - 2019-01-10 07:15:00 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\banksettlement.php 290
+ERROR - 2019-01-10 07:15:00 --> Severity: Notice --> Undefined variable: record C:\xampp\htdocs\ria\application\views\banksettlement.php 346
+ERROR - 2019-01-10 07:15:00 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\banksettlement.php 346
+ERROR - 2019-01-10 07:15:01 --> Severity: Notice --> Undefined variable: t C:\xampp\htdocs\ria\application\views\banksettlement.php 289
+ERROR - 2019-01-10 07:15:01 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\banksettlement.php 289
+ERROR - 2019-01-10 07:15:01 --> Severity: Notice --> Undefined variable: t C:\xampp\htdocs\ria\application\views\banksettlement.php 289
+ERROR - 2019-01-10 07:15:01 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\banksettlement.php 289
+ERROR - 2019-01-10 07:15:01 --> Severity: Notice --> Undefined variable: rel C:\xampp\htdocs\ria\application\views\banksettlement.php 290
+ERROR - 2019-01-10 07:15:01 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\banksettlement.php 290
+ERROR - 2019-01-10 07:15:01 --> Severity: Notice --> Undefined variable: record C:\xampp\htdocs\ria\application\views\banksettlement.php 312
+ERROR - 2019-01-10 07:15:01 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\banksettlement.php 312
+ERROR - 2019-01-10 07:15:01 --> Severity: Notice --> Undefined variable: record C:\xampp\htdocs\ria\application\views\banksettlement.php 346
+ERROR - 2019-01-10 07:15:01 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\banksettlement.php 346
+ERROR - 2019-01-10 07:15:01 --> Severity: Notice --> Undefined variable: t C:\xampp\htdocs\ria\application\views\banksettlement.php 289
+ERROR - 2019-01-10 07:15:01 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\banksettlement.php 289
+ERROR - 2019-01-10 07:15:01 --> Severity: Notice --> Undefined variable: t C:\xampp\htdocs\ria\application\views\banksettlement.php 289
+ERROR - 2019-01-10 07:15:01 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\banksettlement.php 289
+ERROR - 2019-01-10 07:15:01 --> Severity: Notice --> Undefined variable: rel C:\xampp\htdocs\ria\application\views\banksettlement.php 290
+ERROR - 2019-01-10 07:15:01 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\banksettlement.php 290
+ERROR - 2019-01-10 07:15:01 --> Severity: Notice --> Undefined variable: record C:\xampp\htdocs\ria\application\views\banksettlement.php 346
+ERROR - 2019-01-10 07:15:01 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\banksettlement.php 346
+ERROR - 2019-01-10 07:15:01 --> Severity: Notice --> Undefined variable: t C:\xampp\htdocs\ria\application\views\banksettlement.php 289
+ERROR - 2019-01-10 07:15:01 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\banksettlement.php 289
+ERROR - 2019-01-10 07:15:02 --> Severity: Notice --> Undefined variable: t C:\xampp\htdocs\ria\application\views\banksettlement.php 289
+ERROR - 2019-01-10 07:15:02 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\banksettlement.php 289
+ERROR - 2019-01-10 07:15:02 --> Severity: Notice --> Undefined variable: rel C:\xampp\htdocs\ria\application\views\banksettlement.php 290
+ERROR - 2019-01-10 07:15:02 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\banksettlement.php 290
+ERROR - 2019-01-10 07:15:02 --> Severity: Notice --> Undefined variable: record C:\xampp\htdocs\ria\application\views\banksettlement.php 312
+ERROR - 2019-01-10 07:15:02 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\banksettlement.php 312
+ERROR - 2019-01-10 07:15:02 --> Severity: Notice --> Undefined variable: record C:\xampp\htdocs\ria\application\views\banksettlement.php 346
+ERROR - 2019-01-10 07:15:02 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\banksettlement.php 346
+ERROR - 2019-01-10 07:15:15 --> Severity: Notice --> Use of undefined constant OPEN - assumed 'OPEN' C:\xampp\htdocs\ria\application\controllers\cashbook.php 2270
+ERROR - 2019-01-10 07:15:17 --> Severity: Notice --> Undefined variable: fdate C:\xampp\htdocs\ria\application\controllers\cashbook.php 1172
+ERROR - 2019-01-10 07:15:17 --> Severity: Notice --> Undefined variable: tdate C:\xampp\htdocs\ria\application\controllers\cashbook.php 1172
+ERROR - 2019-01-10 07:15:17 --> Severity: Notice --> Undefined variable: fa C:\xampp\htdocs\ria\application\controllers\cashbook.php 1172
+ERROR - 2019-01-10 07:15:17 --> Severity: Notice --> Undefined variable: aa C:\xampp\htdocs\ria\application\controllers\cashbook.php 1172
+ERROR - 2019-01-10 07:15:17 --> Severity: Notice --> Undefined variable: financialyear C:\xampp\htdocs\ria\application\views\bankstatement.php 2
+ERROR - 2019-01-10 07:15:17 --> Severity: Warning --> Invalid argument supplied for foreach() C:\xampp\htdocs\ria\application\views\bankstatement.php 2
+ERROR - 2019-01-10 07:15:17 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 85
+ERROR - 2019-01-10 07:15:17 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 85
+ERROR - 2019-01-10 07:15:17 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 86
+ERROR - 2019-01-10 07:15:17 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 86
+ERROR - 2019-01-10 07:15:17 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 87
+ERROR - 2019-01-10 07:15:17 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 87
+ERROR - 2019-01-10 07:15:17 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 137
+ERROR - 2019-01-10 07:15:17 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 137
+ERROR - 2019-01-10 07:15:17 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 138
+ERROR - 2019-01-10 07:15:18 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 138
+ERROR - 2019-01-10 07:15:18 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 139
+ERROR - 2019-01-10 07:15:18 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 139
+ERROR - 2019-01-10 07:15:28 --> Severity: Notice --> Undefined variable: financialyear C:\xampp\htdocs\ria\application\views\banksettlement.php 11
+ERROR - 2019-01-10 07:15:28 --> Severity: Warning --> Invalid argument supplied for foreach() C:\xampp\htdocs\ria\application\views\banksettlement.php 11
+ERROR - 2019-01-10 07:15:28 --> Severity: Notice --> Undefined variable: t C:\xampp\htdocs\ria\application\views\banksettlement.php 289
+ERROR - 2019-01-10 07:15:28 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\banksettlement.php 289
+ERROR - 2019-01-10 07:15:28 --> Severity: Notice --> Undefined variable: t C:\xampp\htdocs\ria\application\views\banksettlement.php 289
+ERROR - 2019-01-10 07:15:28 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\banksettlement.php 289
+ERROR - 2019-01-10 07:15:28 --> Severity: Notice --> Undefined variable: rel C:\xampp\htdocs\ria\application\views\banksettlement.php 290
+ERROR - 2019-01-10 07:15:28 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\banksettlement.php 290
+ERROR - 2019-01-10 07:15:28 --> Severity: Notice --> Undefined variable: record C:\xampp\htdocs\ria\application\views\banksettlement.php 346
+ERROR - 2019-01-10 07:15:28 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\banksettlement.php 346
+ERROR - 2019-01-10 07:15:28 --> Severity: Notice --> Undefined variable: t C:\xampp\htdocs\ria\application\views\banksettlement.php 289
+ERROR - 2019-01-10 07:15:28 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\banksettlement.php 289
+ERROR - 2019-01-10 07:15:28 --> Severity: Notice --> Undefined variable: t C:\xampp\htdocs\ria\application\views\banksettlement.php 289
+ERROR - 2019-01-10 07:15:28 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\banksettlement.php 289
+ERROR - 2019-01-10 07:15:29 --> Severity: Notice --> Undefined variable: rel C:\xampp\htdocs\ria\application\views\banksettlement.php 290
+ERROR - 2019-01-10 07:15:29 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\banksettlement.php 290
+ERROR - 2019-01-10 07:15:29 --> Severity: Notice --> Undefined variable: record C:\xampp\htdocs\ria\application\views\banksettlement.php 312
+ERROR - 2019-01-10 07:15:29 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\banksettlement.php 312
+ERROR - 2019-01-10 07:15:29 --> Severity: Notice --> Undefined variable: record C:\xampp\htdocs\ria\application\views\banksettlement.php 346
+ERROR - 2019-01-10 07:15:29 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\banksettlement.php 346
+ERROR - 2019-01-10 07:15:29 --> Severity: Notice --> Undefined variable: t C:\xampp\htdocs\ria\application\views\banksettlement.php 289
+ERROR - 2019-01-10 07:15:29 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\banksettlement.php 289
+ERROR - 2019-01-10 07:15:29 --> Severity: Notice --> Undefined variable: t C:\xampp\htdocs\ria\application\views\banksettlement.php 289
+ERROR - 2019-01-10 07:15:29 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\banksettlement.php 289
+ERROR - 2019-01-10 07:15:29 --> Severity: Notice --> Undefined variable: rel C:\xampp\htdocs\ria\application\views\banksettlement.php 290
+ERROR - 2019-01-10 07:15:29 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\banksettlement.php 290
+ERROR - 2019-01-10 07:15:29 --> Severity: Notice --> Undefined variable: record C:\xampp\htdocs\ria\application\views\banksettlement.php 312
+ERROR - 2019-01-10 07:15:29 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\banksettlement.php 312
+ERROR - 2019-01-10 07:15:29 --> Severity: Notice --> Undefined variable: record C:\xampp\htdocs\ria\application\views\banksettlement.php 346
+ERROR - 2019-01-10 07:15:29 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\banksettlement.php 346
+ERROR - 2019-01-10 07:15:40 --> Severity: Notice --> Undefined variable: fdate C:\xampp\htdocs\ria\application\controllers\cashbook.php 1172
+ERROR - 2019-01-10 07:15:40 --> Severity: Notice --> Undefined variable: tdate C:\xampp\htdocs\ria\application\controllers\cashbook.php 1172
+ERROR - 2019-01-10 07:15:40 --> Severity: Notice --> Undefined variable: fa C:\xampp\htdocs\ria\application\controllers\cashbook.php 1172
+ERROR - 2019-01-10 07:15:40 --> Severity: Notice --> Undefined variable: aa C:\xampp\htdocs\ria\application\controllers\cashbook.php 1172
+ERROR - 2019-01-10 07:15:40 --> Severity: Notice --> Undefined variable: financialyear C:\xampp\htdocs\ria\application\views\bankstatement.php 2
+ERROR - 2019-01-10 07:15:40 --> Severity: Warning --> Invalid argument supplied for foreach() C:\xampp\htdocs\ria\application\views\bankstatement.php 2
+ERROR - 2019-01-10 07:15:40 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 85
+ERROR - 2019-01-10 07:15:40 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 85
+ERROR - 2019-01-10 07:15:40 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 86
+ERROR - 2019-01-10 07:15:40 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 86
+ERROR - 2019-01-10 07:15:40 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 87
+ERROR - 2019-01-10 07:15:41 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 87
+ERROR - 2019-01-10 07:15:41 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 137
+ERROR - 2019-01-10 07:15:41 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 137
+ERROR - 2019-01-10 07:15:41 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 138
+ERROR - 2019-01-10 07:15:41 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 138
+ERROR - 2019-01-10 07:15:41 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 139
+ERROR - 2019-01-10 07:15:41 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 139
+ERROR - 2019-01-10 07:15:52 --> Severity: Notice --> Undefined variable: financialyear C:\xampp\htdocs\ria\application\views\bankdebit.php 2
+ERROR - 2019-01-10 07:15:52 --> Severity: Warning --> Invalid argument supplied for foreach() C:\xampp\htdocs\ria\application\views\bankdebit.php 2
+ERROR - 2019-01-10 07:15:58 --> Severity: Notice --> Undefined variable: financialyear C:\xampp\htdocs\ria\application\views\bankdebit.php 2
+ERROR - 2019-01-10 07:15:58 --> Severity: Warning --> Invalid argument supplied for foreach() C:\xampp\htdocs\ria\application\views\bankdebit.php 2
+ERROR - 2019-01-10 07:15:58 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankdebit.php 177
+ERROR - 2019-01-10 07:15:58 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\ria\application\views\bankdebit.php 179
+ERROR - 2019-01-10 07:15:58 --> Severity: Notice --> Undefined property: stdClass::$IGRItemNo C:\xampp\htdocs\ria\application\views\bankdebit.php 193
+ERROR - 2019-01-10 07:15:58 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankdebit.php 177
+ERROR - 2019-01-10 07:15:58 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\ria\application\views\bankdebit.php 179
+ERROR - 2019-01-10 07:15:58 --> Severity: Notice --> Undefined property: stdClass::$IGRItemNo C:\xampp\htdocs\ria\application\views\bankdebit.php 193
+ERROR - 2019-01-10 07:15:59 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankdebit.php 177
+ERROR - 2019-01-10 07:15:59 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\ria\application\views\bankdebit.php 179
+ERROR - 2019-01-10 07:15:59 --> Severity: Notice --> Undefined property: stdClass::$IGRItemNo C:\xampp\htdocs\ria\application\views\bankdebit.php 193
+ERROR - 2019-01-10 07:15:59 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankdebit.php 177
+ERROR - 2019-01-10 07:15:59 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\ria\application\views\bankdebit.php 179
+ERROR - 2019-01-10 07:15:59 --> Severity: Notice --> Undefined property: stdClass::$IGRItemNo C:\xampp\htdocs\ria\application\views\bankdebit.php 193
+ERROR - 2019-01-10 07:15:59 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankdebit.php 177
+ERROR - 2019-01-10 07:15:59 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\ria\application\views\bankdebit.php 179
+ERROR - 2019-01-10 07:15:59 --> Severity: Notice --> Undefined property: stdClass::$IGRItemNo C:\xampp\htdocs\ria\application\views\bankdebit.php 193
+ERROR - 2019-01-10 07:15:59 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankdebit.php 177
+ERROR - 2019-01-10 07:15:59 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\ria\application\views\bankdebit.php 179
+ERROR - 2019-01-10 07:15:59 --> Severity: Notice --> Undefined property: stdClass::$IGRItemNo C:\xampp\htdocs\ria\application\views\bankdebit.php 193
+ERROR - 2019-01-10 07:15:59 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankdebit.php 177
+ERROR - 2019-01-10 07:15:59 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\ria\application\views\bankdebit.php 179
+ERROR - 2019-01-10 07:15:59 --> Severity: Notice --> Undefined property: stdClass::$IGRItemNo C:\xampp\htdocs\ria\application\views\bankdebit.php 193
+ERROR - 2019-01-10 07:15:59 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankdebit.php 177
+ERROR - 2019-01-10 07:15:59 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\ria\application\views\bankdebit.php 179
+ERROR - 2019-01-10 07:15:59 --> Severity: Notice --> Undefined property: stdClass::$IGRItemNo C:\xampp\htdocs\ria\application\views\bankdebit.php 193
+ERROR - 2019-01-10 07:15:59 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankdebit.php 177
+ERROR - 2019-01-10 07:15:59 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\ria\application\views\bankdebit.php 179
+ERROR - 2019-01-10 07:15:59 --> Severity: Notice --> Undefined property: stdClass::$IGRItemNo C:\xampp\htdocs\ria\application\views\bankdebit.php 193
+ERROR - 2019-01-10 07:15:59 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankdebit.php 177
+ERROR - 2019-01-10 07:16:00 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\ria\application\views\bankdebit.php 179
+ERROR - 2019-01-10 07:16:00 --> Severity: Notice --> Undefined property: stdClass::$IGRItemNo C:\xampp\htdocs\ria\application\views\bankdebit.php 193
+ERROR - 2019-01-10 07:16:00 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankdebit.php 177
+ERROR - 2019-01-10 07:16:00 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\ria\application\views\bankdebit.php 179
+ERROR - 2019-01-10 07:16:00 --> Severity: Notice --> Undefined property: stdClass::$IGRItemNo C:\xampp\htdocs\ria\application\views\bankdebit.php 193
+ERROR - 2019-01-10 07:16:00 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankdebit.php 177
+ERROR - 2019-01-10 07:16:00 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\ria\application\views\bankdebit.php 179
+ERROR - 2019-01-10 07:16:00 --> Severity: Notice --> Undefined property: stdClass::$IGRItemNo C:\xampp\htdocs\ria\application\views\bankdebit.php 193
+ERROR - 2019-01-10 07:16:00 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankdebit.php 177
+ERROR - 2019-01-10 07:16:00 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\ria\application\views\bankdebit.php 179
+ERROR - 2019-01-10 07:16:00 --> Severity: Notice --> Undefined property: stdClass::$IGRItemNo C:\xampp\htdocs\ria\application\views\bankdebit.php 193
+ERROR - 2019-01-10 07:16:00 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankdebit.php 177
+ERROR - 2019-01-10 07:16:00 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\ria\application\views\bankdebit.php 179
+ERROR - 2019-01-10 07:16:00 --> Severity: Notice --> Undefined property: stdClass::$IGRItemNo C:\xampp\htdocs\ria\application\views\bankdebit.php 193
+ERROR - 2019-01-10 07:16:00 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankdebit.php 177
+ERROR - 2019-01-10 07:16:00 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\ria\application\views\bankdebit.php 179
+ERROR - 2019-01-10 07:16:00 --> Severity: Notice --> Undefined property: stdClass::$IGRItemNo C:\xampp\htdocs\ria\application\views\bankdebit.php 193
+ERROR - 2019-01-10 07:16:00 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankdebit.php 177
+ERROR - 2019-01-10 07:16:00 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\ria\application\views\bankdebit.php 179
+ERROR - 2019-01-10 07:16:00 --> Severity: Notice --> Undefined property: stdClass::$IGRItemNo C:\xampp\htdocs\ria\application\views\bankdebit.php 193
+ERROR - 2019-01-10 07:16:33 --> Severity: Notice --> Undefined variable: balancetocleared C:\xampp\htdocs\ria\application\controllers\cashbook.php 1375
+ERROR - 2019-01-10 07:16:33 --> Severity: Notice --> Undefined variable: clearedblnce C:\xampp\htdocs\ria\application\controllers\cashbook.php 1384
+ERROR - 2019-01-10 07:16:33 --> Severity: Notice --> Undefined variable: balancetocleared C:\xampp\htdocs\ria\application\controllers\cashbook.php 1384
+ERROR - 2019-01-10 07:16:34 --> Severity: Notice --> Undefined variable: data C:\xampp\htdocs\ria\application\controllers\cashbook.php 1456
+ERROR - 2019-01-10 07:16:34 --> Severity: Notice --> Undefined variable: data C:\xampp\htdocs\ria\application\controllers\cashbook.php 1456
+ERROR - 2019-01-10 07:16:34 --> Severity: Notice --> Undefined variable: financialyear C:\xampp\htdocs\ria\application\views\bankstatement.php 2
+ERROR - 2019-01-10 07:16:34 --> Severity: Warning --> Invalid argument supplied for foreach() C:\xampp\htdocs\ria\application\views\bankstatement.php 2
+ERROR - 2019-01-10 07:16:34 --> Severity: Notice --> Undefined variable: bankreport C:\xampp\htdocs\ria\application\views\bankstatement.php 8
+ERROR - 2019-01-10 07:16:34 --> Severity: Notice --> Undefined variable: financialyear C:\xampp\htdocs\ria\application\views\bankstatement.php 2
+ERROR - 2019-01-10 07:16:34 --> Severity: Warning --> Invalid argument supplied for foreach() C:\xampp\htdocs\ria\application\views\bankstatement.php 8
+ERROR - 2019-01-10 07:16:34 --> Severity: Warning --> Invalid argument supplied for foreach() C:\xampp\htdocs\ria\application\views\bankstatement.php 2
+ERROR - 2019-01-10 07:16:34 --> Severity: Notice --> Undefined variable: bankreport C:\xampp\htdocs\ria\application\views\bankstatement.php 8
+ERROR - 2019-01-10 07:16:34 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 85
+ERROR - 2019-01-10 07:16:34 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 85
+ERROR - 2019-01-10 07:16:34 --> Severity: Warning --> Invalid argument supplied for foreach() C:\xampp\htdocs\ria\application\views\bankstatement.php 8
+ERROR - 2019-01-10 07:16:34 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 85
+ERROR - 2019-01-10 07:16:34 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 86
+ERROR - 2019-01-10 07:16:34 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 85
+ERROR - 2019-01-10 07:16:34 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 86
+ERROR - 2019-01-10 07:16:34 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 87
+ERROR - 2019-01-10 07:16:34 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 86
+ERROR - 2019-01-10 07:16:34 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 86
+ERROR - 2019-01-10 07:16:34 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 87
+ERROR - 2019-01-10 07:16:34 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 87
+ERROR - 2019-01-10 07:16:34 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 137
+ERROR - 2019-01-10 07:16:34 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 87
+ERROR - 2019-01-10 07:16:34 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 137
+ERROR - 2019-01-10 07:16:34 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 137
+ERROR - 2019-01-10 07:16:34 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 138
+ERROR - 2019-01-10 07:16:34 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 138
+ERROR - 2019-01-10 07:16:34 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 137
+ERROR - 2019-01-10 07:16:34 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 138
+ERROR - 2019-01-10 07:16:34 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 139
+ERROR - 2019-01-10 07:16:34 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 139
+ERROR - 2019-01-10 07:16:34 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 138
+ERROR - 2019-01-10 07:16:34 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 139
+ERROR - 2019-01-10 07:16:34 --> Severity: Notice --> Undefined variable: finyear C:\xampp\htdocs\ria\application\views\bankstatement.php 197
+ERROR - 2019-01-10 07:16:34 --> Severity: Warning --> Invalid argument supplied for foreach() C:\xampp\htdocs\ria\application\views\bankstatement.php 197
+ERROR - 2019-01-10 07:16:34 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 139
+ERROR - 2019-01-10 07:16:34 --> Severity: Notice --> Undefined variable: finyear C:\xampp\htdocs\ria\application\views\bankstatement.php 197
+ERROR - 2019-01-10 07:16:34 --> Severity: Notice --> Undefined variable: Bankname C:\xampp\htdocs\ria\application\views\bankstatement.php 235
+ERROR - 2019-01-10 07:16:34 --> Severity: Warning --> Invalid argument supplied for foreach() C:\xampp\htdocs\ria\application\views\bankstatement.php 197
+ERROR - 2019-01-10 07:16:34 --> Severity: Notice --> Undefined variable: Bankname C:\xampp\htdocs\ria\application\views\bankstatement.php 235
+ERROR - 2019-01-10 07:16:35 --> Severity: Notice --> Undefined variable: fdate C:\xampp\htdocs\ria\application\controllers\cashbook.php 1172
+ERROR - 2019-01-10 07:16:35 --> Severity: Notice --> Undefined variable: tdate C:\xampp\htdocs\ria\application\controllers\cashbook.php 1172
+ERROR - 2019-01-10 07:16:35 --> Severity: Notice --> Undefined variable: fa C:\xampp\htdocs\ria\application\controllers\cashbook.php 1172
+ERROR - 2019-01-10 07:16:36 --> Severity: Notice --> Undefined variable: fdate C:\xampp\htdocs\ria\application\controllers\cashbook.php 1172
+ERROR - 2019-01-10 07:16:36 --> Severity: Notice --> Undefined variable: aa C:\xampp\htdocs\ria\application\controllers\cashbook.php 1172
+ERROR - 2019-01-10 07:16:36 --> Severity: Notice --> Undefined variable: tdate C:\xampp\htdocs\ria\application\controllers\cashbook.php 1172
+ERROR - 2019-01-10 07:16:36 --> Severity: Notice --> Undefined variable: fa C:\xampp\htdocs\ria\application\controllers\cashbook.php 1172
+ERROR - 2019-01-10 07:16:36 --> Severity: Notice --> Undefined variable: aa C:\xampp\htdocs\ria\application\controllers\cashbook.php 1172
+ERROR - 2019-01-10 07:16:36 --> Severity: Notice --> Undefined variable: financialyear C:\xampp\htdocs\ria\application\views\bankstatement.php 2
+ERROR - 2019-01-10 07:16:36 --> Severity: Warning --> Invalid argument supplied for foreach() C:\xampp\htdocs\ria\application\views\bankstatement.php 2
+ERROR - 2019-01-10 07:16:36 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 85
+ERROR - 2019-01-10 07:16:36 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 85
+ERROR - 2019-01-10 07:16:36 --> Severity: Notice --> Undefined variable: financialyear C:\xampp\htdocs\ria\application\views\bankstatement.php 2
+ERROR - 2019-01-10 07:16:36 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 86
+ERROR - 2019-01-10 07:16:36 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 86
+ERROR - 2019-01-10 07:16:36 --> Severity: Warning --> Invalid argument supplied for foreach() C:\xampp\htdocs\ria\application\views\bankstatement.php 2
+ERROR - 2019-01-10 07:16:36 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 85
+ERROR - 2019-01-10 07:16:36 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 87
+ERROR - 2019-01-10 07:16:36 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 85
+ERROR - 2019-01-10 07:16:36 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 87
+ERROR - 2019-01-10 07:16:36 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 137
+ERROR - 2019-01-10 07:16:36 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 86
+ERROR - 2019-01-10 07:16:36 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 86
+ERROR - 2019-01-10 07:16:36 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 137
+ERROR - 2019-01-10 07:16:36 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 138
+ERROR - 2019-01-10 07:16:36 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 87
+ERROR - 2019-01-10 07:16:36 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 87
+ERROR - 2019-01-10 07:16:36 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 138
+ERROR - 2019-01-10 07:16:36 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 137
+ERROR - 2019-01-10 07:16:36 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 139
+ERROR - 2019-01-10 07:16:36 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 139
+ERROR - 2019-01-10 07:16:36 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 137
+ERROR - 2019-01-10 07:16:36 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 138
+ERROR - 2019-01-10 07:16:36 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 138
+ERROR - 2019-01-10 07:16:36 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 139
+ERROR - 2019-01-10 07:16:37 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 139
+ERROR - 2019-01-10 07:16:45 --> Severity: Notice --> Undefined variable: financialyear C:\xampp\htdocs\ria\application\views\banksettlement.php 11
+ERROR - 2019-01-10 07:16:45 --> Severity: Warning --> Invalid argument supplied for foreach() C:\xampp\htdocs\ria\application\views\banksettlement.php 11
+ERROR - 2019-01-10 07:16:45 --> Severity: Notice --> Undefined variable: t C:\xampp\htdocs\ria\application\views\banksettlement.php 289
+ERROR - 2019-01-10 07:16:45 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\banksettlement.php 289
+ERROR - 2019-01-10 07:16:45 --> Severity: Notice --> Undefined variable: t C:\xampp\htdocs\ria\application\views\banksettlement.php 289
+ERROR - 2019-01-10 07:16:45 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\banksettlement.php 289
+ERROR - 2019-01-10 07:16:45 --> Severity: Notice --> Undefined variable: rel C:\xampp\htdocs\ria\application\views\banksettlement.php 290
+ERROR - 2019-01-10 07:16:45 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\banksettlement.php 290
+ERROR - 2019-01-10 07:16:45 --> Severity: Notice --> Undefined variable: record C:\xampp\htdocs\ria\application\views\banksettlement.php 346
+ERROR - 2019-01-10 07:16:45 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\banksettlement.php 346
+ERROR - 2019-01-10 07:16:45 --> Severity: Notice --> Undefined variable: t C:\xampp\htdocs\ria\application\views\banksettlement.php 289
+ERROR - 2019-01-10 07:16:45 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\banksettlement.php 289
+ERROR - 2019-01-10 07:16:45 --> Severity: Notice --> Undefined variable: t C:\xampp\htdocs\ria\application\views\banksettlement.php 289
+ERROR - 2019-01-10 07:16:45 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\banksettlement.php 289
+ERROR - 2019-01-10 07:16:45 --> Severity: Notice --> Undefined variable: rel C:\xampp\htdocs\ria\application\views\banksettlement.php 290
+ERROR - 2019-01-10 07:16:45 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\banksettlement.php 290
+ERROR - 2019-01-10 07:16:45 --> Severity: Notice --> Undefined variable: record C:\xampp\htdocs\ria\application\views\banksettlement.php 312
+ERROR - 2019-01-10 07:16:45 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\banksettlement.php 312
+ERROR - 2019-01-10 07:16:45 --> Severity: Notice --> Undefined variable: record C:\xampp\htdocs\ria\application\views\banksettlement.php 346
+ERROR - 2019-01-10 07:16:45 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\banksettlement.php 346
+ERROR - 2019-01-10 07:16:46 --> Severity: Notice --> Undefined variable: t C:\xampp\htdocs\ria\application\views\banksettlement.php 289
+ERROR - 2019-01-10 07:16:46 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\banksettlement.php 289
+ERROR - 2019-01-10 07:16:46 --> Severity: Notice --> Undefined variable: t C:\xampp\htdocs\ria\application\views\banksettlement.php 289
+ERROR - 2019-01-10 07:16:46 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\banksettlement.php 289
+ERROR - 2019-01-10 07:16:46 --> Severity: Notice --> Undefined variable: rel C:\xampp\htdocs\ria\application\views\banksettlement.php 290
+ERROR - 2019-01-10 07:16:46 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\banksettlement.php 290
+ERROR - 2019-01-10 07:16:46 --> Severity: Notice --> Undefined variable: record C:\xampp\htdocs\ria\application\views\banksettlement.php 312
+ERROR - 2019-01-10 07:16:46 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\banksettlement.php 312
+ERROR - 2019-01-10 07:16:46 --> Severity: Notice --> Undefined variable: record C:\xampp\htdocs\ria\application\views\banksettlement.php 346
+ERROR - 2019-01-10 07:16:46 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\banksettlement.php 346
+ERROR - 2019-01-10 07:16:46 --> Severity: Notice --> Undefined variable: t C:\xampp\htdocs\ria\application\views\banksettlement.php 289
+ERROR - 2019-01-10 07:16:46 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\banksettlement.php 289
+ERROR - 2019-01-10 07:16:46 --> Severity: Notice --> Undefined variable: t C:\xampp\htdocs\ria\application\views\banksettlement.php 289
+ERROR - 2019-01-10 07:16:46 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\banksettlement.php 289
+ERROR - 2019-01-10 07:16:46 --> Severity: Notice --> Undefined variable: rel C:\xampp\htdocs\ria\application\views\banksettlement.php 290
+ERROR - 2019-01-10 07:16:46 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\banksettlement.php 290
+ERROR - 2019-01-10 07:16:46 --> Severity: Notice --> Undefined variable: record C:\xampp\htdocs\ria\application\views\banksettlement.php 346
+ERROR - 2019-01-10 07:16:46 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\banksettlement.php 346
+ERROR - 2019-01-10 07:16:46 --> Severity: Notice --> Undefined variable: t C:\xampp\htdocs\ria\application\views\banksettlement.php 289
+ERROR - 2019-01-10 07:16:46 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\banksettlement.php 289
+ERROR - 2019-01-10 07:16:46 --> Severity: Notice --> Undefined variable: t C:\xampp\htdocs\ria\application\views\banksettlement.php 289
+ERROR - 2019-01-10 07:16:46 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\banksettlement.php 289
+ERROR - 2019-01-10 07:16:46 --> Severity: Notice --> Undefined variable: rel C:\xampp\htdocs\ria\application\views\banksettlement.php 290
+ERROR - 2019-01-10 07:16:46 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\banksettlement.php 290
+ERROR - 2019-01-10 07:16:47 --> Severity: Notice --> Undefined variable: record C:\xampp\htdocs\ria\application\views\banksettlement.php 312
+ERROR - 2019-01-10 07:16:47 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\banksettlement.php 312
+ERROR - 2019-01-10 07:16:47 --> Severity: Notice --> Undefined variable: record C:\xampp\htdocs\ria\application\views\banksettlement.php 346
+ERROR - 2019-01-10 07:16:47 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\banksettlement.php 346
+ERROR - 2019-01-10 07:18:42 --> Severity: Notice --> Undefined variable: fdate C:\xampp\htdocs\ria\application\controllers\cashbook.php 1172
+ERROR - 2019-01-10 07:18:42 --> Severity: Notice --> Undefined variable: tdate C:\xampp\htdocs\ria\application\controllers\cashbook.php 1172
+ERROR - 2019-01-10 07:18:42 --> Severity: Notice --> Undefined variable: fa C:\xampp\htdocs\ria\application\controllers\cashbook.php 1172
+ERROR - 2019-01-10 07:18:42 --> Severity: Notice --> Undefined variable: aa C:\xampp\htdocs\ria\application\controllers\cashbook.php 1172
+ERROR - 2019-01-10 07:18:42 --> Severity: Notice --> Undefined variable: financialyear C:\xampp\htdocs\ria\application\views\bankstatement.php 2
+ERROR - 2019-01-10 07:18:42 --> Severity: Warning --> Invalid argument supplied for foreach() C:\xampp\htdocs\ria\application\views\bankstatement.php 2
+ERROR - 2019-01-10 07:18:42 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 85
+ERROR - 2019-01-10 07:18:42 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 85
+ERROR - 2019-01-10 07:18:42 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 86
+ERROR - 2019-01-10 07:18:42 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 86
+ERROR - 2019-01-10 07:18:42 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 87
+ERROR - 2019-01-10 07:18:42 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 87
+ERROR - 2019-01-10 07:18:42 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 137
+ERROR - 2019-01-10 07:18:42 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 137
+ERROR - 2019-01-10 07:18:42 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 138
+ERROR - 2019-01-10 07:18:43 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 138
+ERROR - 2019-01-10 07:18:43 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 139
+ERROR - 2019-01-10 07:18:43 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 139
+ERROR - 2019-01-10 07:18:59 --> Severity: Notice --> Undefined variable: financialyear C:\xampp\htdocs\ria\application\views\bankdebit.php 2
+ERROR - 2019-01-10 07:18:59 --> Severity: Warning --> Invalid argument supplied for foreach() C:\xampp\htdocs\ria\application\views\bankdebit.php 2
+ERROR - 2019-01-10 07:19:06 --> Severity: Notice --> Undefined variable: financialyear C:\xampp\htdocs\ria\application\views\bankdebit.php 2
+ERROR - 2019-01-10 07:19:06 --> Severity: Warning --> Invalid argument supplied for foreach() C:\xampp\htdocs\ria\application\views\bankdebit.php 2
+ERROR - 2019-01-10 07:19:06 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankdebit.php 177
+ERROR - 2019-01-10 07:19:06 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\ria\application\views\bankdebit.php 179
+ERROR - 2019-01-10 07:19:06 --> Severity: Notice --> Undefined property: stdClass::$IGRItemNo C:\xampp\htdocs\ria\application\views\bankdebit.php 193
+ERROR - 2019-01-10 07:19:06 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankdebit.php 177
+ERROR - 2019-01-10 07:19:06 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\ria\application\views\bankdebit.php 179
+ERROR - 2019-01-10 07:19:06 --> Severity: Notice --> Undefined property: stdClass::$IGRItemNo C:\xampp\htdocs\ria\application\views\bankdebit.php 193
+ERROR - 2019-01-10 07:19:06 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankdebit.php 177
+ERROR - 2019-01-10 07:19:06 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\ria\application\views\bankdebit.php 179
+ERROR - 2019-01-10 07:19:06 --> Severity: Notice --> Undefined property: stdClass::$IGRItemNo C:\xampp\htdocs\ria\application\views\bankdebit.php 193
+ERROR - 2019-01-10 07:19:07 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankdebit.php 177
+ERROR - 2019-01-10 07:19:07 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\ria\application\views\bankdebit.php 179
+ERROR - 2019-01-10 07:19:07 --> Severity: Notice --> Undefined property: stdClass::$IGRItemNo C:\xampp\htdocs\ria\application\views\bankdebit.php 193
+ERROR - 2019-01-10 07:19:07 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankdebit.php 177
+ERROR - 2019-01-10 07:19:07 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\ria\application\views\bankdebit.php 179
+ERROR - 2019-01-10 07:19:07 --> Severity: Notice --> Undefined property: stdClass::$IGRItemNo C:\xampp\htdocs\ria\application\views\bankdebit.php 193
+ERROR - 2019-01-10 07:19:07 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankdebit.php 177
+ERROR - 2019-01-10 07:19:07 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\ria\application\views\bankdebit.php 179
+ERROR - 2019-01-10 07:19:07 --> Severity: Notice --> Undefined property: stdClass::$IGRItemNo C:\xampp\htdocs\ria\application\views\bankdebit.php 193
+ERROR - 2019-01-10 07:19:07 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankdebit.php 177
+ERROR - 2019-01-10 07:19:07 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\ria\application\views\bankdebit.php 179
+ERROR - 2019-01-10 07:19:07 --> Severity: Notice --> Undefined property: stdClass::$IGRItemNo C:\xampp\htdocs\ria\application\views\bankdebit.php 193
+ERROR - 2019-01-10 07:19:07 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankdebit.php 177
+ERROR - 2019-01-10 07:19:07 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\ria\application\views\bankdebit.php 179
+ERROR - 2019-01-10 07:19:07 --> Severity: Notice --> Undefined property: stdClass::$IGRItemNo C:\xampp\htdocs\ria\application\views\bankdebit.php 193
+ERROR - 2019-01-10 07:19:07 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankdebit.php 177
+ERROR - 2019-01-10 07:19:07 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\ria\application\views\bankdebit.php 179
+ERROR - 2019-01-10 07:19:07 --> Severity: Notice --> Undefined property: stdClass::$IGRItemNo C:\xampp\htdocs\ria\application\views\bankdebit.php 193
+ERROR - 2019-01-10 07:19:07 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankdebit.php 177
+ERROR - 2019-01-10 07:19:07 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\ria\application\views\bankdebit.php 179
+ERROR - 2019-01-10 07:19:07 --> Severity: Notice --> Undefined property: stdClass::$IGRItemNo C:\xampp\htdocs\ria\application\views\bankdebit.php 193
+ERROR - 2019-01-10 07:19:07 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankdebit.php 177
+ERROR - 2019-01-10 07:19:07 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\ria\application\views\bankdebit.php 179
+ERROR - 2019-01-10 07:19:07 --> Severity: Notice --> Undefined property: stdClass::$IGRItemNo C:\xampp\htdocs\ria\application\views\bankdebit.php 193
+ERROR - 2019-01-10 07:19:08 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankdebit.php 177
+ERROR - 2019-01-10 07:19:08 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\ria\application\views\bankdebit.php 179
+ERROR - 2019-01-10 07:19:08 --> Severity: Notice --> Undefined property: stdClass::$IGRItemNo C:\xampp\htdocs\ria\application\views\bankdebit.php 193
+ERROR - 2019-01-10 07:19:08 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankdebit.php 177
+ERROR - 2019-01-10 07:19:08 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\ria\application\views\bankdebit.php 179
+ERROR - 2019-01-10 07:19:08 --> Severity: Notice --> Undefined property: stdClass::$IGRItemNo C:\xampp\htdocs\ria\application\views\bankdebit.php 193
+ERROR - 2019-01-10 07:19:08 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankdebit.php 177
+ERROR - 2019-01-10 07:19:08 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\ria\application\views\bankdebit.php 179
+ERROR - 2019-01-10 07:19:08 --> Severity: Notice --> Undefined property: stdClass::$IGRItemNo C:\xampp\htdocs\ria\application\views\bankdebit.php 193
+ERROR - 2019-01-10 07:19:08 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankdebit.php 177
+ERROR - 2019-01-10 07:19:08 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\ria\application\views\bankdebit.php 179
+ERROR - 2019-01-10 07:19:08 --> Severity: Notice --> Undefined property: stdClass::$IGRItemNo C:\xampp\htdocs\ria\application\views\bankdebit.php 193
+ERROR - 2019-01-10 07:19:08 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankdebit.php 177
+ERROR - 2019-01-10 07:19:08 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\ria\application\views\bankdebit.php 179
+ERROR - 2019-01-10 07:19:08 --> Severity: Notice --> Undefined property: stdClass::$IGRItemNo C:\xampp\htdocs\ria\application\views\bankdebit.php 193
+ERROR - 2019-01-10 07:19:29 --> Severity: Notice --> Undefined variable: data C:\xampp\htdocs\ria\application\controllers\cashbook.php 1456
+ERROR - 2019-01-10 07:19:29 --> Severity: Notice --> Undefined variable: financialyear C:\xampp\htdocs\ria\application\views\bankstatement.php 2
+ERROR - 2019-01-10 07:19:29 --> Severity: Warning --> Invalid argument supplied for foreach() C:\xampp\htdocs\ria\application\views\bankstatement.php 2
+ERROR - 2019-01-10 07:19:29 --> Severity: Notice --> Undefined variable: bankreport C:\xampp\htdocs\ria\application\views\bankstatement.php 8
+ERROR - 2019-01-10 07:19:29 --> Severity: Warning --> Invalid argument supplied for foreach() C:\xampp\htdocs\ria\application\views\bankstatement.php 8
+ERROR - 2019-01-10 07:19:29 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 85
+ERROR - 2019-01-10 07:19:29 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 85
+ERROR - 2019-01-10 07:19:29 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 86
+ERROR - 2019-01-10 07:19:29 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 86
+ERROR - 2019-01-10 07:19:29 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 87
+ERROR - 2019-01-10 07:19:29 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 87
+ERROR - 2019-01-10 07:19:29 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 137
+ERROR - 2019-01-10 07:19:29 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 137
+ERROR - 2019-01-10 07:19:29 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 138
+ERROR - 2019-01-10 07:19:29 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 138
+ERROR - 2019-01-10 07:19:29 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 139
+ERROR - 2019-01-10 07:19:29 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 139
+ERROR - 2019-01-10 07:19:29 --> Severity: Notice --> Undefined variable: finyear C:\xampp\htdocs\ria\application\views\bankstatement.php 197
+ERROR - 2019-01-10 07:19:29 --> Severity: Warning --> Invalid argument supplied for foreach() C:\xampp\htdocs\ria\application\views\bankstatement.php 197
+ERROR - 2019-01-10 07:19:30 --> Severity: Notice --> Undefined variable: Bankname C:\xampp\htdocs\ria\application\views\bankstatement.php 235
+ERROR - 2019-01-10 07:19:30 --> Severity: Notice --> Undefined variable: fdate C:\xampp\htdocs\ria\application\controllers\cashbook.php 1172
+ERROR - 2019-01-10 07:19:30 --> Severity: Notice --> Undefined variable: tdate C:\xampp\htdocs\ria\application\controllers\cashbook.php 1172
+ERROR - 2019-01-10 07:19:31 --> Severity: Notice --> Undefined variable: fa C:\xampp\htdocs\ria\application\controllers\cashbook.php 1172
+ERROR - 2019-01-10 07:19:31 --> Severity: Notice --> Undefined variable: aa C:\xampp\htdocs\ria\application\controllers\cashbook.php 1172
+ERROR - 2019-01-10 07:19:31 --> Severity: Notice --> Undefined variable: financialyear C:\xampp\htdocs\ria\application\views\bankstatement.php 2
+ERROR - 2019-01-10 07:19:31 --> Severity: Warning --> Invalid argument supplied for foreach() C:\xampp\htdocs\ria\application\views\bankstatement.php 2
+ERROR - 2019-01-10 07:19:31 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 85
+ERROR - 2019-01-10 07:19:31 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 85
+ERROR - 2019-01-10 07:19:31 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 86
+ERROR - 2019-01-10 07:19:31 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 86
+ERROR - 2019-01-10 07:19:31 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 87
+ERROR - 2019-01-10 07:19:31 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 87
+ERROR - 2019-01-10 07:19:31 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 137
+ERROR - 2019-01-10 07:19:31 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 137
+ERROR - 2019-01-10 07:19:31 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 138
+ERROR - 2019-01-10 07:19:31 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 138
+ERROR - 2019-01-10 07:19:31 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 139
+ERROR - 2019-01-10 07:19:31 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 139
+ERROR - 2019-01-10 07:19:40 --> Severity: Notice --> Undefined variable: financialyear C:\xampp\htdocs\ria\application\views\banksettlement.php 11
+ERROR - 2019-01-10 07:19:40 --> Severity: Warning --> Invalid argument supplied for foreach() C:\xampp\htdocs\ria\application\views\banksettlement.php 11
+ERROR - 2019-01-10 07:19:40 --> Severity: Notice --> Undefined variable: t C:\xampp\htdocs\ria\application\views\banksettlement.php 289
+ERROR - 2019-01-10 07:19:40 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\banksettlement.php 289
+ERROR - 2019-01-10 07:19:40 --> Severity: Notice --> Undefined variable: t C:\xampp\htdocs\ria\application\views\banksettlement.php 289
+ERROR - 2019-01-10 07:19:40 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\banksettlement.php 289
+ERROR - 2019-01-10 07:19:40 --> Severity: Notice --> Undefined variable: rel C:\xampp\htdocs\ria\application\views\banksettlement.php 290
+ERROR - 2019-01-10 07:19:40 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\banksettlement.php 290
+ERROR - 2019-01-10 07:19:40 --> Severity: Notice --> Undefined variable: record C:\xampp\htdocs\ria\application\views\banksettlement.php 346
+ERROR - 2019-01-10 07:19:40 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\banksettlement.php 346
+ERROR - 2019-01-10 07:20:31 --> Severity: Notice --> Undefined variable: fdate C:\xampp\htdocs\ria\application\controllers\cashbook.php 1172
+ERROR - 2019-01-10 07:20:31 --> Severity: Notice --> Undefined variable: tdate C:\xampp\htdocs\ria\application\controllers\cashbook.php 1172
+ERROR - 2019-01-10 07:20:31 --> Severity: Notice --> Undefined variable: fa C:\xampp\htdocs\ria\application\controllers\cashbook.php 1172
+ERROR - 2019-01-10 07:20:31 --> Severity: Notice --> Undefined variable: aa C:\xampp\htdocs\ria\application\controllers\cashbook.php 1172
+ERROR - 2019-01-10 07:20:31 --> Severity: Notice --> Undefined variable: financialyear C:\xampp\htdocs\ria\application\views\bankstatement.php 2
+ERROR - 2019-01-10 07:20:31 --> Severity: Warning --> Invalid argument supplied for foreach() C:\xampp\htdocs\ria\application\views\bankstatement.php 2
+ERROR - 2019-01-10 07:20:31 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 85
+ERROR - 2019-01-10 07:20:31 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 85
+ERROR - 2019-01-10 07:20:32 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 86
+ERROR - 2019-01-10 07:20:32 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 86
+ERROR - 2019-01-10 07:20:32 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 87
+ERROR - 2019-01-10 07:20:32 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 87
+ERROR - 2019-01-10 07:20:32 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 137
+ERROR - 2019-01-10 07:20:32 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 137
+ERROR - 2019-01-10 07:20:32 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 138
+ERROR - 2019-01-10 07:20:32 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 138
+ERROR - 2019-01-10 07:20:32 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 139
+ERROR - 2019-01-10 07:20:32 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 139
+ERROR - 2019-01-10 07:20:48 --> Severity: Notice --> Undefined variable: financialyear C:\xampp\htdocs\ria\application\views\bankinvoice.php 2
+ERROR - 2019-01-10 07:20:48 --> Severity: Warning --> Invalid argument supplied for foreach() C:\xampp\htdocs\ria\application\views\bankinvoice.php 2
+ERROR - 2019-01-10 07:20:48 --> Severity: Notice --> Undefined variable: cash C:\xampp\htdocs\ria\application\views\bankinvoice.php 80
+ERROR - 2019-01-10 07:20:48 --> Severity: Notice --> Undefined variable: bankid C:\xampp\htdocs\ria\application\views\bankinvoice.php 82
+ERROR - 2019-01-10 07:20:55 --> Severity: Notice --> Undefined variable: financialyear C:\xampp\htdocs\ria\application\views\bankinvoice.php 2
+ERROR - 2019-01-10 07:20:55 --> Severity: Warning --> Invalid argument supplied for foreach() C:\xampp\htdocs\ria\application\views\bankinvoice.php 2
+ERROR - 2019-01-10 07:20:55 --> Severity: Notice --> Undefined variable: cash C:\xampp\htdocs\ria\application\views\bankinvoice.php 80
+ERROR - 2019-01-10 07:20:55 --> Severity: Notice --> Undefined variable: bankid C:\xampp\htdocs\ria\application\views\bankinvoice.php 82
+ERROR - 2019-01-10 07:20:55 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 07:20:55 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 07:20:55 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 07:20:55 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 07:20:55 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 07:20:55 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 07:20:55 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 07:20:55 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 07:35:58 --> Severity: Notice --> Undefined variable: financialyear C:\xampp\htdocs\ria\application\views\bankinvoice.php 2
+ERROR - 2019-01-10 07:35:58 --> Severity: Warning --> Invalid argument supplied for foreach() C:\xampp\htdocs\ria\application\views\bankinvoice.php 2
+ERROR - 2019-01-10 07:35:58 --> Severity: Notice --> Undefined variable: cash C:\xampp\htdocs\ria\application\views\bankinvoice.php 80
+ERROR - 2019-01-10 07:35:58 --> Severity: Notice --> Undefined variable: bankid C:\xampp\htdocs\ria\application\views\bankinvoice.php 82
+ERROR - 2019-01-10 07:36:05 --> Severity: Notice --> Undefined variable: financialyear C:\xampp\htdocs\ria\application\views\bankinvoice.php 2
+ERROR - 2019-01-10 07:36:06 --> Severity: Warning --> Invalid argument supplied for foreach() C:\xampp\htdocs\ria\application\views\bankinvoice.php 2
+ERROR - 2019-01-10 07:36:06 --> Severity: Notice --> Undefined variable: cash C:\xampp\htdocs\ria\application\views\bankinvoice.php 80
+ERROR - 2019-01-10 07:36:06 --> Severity: Notice --> Undefined variable: bankid C:\xampp\htdocs\ria\application\views\bankinvoice.php 82
+ERROR - 2019-01-10 07:36:06 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 07:36:06 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 07:36:06 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 07:36:06 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 07:36:06 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 07:36:06 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 07:36:06 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 07:36:06 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 07:36:06 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 07:36:06 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 07:36:06 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 07:36:06 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 07:36:06 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 07:36:06 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 07:36:06 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 07:36:07 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 07:36:07 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 07:36:07 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 07:36:07 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 07:36:07 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 07:36:07 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 07:36:07 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 07:36:07 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 07:36:07 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 07:36:07 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 07:36:07 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 07:36:07 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 07:36:07 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 07:36:07 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 07:36:07 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 07:36:07 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 07:36:07 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 07:36:07 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 07:36:07 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 07:36:07 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 07:36:07 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 07:36:07 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 07:36:07 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 07:36:07 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 07:36:08 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 07:36:08 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 07:36:08 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 07:36:08 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 07:36:08 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 07:36:08 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 07:36:08 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 07:36:08 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 07:36:08 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 07:36:08 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 07:36:08 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 07:36:08 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 07:36:08 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 07:36:08 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 07:36:08 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 07:36:08 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 07:36:08 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 07:36:08 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 07:36:08 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 07:36:09 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 07:36:09 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 07:36:09 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 07:36:09 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 07:36:09 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 07:36:09 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 07:36:09 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 07:36:09 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 07:36:09 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 07:36:09 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 07:36:09 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 07:36:09 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 07:36:09 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 07:36:09 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 07:36:09 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 07:36:09 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 07:36:09 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 07:36:09 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 07:36:09 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 07:36:09 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 07:36:09 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 07:36:09 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 07:36:09 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 07:36:10 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 07:36:10 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 07:36:10 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 07:36:10 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 07:36:10 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 07:36:10 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 07:36:10 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 07:36:10 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 07:36:10 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 07:36:10 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 07:36:10 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 07:36:10 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 07:36:10 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 07:36:10 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 07:36:10 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 07:36:10 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 07:36:10 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 07:36:10 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 07:36:10 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 07:36:11 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 07:36:11 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 07:36:11 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 07:36:11 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 07:36:11 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 07:36:11 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 07:36:11 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 07:36:11 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 07:36:11 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 07:36:11 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 07:36:11 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 07:36:11 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 07:36:11 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 07:36:11 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 07:36:11 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 07:36:11 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 07:36:11 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 07:36:11 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 07:36:11 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 07:36:11 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 07:36:11 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 07:36:11 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 07:36:12 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 07:36:12 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 07:36:12 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 07:36:12 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 07:36:12 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 07:36:12 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 07:36:12 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 07:36:12 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 07:36:12 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 07:36:12 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 07:36:12 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 07:36:12 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 07:36:12 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 07:36:12 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 07:36:12 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 07:36:12 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 07:36:12 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 07:36:12 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 07:36:12 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 07:36:12 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 07:36:13 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 07:36:13 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 07:36:13 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 07:36:13 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 07:36:13 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 07:36:13 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 07:36:13 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 07:36:13 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 07:36:13 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 07:36:13 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 07:36:13 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 07:36:13 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 07:36:13 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 07:36:13 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 07:36:13 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 07:36:13 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 07:36:13 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 07:36:13 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 07:36:13 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 07:36:13 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 07:36:13 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 07:36:13 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 07:36:13 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 07:36:14 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 07:36:14 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 07:36:14 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 07:36:14 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 07:36:14 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 07:36:14 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 07:36:14 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 07:36:14 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 07:36:14 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 07:36:14 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 07:36:14 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 07:36:14 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 07:36:14 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 07:36:14 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 07:36:14 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 07:36:14 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 07:36:14 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 07:36:14 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 07:36:15 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 07:36:15 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 07:36:15 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 07:36:15 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 07:36:15 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 07:36:15 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 07:36:15 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 07:36:15 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 07:36:15 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 07:36:15 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 07:36:15 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 07:36:15 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 07:36:15 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 07:36:15 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 07:36:15 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 07:36:15 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 07:36:15 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 07:36:15 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 07:36:15 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 07:36:15 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 07:36:15 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 07:36:15 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 07:36:15 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 07:36:16 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 07:36:16 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 07:36:16 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 07:36:16 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 07:36:16 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 07:36:16 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 07:36:16 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 07:36:16 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 07:36:16 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 07:36:16 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 07:36:16 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 07:36:16 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 07:36:16 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 07:36:16 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 07:36:16 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 07:36:16 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 07:36:16 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 07:36:16 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 07:36:16 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 07:36:17 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 07:36:17 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 07:36:17 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 07:36:17 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 07:36:17 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 07:36:17 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 07:36:17 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 07:36:17 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 07:36:17 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 07:36:17 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 07:36:17 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 07:36:17 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 07:36:17 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 07:36:17 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 07:36:17 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 07:36:17 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 07:36:17 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 07:36:17 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 07:36:17 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 07:36:17 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 07:36:17 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 07:36:17 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 07:36:17 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 07:36:18 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 07:36:18 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 07:36:18 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 07:36:18 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 07:36:18 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 07:36:18 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 07:36:18 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 07:36:18 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 07:36:18 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 07:36:18 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 07:36:18 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 07:36:18 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 07:36:18 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 07:36:18 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 07:36:18 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 07:36:18 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 07:36:18 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 07:36:18 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 07:36:19 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 07:36:19 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 07:36:19 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 07:36:19 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 07:36:19 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 07:36:19 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 07:36:19 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 07:36:19 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 07:36:19 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 07:36:19 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 07:36:19 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 07:36:19 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 07:36:19 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 07:36:19 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 07:36:19 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 07:36:19 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 07:36:19 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 07:36:19 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 07:36:19 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 07:36:19 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 07:36:19 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 07:36:19 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 07:36:20 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 07:36:20 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 07:36:20 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 07:36:20 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 07:36:20 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 07:36:20 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 07:36:20 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 07:36:20 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 07:36:20 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 07:36:20 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 07:36:20 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 07:36:20 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 07:36:20 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 07:36:20 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 07:36:20 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 07:36:20 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 07:36:20 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 07:36:20 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 07:36:20 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 07:36:21 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 07:36:21 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 07:36:21 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 07:36:21 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 07:36:21 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 07:36:21 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 07:36:21 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 07:36:21 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 07:36:21 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 07:36:21 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 07:36:21 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 07:36:21 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 07:36:21 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 07:36:21 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 07:36:21 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 07:36:21 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 07:36:21 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 07:36:21 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 07:36:21 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 07:36:21 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 07:36:21 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 07:36:21 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 07:36:22 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 07:36:22 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 07:36:22 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 07:36:22 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 07:36:22 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 07:36:22 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 07:36:22 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 07:36:22 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 07:36:22 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 07:36:22 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 07:36:22 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 07:36:22 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 07:36:22 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 07:36:22 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 07:36:22 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 07:36:22 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 07:36:22 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 07:36:22 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 07:36:22 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 07:36:23 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 07:36:23 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 07:36:23 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 07:36:23 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 07:36:23 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 07:36:23 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 07:36:23 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 07:36:23 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 07:36:23 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 07:36:23 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 07:36:23 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 07:36:23 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 07:36:23 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 07:36:23 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 07:36:23 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 07:36:23 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 07:36:23 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 07:36:23 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 07:36:23 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 07:36:23 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 07:36:23 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 07:36:23 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 07:36:24 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 07:36:24 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 07:36:24 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 07:36:24 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 07:36:24 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 07:36:24 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 07:36:24 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 07:36:24 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 07:36:24 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 07:36:24 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 07:36:24 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 07:36:24 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 07:36:24 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 07:36:24 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 07:36:24 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 07:36:24 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 07:36:24 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 07:36:24 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 07:36:25 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 07:36:25 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 07:36:25 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 07:36:25 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 07:36:25 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 07:36:25 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 07:36:25 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 07:36:25 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 07:36:25 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 07:36:25 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 07:36:25 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 07:36:25 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 07:36:25 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 07:36:25 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 07:36:25 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 07:36:25 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 07:36:25 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 07:36:25 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 07:36:25 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 07:36:25 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 07:36:25 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 07:36:25 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 07:36:26 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 07:36:26 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 07:36:26 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 07:36:26 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 07:36:26 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 07:36:26 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 07:36:26 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 07:36:26 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 07:36:26 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 07:36:26 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 07:36:26 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 07:36:26 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 07:36:26 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 07:36:26 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 07:36:26 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 07:36:26 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 07:36:26 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 07:36:26 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 07:36:27 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 07:36:27 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 07:36:27 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 07:36:27 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 07:36:27 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 07:36:27 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 07:36:27 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 07:36:27 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 07:36:27 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 07:36:27 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 07:36:27 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 07:36:27 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 07:36:27 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 07:36:27 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 07:36:27 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 07:36:27 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 07:36:27 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 07:36:27 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 07:36:27 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 07:36:27 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 07:36:27 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 07:36:28 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 07:36:28 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 07:36:28 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 07:36:28 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 07:36:28 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 07:36:28 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 07:36:28 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 07:36:28 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 07:36:28 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 07:36:28 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 07:36:28 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 07:36:28 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 07:36:28 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 07:36:28 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 07:36:28 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 07:36:28 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 07:36:28 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 07:36:28 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 07:36:29 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 07:36:29 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 07:36:29 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 07:36:29 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 07:36:29 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 07:36:29 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 07:36:29 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 07:36:29 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 07:36:29 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 07:36:29 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 07:36:29 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 07:36:29 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 07:36:29 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 07:36:29 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 07:36:29 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 07:36:29 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 07:36:29 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 07:36:29 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 07:36:29 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 07:36:29 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 07:36:29 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 07:36:29 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 07:36:30 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 07:36:30 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 07:36:30 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 07:36:30 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 07:36:30 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 07:36:30 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 07:36:30 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 07:36:30 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 07:36:30 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 07:36:30 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 07:36:30 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 07:36:30 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 07:36:30 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 07:36:30 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 07:36:30 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 07:36:30 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 07:36:30 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 07:36:30 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 07:36:31 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 07:36:31 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 07:36:31 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 07:36:31 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 07:36:31 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 07:36:31 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 07:36:31 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 07:36:31 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 07:36:31 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 07:36:31 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 07:36:31 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 07:36:31 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 07:36:31 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 07:36:31 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 07:36:31 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 07:36:31 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 07:36:31 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 07:36:31 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 07:36:31 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 07:36:32 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 07:36:32 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 07:36:32 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 07:36:32 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 07:36:32 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 07:36:32 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 07:36:32 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 07:36:32 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 07:36:32 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 07:36:32 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 07:36:32 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 07:36:32 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 07:36:32 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 07:36:32 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 07:36:32 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 07:36:32 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 07:36:33 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 07:36:33 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 07:36:33 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 07:36:33 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 07:36:33 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 07:36:33 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 07:36:33 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 07:36:33 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 07:36:33 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 07:36:33 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 07:36:33 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 07:36:33 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 07:36:33 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 07:36:33 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 07:36:33 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 07:36:33 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 07:36:33 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 07:36:33 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 07:36:33 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 07:36:33 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 07:36:33 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 07:36:33 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 07:36:34 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 07:36:34 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 07:36:34 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 07:36:34 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 07:36:34 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 07:36:34 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 07:36:34 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 07:36:34 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 07:36:34 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 07:36:34 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 07:36:34 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 07:36:34 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 07:36:34 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 07:36:34 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 07:36:35 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 07:36:35 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 07:36:35 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 07:36:35 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 07:36:35 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 07:36:35 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 07:36:35 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 07:36:35 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 07:36:35 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 07:36:35 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 07:36:35 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 07:36:35 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 07:36:35 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 07:36:35 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 07:36:35 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 07:36:35 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 07:36:35 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 07:36:35 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 07:36:35 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 07:36:35 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 07:36:36 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 07:36:36 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 07:36:36 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 07:36:36 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 07:36:36 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 07:36:36 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 07:36:36 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 07:36:36 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 07:36:36 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 07:36:36 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 07:36:36 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 07:36:36 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 07:36:36 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 07:36:36 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 07:36:36 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 07:36:36 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 07:36:36 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 07:36:37 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 07:36:37 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 07:36:37 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 07:36:37 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 07:36:37 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 07:36:37 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 07:36:37 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 07:36:37 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 07:36:37 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 07:36:37 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 07:36:37 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 07:36:37 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 07:36:37 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 07:36:37 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 07:36:37 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 07:36:37 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 07:36:37 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 07:36:37 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 07:36:38 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 07:36:38 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 07:36:38 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 07:36:38 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 07:36:38 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 07:36:38 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 07:36:38 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 07:36:38 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 07:36:38 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 07:36:38 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 07:36:38 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 07:36:38 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 07:36:38 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 07:36:38 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 07:36:38 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 07:36:38 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 07:36:38 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 07:36:39 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 07:36:39 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 07:36:39 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 07:36:39 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 07:36:39 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 07:36:39 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 07:36:39 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 07:36:39 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 07:36:39 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 07:36:39 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 07:36:39 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 07:36:39 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 07:36:39 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 07:36:39 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 07:36:39 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 07:36:39 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 07:36:39 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 07:36:39 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 07:36:39 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 07:36:39 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 07:36:39 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 07:36:40 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 07:36:40 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 07:36:40 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 07:36:40 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 07:36:40 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 07:36:40 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 07:36:40 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 07:36:40 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 07:36:40 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 07:36:40 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 07:36:40 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 07:36:40 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 07:36:40 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 07:36:40 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 07:36:40 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 07:36:40 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 07:36:40 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 07:36:41 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 07:36:41 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 07:36:41 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 07:36:41 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 07:36:41 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 07:36:41 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 07:36:41 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 07:36:41 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 07:36:41 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 07:36:41 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 07:36:41 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 07:36:41 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 07:36:41 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 07:36:41 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 07:36:41 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 07:36:41 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 07:36:41 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 07:36:41 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 07:36:41 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 07:36:41 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 07:36:41 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 07:36:42 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 07:36:42 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 07:36:42 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 07:36:42 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 07:36:42 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 07:36:42 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 07:36:42 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 07:36:42 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 07:36:42 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 07:36:42 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 07:36:42 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 07:36:42 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 07:36:42 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 07:36:42 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 07:36:42 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 07:36:42 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 07:36:42 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 07:36:43 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 07:36:43 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 07:36:43 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 07:36:43 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 07:36:43 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 07:36:43 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 07:36:43 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 07:36:43 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 07:36:43 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 07:36:43 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 07:36:43 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 07:36:43 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 07:36:43 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 07:36:43 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 07:36:43 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 07:36:43 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 07:36:43 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 07:36:43 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 07:36:43 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 07:36:43 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 07:36:43 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 07:36:44 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 07:36:44 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 07:36:44 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 07:36:44 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 07:36:44 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 07:36:44 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 07:36:44 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 07:36:44 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 07:36:44 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 07:36:44 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 07:36:44 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 07:36:44 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 07:36:44 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 07:36:44 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 07:36:44 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 07:36:44 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 07:36:45 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 07:36:45 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 07:36:45 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 07:36:45 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 07:36:45 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 07:36:45 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 07:36:45 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 07:36:45 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 07:36:45 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 07:36:45 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 07:36:45 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 07:36:45 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 07:36:45 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 07:36:45 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 07:36:45 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 07:36:45 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 07:36:45 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 07:36:45 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 07:36:45 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 07:36:45 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 07:36:46 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 07:36:46 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 07:36:46 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 07:36:46 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 07:36:46 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 07:36:46 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 07:36:46 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 07:36:46 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 07:36:46 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 07:36:46 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 07:36:46 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 07:36:46 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 07:36:46 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 07:36:46 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 07:36:46 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 07:36:46 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 07:36:46 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 07:36:47 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 07:36:47 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 07:36:47 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 07:36:47 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 07:36:47 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 07:36:47 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 07:36:47 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 07:36:47 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 07:36:47 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 07:36:47 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 07:36:47 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 07:36:47 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 07:36:47 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 07:36:47 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 07:36:47 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 07:36:47 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 07:36:47 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 07:36:47 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 07:36:47 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 07:36:47 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 07:36:48 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 07:36:48 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 07:36:48 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 07:36:48 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 07:36:48 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 07:36:48 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 07:36:48 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 07:36:48 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 07:36:48 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 07:36:48 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 07:36:48 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 07:36:48 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 07:36:48 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 07:36:48 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 07:36:48 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 07:36:48 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 07:36:49 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 07:36:49 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 07:36:49 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 07:36:49 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 07:36:49 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 07:36:49 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 07:36:49 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 07:36:49 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 07:36:49 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 07:36:49 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 07:36:49 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 07:36:49 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 07:36:49 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 07:36:49 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 07:36:49 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 07:36:49 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 07:36:49 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 07:36:49 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 07:36:49 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 07:36:49 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 07:36:50 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 07:36:50 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 07:36:50 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 07:36:50 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 07:36:50 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 07:36:50 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 07:36:50 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 07:36:50 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 07:36:50 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 07:36:50 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 07:36:50 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 07:36:50 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 07:36:50 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 07:36:50 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 07:36:50 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 07:36:50 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 07:36:51 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 07:36:51 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 07:36:51 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 07:36:51 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 07:36:51 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 07:36:51 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 07:36:51 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 07:36:51 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 07:36:51 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 07:36:51 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 07:36:51 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 07:36:51 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 07:36:51 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 07:36:51 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 07:36:51 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 07:36:51 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 07:36:51 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 07:36:51 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 07:36:51 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 07:36:51 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 07:36:51 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 07:36:52 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 07:36:52 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 07:36:52 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 07:36:52 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 07:36:52 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 07:36:52 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 07:36:52 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 07:36:52 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 07:36:52 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 07:36:52 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 07:36:52 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 07:36:52 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 07:36:52 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 07:36:52 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 07:36:53 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 07:36:53 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 07:36:53 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 07:36:53 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 07:36:53 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 07:36:53 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 07:36:53 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 07:36:53 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 07:36:53 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 07:36:53 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 07:36:53 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 07:36:53 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 07:36:53 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 07:36:53 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 07:36:53 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 07:36:53 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 07:36:53 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 07:36:53 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 07:36:53 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 07:36:53 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 07:36:54 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 07:36:54 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 07:36:54 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 07:36:54 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 07:36:54 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 07:36:54 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 07:36:54 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 07:36:54 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 07:36:54 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 07:36:54 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 07:36:54 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 07:36:54 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 07:36:54 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 07:36:54 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 07:36:54 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 07:36:54 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 07:36:54 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 07:36:55 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 07:36:55 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 07:36:55 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 07:36:55 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 07:36:55 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 07:36:55 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 07:36:55 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 07:36:55 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 07:36:55 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 07:36:55 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 07:36:55 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 07:36:55 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 07:36:55 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 07:36:55 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 07:36:55 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 07:36:55 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 07:36:55 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 07:36:55 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 07:36:55 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 07:36:55 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 07:36:56 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 07:36:56 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 07:36:56 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 07:36:56 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 07:36:56 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 07:36:56 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 07:36:56 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 07:36:56 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 07:36:56 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 07:36:56 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 07:36:56 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 07:36:56 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 07:36:56 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 07:36:56 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 07:36:56 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 07:36:56 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 07:36:56 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 07:36:57 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 07:36:57 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 07:36:57 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 07:36:57 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 07:36:57 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 07:36:57 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 07:36:57 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 07:36:57 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 07:36:57 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 07:36:57 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 07:36:57 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 07:36:57 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 07:36:57 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 07:36:57 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 07:36:57 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 07:36:57 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 07:36:57 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 07:36:57 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 07:36:57 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 07:36:58 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 07:36:58 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 07:36:58 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 07:36:58 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 07:36:58 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 07:36:58 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 07:36:58 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 07:36:58 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 07:36:58 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 07:36:58 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 07:36:58 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 07:36:58 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 07:36:58 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 07:36:58 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 07:36:58 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 07:36:58 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 07:36:58 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 07:36:59 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 07:36:59 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 07:36:59 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 07:36:59 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 07:36:59 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 07:36:59 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 07:36:59 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 07:36:59 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 07:36:59 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 07:36:59 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 07:36:59 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 07:36:59 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 07:36:59 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 07:36:59 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 07:36:59 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 07:36:59 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 07:36:59 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 07:36:59 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 07:36:59 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 07:37:00 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 07:37:00 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 07:37:00 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 07:37:00 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 07:37:00 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 07:37:00 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 07:37:00 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 07:37:00 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 07:37:00 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 07:37:00 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 07:37:00 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 07:37:00 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 07:37:00 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 07:37:00 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 07:37:00 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 07:37:00 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 07:37:01 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 07:37:01 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 07:37:01 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 07:37:01 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 07:37:01 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 07:37:01 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 07:37:01 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 07:37:01 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 07:37:01 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 07:37:01 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 07:37:01 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 07:37:01 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 07:37:01 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 07:37:01 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 07:37:01 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 07:37:01 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 07:37:01 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 07:37:01 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 07:37:01 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 07:37:01 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 07:37:02 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 07:37:02 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 07:37:02 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 07:37:02 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 07:37:02 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 07:37:02 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 07:37:02 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 07:37:02 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 07:37:02 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 07:37:02 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 07:37:02 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 07:37:02 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 07:37:02 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 07:37:02 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 07:37:02 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 07:37:02 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 07:37:03 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 07:37:03 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 07:37:03 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 07:37:03 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 07:37:03 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 07:37:03 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 07:37:03 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 07:37:03 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 07:37:03 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 07:37:03 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 07:37:03 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 07:37:03 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 07:37:03 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 07:37:03 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 07:37:03 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 07:37:03 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 07:37:03 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 07:37:03 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 07:37:03 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 07:37:03 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 07:37:04 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 07:37:04 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 07:37:04 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 07:37:04 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 07:37:04 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 07:37:04 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 07:37:04 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 07:37:04 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 07:37:04 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 07:37:04 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 07:37:04 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 07:37:04 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 07:37:04 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 07:37:04 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 07:37:04 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 07:37:04 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 07:37:05 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 07:37:05 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 07:37:05 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 07:37:05 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 07:37:05 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 07:37:05 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 07:37:05 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 07:37:05 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 07:37:05 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 07:37:05 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 07:37:05 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 07:37:05 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 07:37:05 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 07:37:05 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 07:37:05 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 07:37:05 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 07:37:05 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 07:37:05 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 07:37:05 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 07:37:05 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 07:37:06 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 07:37:06 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 07:37:06 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 07:37:06 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 07:37:06 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 07:37:06 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 07:37:06 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 07:37:06 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 07:37:06 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 07:37:06 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 07:37:06 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 07:37:06 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 07:37:06 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 07:37:06 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 07:37:06 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 07:37:06 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 07:37:07 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 07:37:07 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 07:37:07 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 07:37:07 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 07:37:07 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 07:37:07 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 07:37:07 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 07:37:07 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 07:37:07 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 07:37:07 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 07:37:07 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 07:37:07 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 07:37:07 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 07:37:07 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 07:37:07 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 07:37:07 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 07:37:07 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 07:37:07 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 07:37:08 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 07:37:08 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 07:37:08 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 07:37:08 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 07:37:08 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 07:37:08 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 07:37:08 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 07:37:08 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 07:37:08 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 07:37:08 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 07:37:08 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 07:37:08 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 07:37:08 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 07:37:08 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 07:37:08 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 07:37:08 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 07:37:09 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 07:37:09 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 07:37:09 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 07:37:09 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 07:37:09 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 07:37:09 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 07:37:09 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 07:37:09 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 07:37:09 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 07:37:09 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 07:37:09 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 07:37:09 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 07:37:09 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 07:37:09 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 07:37:09 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 07:37:09 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 07:37:09 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 07:37:09 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 07:37:09 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 07:37:10 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 07:37:10 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 07:37:10 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 07:37:10 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 07:37:10 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 07:37:10 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 07:37:10 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 07:37:10 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 07:37:10 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 07:37:10 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 07:37:10 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 07:37:10 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 07:37:10 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 07:37:10 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 07:37:10 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 07:37:10 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 07:37:11 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 07:37:11 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 07:37:11 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 07:37:11 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 07:37:11 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 07:37:11 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 07:37:11 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 07:37:11 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 07:37:11 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 07:37:11 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 07:37:11 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 07:37:11 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 07:37:11 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 07:37:11 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 07:37:11 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 07:37:11 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 07:37:11 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 07:37:11 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 07:37:11 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 07:37:11 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 07:37:12 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 07:37:12 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 07:37:12 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 07:37:12 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 07:37:12 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 07:37:12 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 07:37:12 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 07:37:12 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 07:37:12 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 07:37:12 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 07:37:12 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 07:37:12 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 07:37:12 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 07:37:12 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 07:37:12 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 07:37:12 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 07:37:13 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 07:37:13 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 07:37:13 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 07:37:13 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 07:37:13 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 07:37:13 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 07:37:13 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 07:37:13 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 07:37:13 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 07:37:13 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 07:37:13 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 07:37:13 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 07:37:13 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 07:37:13 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 07:37:13 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 07:37:13 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 07:37:13 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 07:37:13 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 07:37:13 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 07:37:14 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 07:37:14 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 07:37:14 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 07:37:14 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 07:37:14 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 07:37:14 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 07:37:14 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 07:37:14 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 07:37:14 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 07:37:14 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 07:37:14 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 07:37:14 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 07:37:14 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 07:37:14 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 07:37:14 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 07:37:14 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 07:37:15 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 07:37:15 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 07:37:15 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 07:37:15 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 07:37:15 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 07:37:15 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 07:37:15 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 07:37:15 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 07:37:15 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 07:37:15 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 07:37:15 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 07:37:15 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 07:37:15 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 07:37:15 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 07:37:15 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 07:37:15 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 07:37:15 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 07:37:15 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 07:37:15 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 07:37:16 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 07:37:16 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 07:37:16 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 07:37:16 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 07:37:16 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 07:37:16 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 07:37:16 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 07:37:16 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 07:37:16 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 07:37:16 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 07:37:16 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 07:37:16 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 07:37:16 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 07:37:16 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 07:37:16 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 07:37:16 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 07:37:17 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 07:37:17 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 07:37:17 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 07:37:17 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 07:37:17 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 07:37:17 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 07:37:17 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 07:37:17 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 07:37:17 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 07:37:17 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 07:37:17 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 07:37:17 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 07:37:17 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 07:37:17 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 07:37:17 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 07:37:17 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 07:37:17 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 07:37:17 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 07:37:17 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 07:37:18 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 07:37:18 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 07:37:18 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 07:37:18 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 07:37:18 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 07:37:18 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 07:37:18 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 07:37:18 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 07:37:18 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 07:37:18 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 07:37:18 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 07:37:18 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 07:37:18 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 07:37:18 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 07:37:18 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 07:37:19 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 07:37:19 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 07:37:19 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 07:37:19 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 07:37:19 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 07:37:19 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 07:37:19 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 07:37:19 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 07:37:19 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 07:37:19 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 07:37:19 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 07:37:19 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 07:37:19 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 07:37:19 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 07:37:19 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 07:37:19 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 07:37:19 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 07:37:19 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 07:37:19 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 07:37:20 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 07:37:20 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 07:37:20 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 07:37:20 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 07:37:20 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 07:37:20 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 07:37:20 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 07:37:20 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 07:37:20 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 07:37:20 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 07:37:20 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 07:37:20 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 07:37:20 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 07:37:20 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 07:37:20 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 07:37:21 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 07:37:21 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 07:37:21 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 07:37:21 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 07:37:21 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 07:37:21 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 07:37:21 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 07:37:21 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 07:37:21 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 07:37:21 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 07:37:21 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 07:37:21 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 07:37:21 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 07:37:21 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 07:37:21 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 07:37:21 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 07:37:21 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 07:37:21 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 07:37:21 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 07:37:22 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 07:37:22 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 07:37:22 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 07:37:22 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 07:37:22 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 07:37:22 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 07:37:22 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 07:37:22 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 07:37:22 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 07:37:22 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 07:37:22 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 07:37:22 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 07:37:22 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 07:37:22 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 07:37:22 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 07:37:22 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 07:37:23 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 07:37:23 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 07:37:23 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 07:37:23 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 07:37:23 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 07:37:23 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 07:37:23 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 07:37:23 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 07:37:23 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 07:37:23 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 07:37:23 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 07:37:23 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 07:37:23 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 07:37:23 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 07:37:23 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 07:37:23 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 07:37:23 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 07:37:23 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 07:37:24 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 07:37:24 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 07:37:24 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 07:37:24 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 07:37:24 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 07:37:24 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 07:37:24 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 07:37:24 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 07:37:24 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 07:37:24 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 07:37:24 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 07:37:24 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 07:37:24 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 07:37:24 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 07:37:24 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 07:37:25 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 07:37:25 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 07:37:25 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 07:37:25 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 07:37:25 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 07:37:25 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 07:37:25 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 07:37:25 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 07:37:25 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 07:37:25 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 07:37:25 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 07:37:25 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 07:37:25 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 07:37:25 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 07:37:25 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 07:37:25 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 07:37:25 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 07:37:25 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 07:37:26 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 07:37:26 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 07:37:26 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 07:37:26 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 07:37:26 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 07:37:26 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 07:37:26 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 07:37:26 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 07:37:26 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 07:37:26 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 07:37:26 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 07:37:26 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 07:37:26 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 07:37:26 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 07:37:26 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 07:37:26 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 07:37:27 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 07:37:27 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 07:37:27 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 07:37:27 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 07:37:27 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 07:37:27 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 07:37:27 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 07:37:27 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 07:37:27 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 07:37:27 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 07:37:27 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 07:37:27 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 07:37:27 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 07:37:27 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 07:37:27 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 07:37:27 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 07:37:27 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 07:37:27 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 07:37:27 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 07:37:28 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 07:37:28 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 07:37:28 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 07:37:28 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 07:37:28 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 07:37:28 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 07:37:28 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 07:37:28 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 07:37:28 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 07:37:28 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 07:37:28 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 07:37:28 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 07:37:28 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 07:37:28 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 07:37:28 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 07:37:29 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 07:37:29 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 07:37:29 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 07:37:29 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 07:37:29 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 07:37:29 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 07:37:29 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 07:37:29 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 07:37:29 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 07:37:29 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 07:37:29 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 07:37:29 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 07:37:29 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 07:37:29 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 07:37:29 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 07:37:29 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 07:37:29 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 07:37:29 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 07:37:30 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 07:37:30 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 07:37:30 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 07:37:30 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 07:37:30 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 07:37:30 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 07:37:30 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 07:37:30 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 07:37:30 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 07:37:30 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 07:37:30 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 07:37:30 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 07:37:30 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 07:37:30 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 07:37:30 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 07:37:31 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 07:37:31 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 07:37:31 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 07:37:31 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 07:37:31 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 07:37:31 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 07:37:31 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 07:37:31 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 07:37:31 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 07:37:31 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 07:37:31 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 07:37:31 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 07:37:31 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 07:37:31 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 07:37:31 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 07:37:31 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 07:37:31 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 07:37:31 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 07:37:32 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 07:37:32 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 07:37:32 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 07:37:32 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 07:37:32 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 07:37:32 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 07:37:32 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 07:37:32 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 07:37:32 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 07:37:32 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 07:37:32 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 07:37:32 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 07:37:32 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 07:37:32 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 07:37:32 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 07:37:33 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 07:37:33 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 07:37:33 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 07:37:33 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 07:37:33 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 07:37:33 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 07:37:33 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 07:37:33 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 07:37:33 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 07:37:33 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 07:37:33 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 07:37:33 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 07:37:33 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 07:37:33 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 07:37:33 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 07:37:33 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 07:37:33 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 07:37:33 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 07:37:34 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 07:37:34 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 07:37:34 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 07:37:34 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 07:37:34 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 07:37:34 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 07:37:34 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 07:37:34 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 07:37:34 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 07:37:34 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 07:37:34 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 07:37:34 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 07:37:34 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 07:37:34 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 07:37:35 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 07:37:35 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 07:37:35 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 07:37:35 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 07:37:35 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 07:37:35 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 07:37:35 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 07:37:35 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 07:37:35 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 07:37:35 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 07:37:35 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 07:37:35 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 07:37:35 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 07:37:35 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 07:37:35 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 07:37:35 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 07:37:35 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 07:37:35 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 07:37:36 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 07:37:36 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 07:37:36 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 07:37:36 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 07:37:36 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 07:37:36 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 07:37:36 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 07:37:36 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 07:37:36 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 07:37:36 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 07:37:36 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 07:37:36 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 07:37:36 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 07:37:36 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 07:37:37 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 07:37:37 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 07:37:37 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 07:37:37 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 07:37:37 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 07:37:37 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 07:37:37 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 07:37:37 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 07:37:37 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 07:37:37 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 07:37:37 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 07:37:37 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 07:37:37 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 07:37:37 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 07:37:37 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 07:37:37 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 07:37:37 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 07:37:37 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 07:37:38 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 07:37:38 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 07:37:38 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 07:37:38 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 07:37:38 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 07:37:38 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 07:37:38 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 07:37:38 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 07:37:38 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 07:37:38 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 07:37:38 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 07:37:38 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 07:37:38 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 07:37:38 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 07:37:38 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 07:37:39 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 07:37:39 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 07:37:39 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 07:37:39 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 07:37:39 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 07:37:39 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 07:37:39 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 07:37:39 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 07:37:39 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 07:37:39 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 07:37:39 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 07:37:39 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 07:37:39 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 07:37:39 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 07:37:39 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 07:37:39 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 07:37:39 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 07:37:40 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 07:37:40 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 07:37:40 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 07:37:40 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 07:37:40 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 07:37:40 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 07:37:40 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 07:37:40 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 07:37:40 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 07:37:40 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 07:37:40 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 07:37:40 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 07:37:40 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 07:37:40 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 07:37:40 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 07:37:41 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 07:37:41 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 07:37:41 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 07:37:41 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 07:37:41 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 07:37:41 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 07:37:41 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 07:37:41 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 07:37:41 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 07:37:41 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 07:37:41 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 07:37:41 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 07:37:41 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 07:37:41 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 07:37:41 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 07:37:41 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 07:37:42 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 07:37:42 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 07:37:42 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 07:37:42 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 07:37:42 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 07:37:42 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 07:37:42 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 07:37:42 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 07:37:42 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 07:37:42 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 07:37:42 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 07:37:42 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 07:37:42 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 07:37:43 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 07:37:43 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 07:37:43 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 07:37:43 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 07:37:43 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 07:37:43 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 07:37:43 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 07:37:43 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 07:37:43 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 07:37:43 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 07:37:43 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 07:37:43 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 07:37:43 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 07:37:43 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 07:37:44 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 07:37:44 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 07:37:44 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 07:37:44 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 07:37:44 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 07:37:44 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 07:37:44 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 07:37:44 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 07:37:44 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 07:37:44 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 07:37:44 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 07:37:44 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 07:37:45 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 07:37:45 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 07:37:45 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 07:37:45 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 07:37:45 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 07:37:45 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 07:37:45 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 07:37:45 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 07:37:45 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 07:37:45 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 07:37:45 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 07:37:45 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 07:37:45 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 07:37:45 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 07:37:45 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 07:37:45 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 07:37:45 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 07:37:45 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 07:37:46 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 07:37:46 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 07:37:46 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 07:37:46 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 07:37:46 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 07:37:46 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 07:37:46 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 07:37:46 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 07:37:46 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 07:37:46 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 07:37:46 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 07:37:46 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 07:37:46 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 07:37:46 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 07:37:46 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 07:37:47 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 07:37:47 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 07:37:47 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 07:37:47 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 07:37:47 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 07:37:47 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 07:37:47 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 07:37:47 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 07:37:47 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 07:37:47 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 07:37:47 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 07:37:47 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 07:37:47 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 07:37:47 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 07:37:47 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 07:37:47 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 07:37:47 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 07:37:47 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 07:37:48 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 07:37:48 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 07:37:48 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 07:37:48 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 07:37:48 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 07:37:48 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 07:37:48 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 07:37:48 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 07:37:48 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 07:37:48 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 07:37:48 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 07:37:48 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 07:37:48 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 07:37:48 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 07:37:49 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 07:37:49 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 07:37:49 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 07:37:49 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 07:37:49 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 07:37:49 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 07:37:49 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 07:37:49 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 07:37:49 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 07:37:49 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 07:37:49 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 07:37:49 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 07:37:49 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 07:37:49 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 07:37:50 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 07:37:50 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 07:37:50 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 07:37:50 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 07:37:50 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 07:37:50 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 07:37:50 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 07:37:50 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 07:37:50 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 07:37:51 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 07:37:51 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 07:37:51 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 07:37:51 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 07:37:51 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 07:37:51 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 07:37:51 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 07:37:51 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 07:37:51 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 07:37:51 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 07:37:51 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 07:37:51 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 07:37:51 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 07:37:52 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 07:37:52 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 07:37:52 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 07:37:52 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 07:37:52 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 07:37:52 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 07:37:52 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 07:37:52 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 07:37:52 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 07:37:52 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 07:37:52 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 07:37:52 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 07:37:53 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 07:37:53 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 07:37:53 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 07:37:53 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 07:37:53 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 07:37:53 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 07:37:53 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 07:37:53 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 07:37:53 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 07:37:53 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 07:37:53 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 07:37:53 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 07:37:53 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 07:37:53 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 07:37:54 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 07:37:54 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 07:37:54 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 07:37:54 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 07:37:54 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 07:37:54 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 07:37:54 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 07:37:54 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 07:37:54 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 07:37:55 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 07:37:55 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 07:37:55 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 07:37:55 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 07:37:55 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 07:37:55 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 07:37:55 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 07:37:55 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 07:37:55 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 07:37:55 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 07:37:55 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 07:37:55 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 07:37:55 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 07:37:55 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 07:37:55 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 07:37:55 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 07:37:56 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 07:37:56 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 07:37:56 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 07:37:56 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 07:37:56 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 07:37:56 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 07:37:56 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 07:37:56 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 07:37:56 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 07:37:56 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 07:37:56 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 07:37:56 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 07:37:56 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 07:37:56 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 07:37:57 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 07:37:57 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 07:37:57 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 07:37:57 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 07:37:57 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 07:37:57 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 07:37:57 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 07:37:57 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 07:37:57 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 07:37:57 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 07:37:57 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 07:37:57 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 07:37:57 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 07:37:57 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 07:37:57 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 07:37:57 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 07:37:57 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 07:37:57 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 07:37:57 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 07:37:57 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 07:37:57 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 07:37:57 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 07:37:57 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 07:37:57 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 07:37:57 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 07:37:57 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 07:37:57 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 07:37:57 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 07:37:58 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 07:37:58 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 07:37:58 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 07:37:58 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 07:37:58 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 07:37:58 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 07:37:58 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 07:37:58 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 07:37:59 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 07:37:59 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 07:37:59 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 07:37:59 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 07:37:59 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 07:37:59 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 07:37:59 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 07:37:59 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 07:37:59 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 07:38:00 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 07:38:00 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 07:38:00 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 07:38:00 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 07:38:00 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 07:38:00 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 07:38:00 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 07:38:00 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 07:38:00 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 07:38:00 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 07:38:00 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 07:38:01 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 07:38:01 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 07:38:01 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 07:38:01 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 07:38:01 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 07:38:01 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 07:38:01 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 07:38:01 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 07:38:01 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 07:38:01 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 07:38:01 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 07:38:01 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 07:38:01 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 07:38:01 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 07:38:02 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 07:38:02 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 07:38:02 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 07:38:02 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 07:38:02 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 07:38:02 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 07:38:02 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 07:38:02 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 07:38:02 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 07:38:02 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 07:38:02 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 07:38:02 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 07:38:02 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 07:38:03 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 07:38:03 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 07:38:03 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 07:38:03 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 07:38:03 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 07:38:03 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 07:38:03 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 07:38:03 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 07:38:03 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 07:38:03 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 07:38:03 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 07:38:03 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 07:38:03 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 07:38:03 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 07:38:03 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 07:38:03 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 07:38:04 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 07:38:04 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 07:38:04 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 07:38:04 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 07:38:04 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 07:38:04 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 07:38:04 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 07:38:04 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 07:38:04 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 07:38:04 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 07:38:04 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 07:38:04 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 07:38:05 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 07:38:05 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 07:38:05 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 07:38:05 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 07:38:05 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 07:38:05 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 07:38:05 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 07:38:05 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 07:38:05 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 07:38:05 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 07:38:05 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 07:38:05 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 07:38:05 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 07:38:05 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 07:38:05 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 07:38:06 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 07:38:06 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 07:38:06 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 07:38:06 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 07:38:06 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 07:38:06 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 07:38:06 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 07:38:06 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 07:38:06 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 07:38:06 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 07:38:06 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 07:38:06 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 07:38:07 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 07:38:07 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 07:38:07 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 07:38:07 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 07:38:07 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 07:38:07 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 07:38:07 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 07:38:07 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 07:38:07 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 07:38:07 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 07:38:07 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 07:38:07 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 07:38:07 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 07:38:08 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 07:38:08 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 07:38:08 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 07:38:08 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 07:38:08 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 07:38:08 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 07:38:08 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 07:38:09 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 07:38:09 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 07:38:09 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 07:38:09 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 07:38:09 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 07:38:09 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 07:38:09 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 07:38:09 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 07:38:09 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 07:38:09 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 07:38:09 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 07:38:09 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 07:38:09 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 07:38:09 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 07:38:09 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 07:38:10 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 07:38:10 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 07:38:10 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 07:38:10 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 07:38:10 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 07:38:10 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 07:38:10 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 07:38:10 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 07:38:10 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 07:38:10 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 07:38:10 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 07:38:10 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 07:38:10 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 07:38:10 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 07:38:10 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 07:38:11 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 07:38:11 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 07:38:11 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 07:38:11 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 07:38:11 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 07:38:11 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 07:38:11 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 07:38:11 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 07:38:11 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 07:38:11 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 07:38:11 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 07:38:11 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 07:38:11 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 07:38:11 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 07:38:11 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 07:38:11 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 07:38:12 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 07:38:12 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 07:38:12 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 07:38:12 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 07:38:12 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 07:38:12 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 07:38:12 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 07:38:12 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 07:38:13 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 07:38:13 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 07:38:13 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 07:38:13 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 07:38:13 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 07:38:13 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 07:38:14 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 07:38:14 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 07:38:14 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 07:38:14 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 07:38:14 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 07:38:14 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 07:38:14 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 07:38:14 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 07:38:14 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 07:38:14 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 07:38:15 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 07:38:15 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 07:38:15 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 07:38:15 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 07:38:15 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 07:38:15 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 07:38:15 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 07:38:15 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 07:38:15 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 07:38:15 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 07:38:15 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 07:38:15 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 07:38:15 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 07:38:15 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 07:38:16 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 07:38:16 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 07:38:16 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 07:38:16 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 07:38:16 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 07:38:16 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 07:38:16 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 07:38:16 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 07:38:16 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 07:38:16 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 07:38:16 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 07:38:16 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 07:38:16 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 07:38:16 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 07:38:16 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 07:38:17 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 07:38:17 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 07:38:17 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 07:38:17 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 07:38:17 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 07:38:17 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 07:38:17 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 07:38:17 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 07:38:17 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 07:38:17 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 07:38:17 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 07:38:17 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 07:38:17 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 07:38:17 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 07:38:17 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 07:38:17 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 07:38:17 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 07:38:18 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 07:38:18 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 07:38:18 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 07:38:18 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 07:38:18 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 07:38:18 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 07:38:18 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 07:38:18 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 07:38:18 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 07:38:18 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 07:38:18 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 07:38:18 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 07:38:18 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 07:38:18 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 07:38:19 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 07:38:19 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 07:38:19 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 07:38:19 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 07:38:19 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 07:38:19 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 07:38:19 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 07:38:19 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 07:38:19 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 07:38:19 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 07:38:19 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 07:38:19 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 07:38:19 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 07:38:19 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 07:38:19 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 07:38:20 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 07:38:20 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 07:38:20 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 07:38:20 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 07:38:20 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 07:38:20 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 07:38:20 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 07:38:20 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 07:38:20 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 07:38:20 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 07:38:20 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 07:38:20 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 07:38:20 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 07:38:20 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 07:38:21 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 07:38:21 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 07:38:21 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 07:38:21 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 07:38:21 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 07:38:21 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 07:38:21 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 07:38:21 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 07:38:21 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 07:38:21 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 07:38:21 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 07:38:21 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 07:38:21 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 07:38:21 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 07:38:21 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 07:38:21 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 07:38:22 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 07:38:22 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 07:38:22 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 07:38:22 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 07:38:22 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 07:38:22 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 07:38:22 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 07:38:23 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 07:38:23 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 07:38:23 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 07:38:23 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 07:38:23 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 07:38:23 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 07:38:23 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 07:38:23 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 07:38:24 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 07:38:24 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 07:38:24 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 07:38:24 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 07:38:24 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 07:38:24 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 07:38:24 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 07:38:24 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 07:38:25 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 07:38:25 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 07:38:25 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 07:38:25 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 07:38:25 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 07:38:25 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 07:38:25 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 07:38:25 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 07:38:25 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 07:38:25 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 07:38:26 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 07:38:26 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 07:38:26 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 07:38:26 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 07:38:26 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 07:38:26 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 07:38:26 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 07:38:26 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 07:38:26 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 07:38:26 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 07:38:26 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 07:38:26 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 07:38:27 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 07:38:27 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 07:38:27 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 07:38:27 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 07:38:27 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 07:38:27 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 07:38:27 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 07:38:27 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 07:38:27 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 07:38:27 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 07:38:28 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 07:38:28 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 07:38:28 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 07:38:28 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 07:38:28 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 07:38:28 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 07:38:28 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 07:38:28 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 07:38:28 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 07:38:28 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 07:38:28 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 07:38:28 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 07:38:28 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 07:38:28 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 07:38:28 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 07:38:28 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 07:38:28 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 07:38:28 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 07:38:29 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 07:38:29 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 07:38:29 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 07:38:29 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 07:38:29 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 07:38:29 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 07:38:29 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 07:38:29 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 07:38:29 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 07:38:29 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 07:38:29 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 07:38:29 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 07:38:29 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 07:38:29 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 07:38:29 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 07:38:29 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 07:38:29 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 07:38:29 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 07:38:29 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 07:38:29 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 07:38:29 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 07:38:29 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 07:38:30 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 07:38:30 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 07:38:30 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 07:38:30 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 07:38:30 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 07:38:30 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 07:38:30 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 07:38:30 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 07:38:30 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 07:38:30 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 07:38:31 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 07:38:31 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 07:38:31 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 07:38:31 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 07:38:31 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 07:38:31 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 07:38:31 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 07:38:31 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 07:38:31 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 07:38:31 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 07:38:31 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 07:38:32 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 07:38:32 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 07:38:32 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 07:38:32 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 07:38:32 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 07:38:32 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 07:38:32 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 07:38:32 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 07:38:32 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 07:38:32 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 07:38:32 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 07:38:32 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 07:38:32 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 07:38:33 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 07:38:33 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 07:38:33 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 07:38:33 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 07:38:33 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 07:38:33 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 07:38:33 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 07:38:33 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 07:38:33 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 07:38:33 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 07:38:33 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 07:38:33 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 07:38:34 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 07:38:34 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 07:38:34 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 07:38:34 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 07:38:34 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 07:38:34 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 07:38:34 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 07:38:34 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 07:38:35 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 07:38:35 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 07:38:35 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 07:38:35 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 07:38:35 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 07:38:35 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 07:38:35 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 07:38:36 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 07:38:36 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 07:38:36 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 07:38:36 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 07:38:36 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 07:38:36 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 07:38:36 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 07:38:36 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 07:38:36 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 07:38:36 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 07:38:36 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 07:38:36 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 07:38:36 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 07:38:37 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 07:38:37 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 07:38:37 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 07:38:37 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 07:38:37 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 07:38:37 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 07:38:37 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 07:38:37 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 07:38:37 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 07:38:37 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 07:38:37 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 07:38:37 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 07:38:38 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 07:38:38 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 07:38:38 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 07:38:38 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 07:38:38 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 07:38:38 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 07:38:38 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 07:38:39 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 07:38:39 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 07:38:39 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 07:38:39 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 07:38:39 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 07:38:39 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 07:38:39 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 07:38:39 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 07:38:39 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 07:38:40 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 07:38:40 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 07:38:40 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 07:38:40 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 07:38:41 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 07:38:41 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 07:38:41 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 07:38:41 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 07:38:41 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 07:38:41 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 07:38:41 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 07:38:42 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 07:38:42 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 07:38:42 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 07:38:42 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 07:38:42 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 07:38:42 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 07:38:42 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 07:38:42 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 07:38:42 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 07:38:42 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 07:38:42 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 07:38:42 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 07:38:43 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 07:38:43 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 07:38:43 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 07:38:43 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 07:38:43 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 07:38:43 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 07:38:43 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 07:38:43 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 07:38:43 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 07:38:43 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 07:38:43 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 07:38:43 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 07:38:43 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 07:38:43 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 07:38:43 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 07:38:43 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 07:38:43 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 07:38:43 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 07:38:43 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 07:38:43 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 07:38:43 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 07:38:44 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 07:38:44 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 07:38:44 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 07:38:44 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 07:38:44 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 07:38:44 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 07:38:44 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 07:38:44 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 07:38:44 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 07:38:44 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 07:38:44 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 07:38:44 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 07:38:44 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 07:38:44 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 07:38:44 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 07:38:44 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 07:38:44 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 07:38:45 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 07:38:45 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 07:38:45 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 07:38:45 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 07:38:45 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 07:38:45 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 07:38:45 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 07:38:45 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 07:38:45 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 07:38:45 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 07:38:45 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 07:38:45 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 07:38:45 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 07:38:45 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 07:38:46 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 07:38:46 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 07:38:46 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 07:38:46 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 07:38:46 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 07:38:46 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 07:38:46 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 07:38:46 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 07:38:46 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 07:38:46 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 07:38:46 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 07:38:46 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 07:38:46 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 07:38:46 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 07:38:46 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 07:38:46 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 07:38:46 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 07:38:46 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 07:38:46 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 07:38:46 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 07:38:46 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 07:38:46 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 07:38:47 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 07:38:47 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 07:38:47 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 07:38:47 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 07:38:47 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 07:38:47 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 07:38:47 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 07:38:47 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 07:38:47 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 07:38:47 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 07:38:47 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 07:38:47 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 07:38:47 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 07:38:47 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 07:38:47 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 07:38:47 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 07:38:47 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 07:38:47 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 07:38:47 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 07:38:47 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 07:38:47 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 07:38:48 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 07:38:48 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 07:38:48 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 07:38:48 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 07:38:48 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 07:38:48 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 07:38:48 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 07:38:48 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 07:38:48 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 07:38:48 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 07:38:48 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 07:38:48 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 07:38:48 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 07:38:48 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 07:38:48 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 07:38:48 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 07:38:48 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 07:38:48 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 07:38:48 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 07:38:48 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 07:38:48 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 07:38:48 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 07:38:48 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 07:38:48 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 07:38:48 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 07:38:49 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 07:38:49 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 07:38:49 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 07:38:49 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 07:38:49 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 07:38:49 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 07:38:49 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 07:38:49 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 07:38:49 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 07:38:49 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 07:38:49 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 07:38:49 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 07:38:49 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 07:38:50 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 07:38:50 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 07:38:50 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 07:38:50 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 07:38:50 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 07:38:50 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 07:38:50 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 07:38:50 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 07:38:50 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 07:38:50 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 07:38:50 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 07:38:50 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 07:38:50 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 07:38:51 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 07:38:51 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 07:38:51 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 07:38:51 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 07:38:51 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 07:38:51 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 07:38:51 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 07:38:51 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 07:38:51 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 07:38:51 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 07:38:51 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 07:38:51 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 07:38:52 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 07:38:52 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 07:38:52 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 07:38:52 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 07:38:52 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 07:38:52 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 07:38:52 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 07:38:52 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 07:38:52 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 07:38:52 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 07:38:52 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 07:38:52 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 07:38:52 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 07:38:52 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 07:38:53 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 07:38:53 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 07:38:53 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 07:38:53 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 07:38:53 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 07:38:53 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 07:38:53 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 07:38:53 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 07:38:53 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 07:38:53 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 07:38:53 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 07:38:53 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 07:38:53 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 07:38:53 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 07:38:54 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 07:38:54 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 07:38:54 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 07:38:54 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 07:38:54 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 07:38:54 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 07:38:54 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 07:38:54 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 07:38:54 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 07:38:54 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 07:38:54 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 07:38:54 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 07:38:54 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 07:38:54 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 07:38:54 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 07:38:55 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 07:38:55 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 07:38:55 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 07:38:55 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 07:38:55 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 07:38:55 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 07:38:55 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 07:38:55 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 07:38:55 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 07:38:55 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 07:38:55 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 07:38:55 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 07:38:55 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 07:38:56 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 07:38:56 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 07:38:56 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 07:38:56 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 07:38:56 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 07:38:56 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 07:38:56 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 07:38:56 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 07:38:56 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 07:38:56 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 07:38:56 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 07:38:56 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 07:38:56 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 07:38:56 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 07:38:56 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 07:38:57 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 07:38:57 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 07:38:57 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 07:38:57 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 07:38:57 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 07:38:57 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 07:38:57 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 07:38:57 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 07:38:57 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 07:38:57 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 07:38:57 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 07:38:58 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 07:38:58 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 07:38:58 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 07:38:58 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 07:38:58 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 07:38:58 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 07:38:58 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 07:38:58 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 07:38:58 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 07:38:59 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 07:38:59 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 07:38:59 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 07:38:59 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 07:39:00 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 07:39:00 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 07:39:00 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 07:39:00 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 07:39:01 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 07:39:01 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 07:39:01 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 07:39:01 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 07:39:01 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 07:39:01 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 07:39:01 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 07:39:01 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 07:39:01 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 07:39:01 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 07:39:02 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 07:39:02 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 07:39:02 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 07:39:02 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 07:39:02 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 07:39:02 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 07:39:02 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 07:39:02 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 07:39:02 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 07:39:02 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 07:39:02 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 07:39:02 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 07:39:02 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 07:39:03 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 07:39:03 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 07:39:03 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 07:39:03 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 07:39:03 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 07:39:03 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 07:39:03 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 07:39:03 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 07:39:03 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 07:39:03 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 07:39:04 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 07:39:04 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 07:39:04 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 07:39:04 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 07:39:04 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 07:39:04 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 07:39:04 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 07:39:04 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 07:39:04 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 07:39:04 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 07:39:04 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 07:39:04 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 07:39:05 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 07:39:05 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 07:39:05 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 07:39:05 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 07:39:05 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 07:39:05 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 07:39:05 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 07:39:05 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 07:39:06 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 07:39:06 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 07:39:06 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 07:39:06 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 07:39:06 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 07:39:06 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 07:39:06 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 07:39:06 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 07:39:06 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 07:39:07 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 07:39:07 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 07:39:07 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 07:39:07 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 07:39:07 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 07:39:07 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 07:39:07 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 07:39:08 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 07:39:08 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 07:39:08 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 07:39:08 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 07:39:08 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 07:39:08 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 07:39:08 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 07:39:08 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 07:39:09 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 07:39:09 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 07:39:09 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 07:39:09 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 07:39:09 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 07:39:09 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 07:39:09 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 07:39:09 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 07:39:09 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 07:39:09 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 07:39:09 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 07:39:09 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 07:39:10 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 07:39:10 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 07:39:10 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 07:39:10 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 07:39:10 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 07:39:10 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 07:39:10 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 07:39:10 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 07:39:10 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 07:39:10 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 07:39:10 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 07:39:10 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 07:39:10 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 07:39:10 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 07:39:10 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 07:39:11 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 07:39:11 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 07:39:11 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 07:39:11 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 07:39:11 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 07:39:11 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 07:39:11 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 07:39:11 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 07:39:11 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 07:39:11 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 07:39:11 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 07:39:11 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 07:39:11 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 07:39:11 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 07:39:11 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 07:39:11 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 07:39:11 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 07:39:12 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 07:39:12 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 07:39:12 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 07:39:12 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 07:39:12 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 07:39:12 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 07:39:12 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 07:39:12 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 07:39:12 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 07:39:12 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 07:39:12 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 07:39:12 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 07:39:12 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 07:39:12 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 07:39:12 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 07:39:13 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 07:39:13 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 07:39:13 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 07:39:13 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 07:39:13 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 07:39:13 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 07:39:13 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 07:39:13 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 07:39:13 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 07:39:13 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 07:39:13 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 07:39:13 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 07:39:13 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 07:39:13 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 07:39:13 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 07:39:13 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 07:39:14 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 07:39:14 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 07:39:14 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 07:39:14 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 07:39:14 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 07:39:14 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 07:39:14 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 07:39:14 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 07:39:14 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 07:39:14 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 07:39:14 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 07:39:14 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 07:39:14 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 07:39:14 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 07:39:14 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 07:39:14 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 07:39:14 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 07:39:14 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 07:39:14 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 07:39:15 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 07:39:15 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 07:39:15 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 07:39:15 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 07:39:15 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 07:39:15 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 07:39:15 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 07:39:15 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 07:39:15 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 07:39:15 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 07:39:15 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 07:39:15 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 07:39:15 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 07:39:15 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 07:39:15 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 07:39:16 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 07:39:16 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 07:39:16 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 07:39:16 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 07:39:16 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 07:39:16 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 07:39:16 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 07:39:16 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 07:39:16 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 07:39:16 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 07:39:16 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 07:39:16 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 07:39:16 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 07:39:16 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 07:39:16 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 07:39:16 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 07:39:17 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 07:39:17 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 07:39:17 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 07:39:17 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 07:39:17 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 07:39:17 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 07:39:17 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 07:39:17 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 07:39:17 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 07:39:17 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 07:39:17 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 07:39:17 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 07:39:17 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 07:39:17 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 07:39:17 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 07:39:17 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 07:39:17 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 07:39:17 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 07:39:17 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 07:39:17 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 07:39:17 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 07:39:17 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 07:39:17 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 07:39:17 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 07:39:17 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 07:39:18 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 07:39:18 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 07:39:18 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 07:39:18 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 07:39:18 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 07:39:18 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 07:39:18 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 07:39:18 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 07:39:18 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 07:39:18 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 07:39:18 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 07:39:18 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 07:39:18 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 07:39:18 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 07:39:18 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 07:39:18 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 07:39:18 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 07:39:18 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 07:39:18 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 07:39:18 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 07:39:19 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 07:39:19 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 07:39:19 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 07:39:19 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 07:39:19 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 07:39:19 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 07:39:19 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 07:39:19 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 07:39:19 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 07:39:19 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 07:39:19 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 07:39:19 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 07:39:19 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 07:39:20 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 07:39:20 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 07:39:20 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 07:39:20 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 07:39:20 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 07:39:20 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 07:39:20 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 07:39:20 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 07:39:20 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 07:39:20 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 07:39:20 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 07:39:20 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 07:39:21 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 07:39:21 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 07:39:21 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 07:39:21 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 07:39:21 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 07:39:21 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 07:39:21 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 07:39:22 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 07:39:22 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 07:39:22 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 07:39:22 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 07:39:22 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 07:39:22 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 07:39:22 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 07:39:22 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 07:39:22 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 07:39:22 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 07:39:23 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 07:39:23 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 07:39:23 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 07:39:23 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 07:39:23 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 07:39:23 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 07:39:23 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 07:39:23 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 07:39:23 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 07:39:23 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 07:39:23 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 07:39:24 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 07:39:24 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 07:39:24 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 07:39:24 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 07:39:24 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 07:39:24 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 07:39:24 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 07:39:24 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 07:39:24 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 07:39:24 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 07:39:24 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 07:39:24 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 07:39:25 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 07:39:25 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 07:39:25 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 07:39:25 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 07:39:25 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 07:39:25 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 07:39:26 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 07:39:26 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 07:39:26 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 07:39:26 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 07:39:26 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 07:39:26 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 07:39:26 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 07:39:26 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 07:39:26 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 07:39:26 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 07:39:27 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 07:39:27 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 07:39:27 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 07:39:27 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 07:39:27 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 07:39:27 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 07:39:27 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 07:39:27 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 07:39:27 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 07:39:27 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 07:39:27 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 07:39:27 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 07:39:27 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 07:39:27 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 07:39:27 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 07:39:27 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 07:39:27 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 07:39:28 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 07:39:28 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 07:39:28 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 07:39:28 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 07:39:28 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 07:39:28 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 07:39:28 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 07:39:28 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 07:39:28 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 07:39:28 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 07:39:28 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 07:39:28 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 07:39:28 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 07:39:28 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 07:39:28 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 07:39:28 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 07:39:28 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 07:39:28 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 07:39:28 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 07:39:28 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 07:39:28 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 07:39:28 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 07:39:28 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 07:39:28 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 07:39:29 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 07:39:29 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 07:39:29 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 07:39:29 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 07:39:29 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 07:39:29 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 07:39:29 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 07:39:29 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 07:39:29 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 07:39:29 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 07:39:29 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 07:39:29 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 07:39:29 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 07:39:29 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 07:39:29 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 07:39:29 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 07:39:29 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 07:39:29 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 07:39:29 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 07:39:29 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 07:39:29 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 07:39:29 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 07:39:29 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 07:39:29 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 07:39:29 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 07:39:29 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 07:39:29 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 07:39:29 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 07:39:29 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 07:39:29 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 07:39:30 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 07:39:30 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 07:39:30 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 07:39:30 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 07:39:30 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 07:39:30 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 07:39:30 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 07:39:30 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 07:39:30 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 07:39:30 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 07:39:30 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 07:39:30 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 07:39:30 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 07:39:30 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 07:39:30 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 07:39:30 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 07:39:30 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 07:39:30 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 07:39:30 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 07:39:30 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 07:39:30 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 07:39:30 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 07:39:30 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 07:39:30 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 07:39:30 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 07:39:30 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 07:39:30 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 07:39:30 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 07:39:30 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 07:39:30 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 07:39:31 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 07:39:31 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 07:39:31 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 07:39:31 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 07:39:31 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 07:39:31 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 07:39:31 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 07:39:31 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 07:39:31 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 07:39:31 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 07:39:31 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 07:39:31 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 07:39:31 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 07:39:31 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 07:39:31 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 07:39:31 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 07:39:31 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 07:39:31 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 07:39:31 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 07:39:31 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 07:39:31 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 07:39:31 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 07:39:31 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 07:39:31 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 07:39:32 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 07:39:32 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 07:39:32 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 07:39:32 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 07:39:32 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 07:39:32 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 07:39:32 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 07:39:32 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 07:39:32 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 07:39:32 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 07:39:32 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 07:39:32 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 07:39:33 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 07:39:33 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 07:39:33 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 07:39:33 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 07:39:33 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 07:39:33 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 07:39:33 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 07:39:33 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 07:39:33 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 07:39:33 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 07:39:33 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 07:39:33 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 07:39:33 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 07:39:34 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 07:39:34 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 07:39:34 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 07:39:34 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 07:39:34 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 07:39:34 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 07:39:34 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 07:39:35 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 07:39:35 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 07:39:35 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 07:39:35 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 07:39:35 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 07:39:35 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 07:39:36 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 07:39:36 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 07:39:36 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 07:39:36 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 07:39:37 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 07:39:37 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 07:39:37 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 07:39:37 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 07:39:37 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 07:39:37 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 07:39:37 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 07:39:38 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 07:39:38 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 07:39:38 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 07:39:38 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 07:39:38 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 07:39:38 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 07:39:38 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 07:39:38 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 07:39:38 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 07:39:38 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 07:39:38 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 07:39:39 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 07:39:39 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 07:39:39 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 07:39:39 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 07:39:39 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 07:39:39 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 07:39:39 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 07:39:39 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 07:39:39 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 07:39:39 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 07:39:39 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 07:39:39 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 07:39:39 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 07:39:39 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 07:39:39 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 07:39:39 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 07:39:39 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 07:39:39 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 07:39:39 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 07:39:39 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 07:39:39 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 07:39:40 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 07:39:40 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 07:39:40 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 07:39:40 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 07:39:40 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 07:39:40 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 07:39:40 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 07:39:40 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 07:39:40 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 07:39:40 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 07:39:40 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 07:39:40 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 07:39:40 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 07:39:40 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 07:39:40 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 07:39:41 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 07:39:41 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 07:39:41 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 07:39:41 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 07:39:41 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 07:39:42 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 07:39:42 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 07:39:42 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 07:39:42 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 07:39:42 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 07:39:43 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 07:39:43 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 07:39:43 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 07:39:43 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 07:39:43 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 07:39:43 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 07:39:43 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 07:39:44 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 07:39:44 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 07:39:44 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 07:39:44 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 07:39:44 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 07:39:44 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 07:39:44 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 07:39:44 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 07:39:44 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 07:39:44 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 07:39:44 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 07:39:44 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 07:39:44 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 07:39:44 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 07:39:45 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 07:39:45 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 07:39:45 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 07:39:45 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 07:39:45 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 07:39:45 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 07:39:45 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 07:39:45 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 07:39:45 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 07:39:45 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 07:39:45 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 07:39:45 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 07:39:45 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 07:39:45 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 07:39:45 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 07:39:45 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 07:39:46 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 07:39:46 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 07:39:46 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 07:39:46 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 07:39:46 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 07:39:46 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 07:39:46 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 07:39:46 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 07:39:46 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 07:39:46 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 07:39:46 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 07:39:46 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 07:39:46 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 07:39:46 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 07:39:46 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 07:39:46 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 07:39:46 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 07:39:47 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 07:39:47 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 07:39:47 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 07:39:47 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 07:39:47 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 07:39:47 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 07:39:47 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 07:39:47 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 07:39:47 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 07:39:47 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 07:39:47 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 07:39:47 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 07:39:47 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 07:39:47 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 07:39:47 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 07:39:47 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 07:39:47 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 07:39:47 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 07:39:48 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 07:39:48 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 07:39:48 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 07:39:48 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 07:39:48 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 07:39:48 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 07:39:48 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 07:39:48 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 07:39:48 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 07:39:48 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 07:39:48 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 07:39:48 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 07:39:48 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 07:39:48 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 07:39:48 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 07:39:48 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 07:39:49 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 07:39:49 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 07:39:49 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 07:39:49 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 07:39:49 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 07:39:49 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 07:39:49 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 07:39:49 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 07:39:49 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 07:39:50 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 07:39:50 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 07:39:50 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 07:39:50 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 07:39:50 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 07:39:50 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 07:39:50 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 07:39:51 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 07:39:51 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 07:39:51 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 07:39:51 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 07:39:51 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 07:39:51 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 07:39:51 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 07:39:51 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 07:39:51 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 07:39:51 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 07:39:52 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 07:39:52 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 07:39:52 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 07:39:52 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 07:39:52 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 07:39:52 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 07:39:52 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 07:39:52 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 07:39:52 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 07:39:52 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 07:39:52 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 07:39:52 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 07:39:52 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 07:39:52 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 07:39:52 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 07:39:52 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 07:39:53 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 07:39:53 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 07:39:53 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 07:39:53 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 07:39:53 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 07:39:53 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 07:39:53 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 07:39:53 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 07:39:53 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 07:39:53 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 07:39:53 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 07:39:53 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 07:39:53 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 07:39:53 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 07:39:53 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 07:39:54 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 07:39:54 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 07:39:54 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 07:39:54 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 07:39:54 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 07:39:54 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 07:39:54 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 07:39:54 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 07:39:54 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 07:39:54 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 07:39:54 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 07:39:54 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 07:39:55 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 07:39:55 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 07:39:55 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 07:39:55 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 07:39:55 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 07:39:55 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 07:39:55 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 07:39:55 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 07:39:55 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 07:39:55 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 07:39:55 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 07:39:55 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 07:39:55 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 07:39:56 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 07:39:56 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 07:39:56 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 07:39:56 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 07:39:56 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 07:39:56 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 07:39:56 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 07:39:56 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 07:39:56 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 07:39:56 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 07:39:56 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 07:39:56 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 07:39:56 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 07:39:57 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 07:39:57 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 07:39:57 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 07:39:57 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 07:39:57 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 07:39:57 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 07:39:57 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 07:39:57 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 07:39:57 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 07:39:57 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 07:39:58 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 07:39:58 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 07:39:58 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 07:39:58 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 07:39:58 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 07:39:58 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 07:39:58 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 07:39:58 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 07:39:58 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 07:39:58 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 07:39:58 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 07:39:58 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 07:39:58 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 07:39:59 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 07:39:59 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 07:39:59 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 07:39:59 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 07:39:59 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 07:39:59 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 07:39:59 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 07:39:59 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 07:39:59 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 07:39:59 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 07:39:59 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 07:39:59 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 07:39:59 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 07:39:59 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 07:39:59 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 07:39:59 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 07:39:59 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 07:39:59 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 07:39:59 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 07:39:59 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 07:39:59 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 07:39:59 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 07:39:59 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 07:40:00 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 07:40:00 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 07:40:00 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 07:40:00 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 07:40:00 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 07:40:00 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 07:40:00 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 07:40:00 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 07:40:00 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 07:40:00 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 07:40:00 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 07:40:00 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 07:40:00 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 07:40:00 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 07:40:00 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 07:40:00 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 07:40:00 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 07:40:00 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 07:40:00 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 07:40:01 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 07:40:01 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 07:40:01 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 07:40:01 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 07:40:01 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 07:40:01 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 07:40:01 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 07:40:01 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 07:40:01 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 07:40:01 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 07:40:01 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 07:40:01 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 07:40:01 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 07:40:02 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 07:40:02 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 07:40:02 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 07:40:02 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 07:40:02 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 07:40:02 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 07:40:02 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 07:40:02 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 07:40:03 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 07:40:03 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 07:40:03 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 07:40:03 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 07:40:04 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 07:40:04 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 07:40:04 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 07:40:04 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 07:40:04 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 07:40:04 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 07:40:04 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 07:40:04 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 07:40:04 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 07:40:04 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 07:40:04 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 07:40:04 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 07:40:05 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 07:40:05 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 07:40:05 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 07:40:05 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 07:40:05 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 07:40:05 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 07:40:05 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 07:40:06 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 07:40:06 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 07:40:06 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 07:40:06 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 07:40:06 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 07:40:06 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 07:40:06 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 07:40:06 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 07:40:06 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 07:40:06 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 07:40:06 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 07:40:06 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 07:40:07 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 07:40:07 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 07:40:07 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 07:40:07 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 07:40:07 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 07:40:07 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 07:40:07 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 07:40:07 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 07:40:07 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 07:40:07 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 07:40:07 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 07:40:07 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 07:40:07 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 07:40:07 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 07:40:07 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 07:40:07 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 07:40:08 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 07:40:08 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 07:40:08 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 07:40:08 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 07:40:08 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 07:40:08 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 07:40:08 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 07:40:08 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 07:40:08 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 07:40:08 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 07:40:08 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 07:40:08 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 07:40:08 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 07:40:08 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 07:40:08 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 07:40:09 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 07:40:09 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 07:40:09 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 07:40:09 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 07:40:09 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 07:40:09 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 07:40:10 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 07:40:10 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 07:40:10 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 07:40:10 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 07:40:10 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 07:40:10 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 07:40:10 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 07:40:10 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 07:40:10 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 07:40:10 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 07:40:10 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 07:40:10 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 07:40:11 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 07:40:11 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 07:40:11 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 07:40:11 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 07:40:11 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 07:40:11 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 07:40:11 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 07:40:11 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 07:40:11 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 07:40:11 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 07:40:12 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 07:40:12 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 07:40:12 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 07:40:12 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 07:40:12 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 07:40:12 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 07:40:12 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 07:40:12 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 07:40:12 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 07:40:12 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 07:40:12 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 07:40:13 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 07:40:13 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 07:40:13 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 07:40:13 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 07:40:13 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 07:40:13 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 07:40:13 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 07:40:13 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 07:40:13 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 07:40:14 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 07:40:14 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 07:40:14 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 07:40:14 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 07:40:14 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 07:40:14 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 07:40:14 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 07:40:14 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 07:40:14 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 07:40:14 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 07:40:14 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 07:40:15 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 07:40:15 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 07:40:15 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 07:40:15 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 07:40:15 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 07:40:15 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 07:40:15 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 07:40:15 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 07:40:15 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 07:40:15 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 07:40:15 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 07:40:16 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 07:40:16 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 07:40:16 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 07:40:16 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 07:40:16 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 07:40:16 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 07:40:16 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 07:40:16 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 07:40:16 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 07:40:16 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 07:40:16 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 07:40:16 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 07:40:17 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 07:40:17 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 07:40:17 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 07:40:17 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 07:40:17 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 07:40:17 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 07:40:17 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 07:40:17 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 07:40:17 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 07:40:17 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 07:40:17 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 07:40:17 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 07:40:17 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 07:40:17 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 07:40:18 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 07:40:18 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 07:40:18 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 07:40:18 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 07:40:18 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 07:40:18 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 07:40:18 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 07:40:18 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 07:40:18 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 07:40:18 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 07:40:18 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 07:40:19 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 07:40:19 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 07:40:19 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 07:40:19 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 07:40:19 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 07:40:19 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 07:40:19 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 07:40:19 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 07:40:19 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 07:40:19 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 07:40:19 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 07:40:19 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 07:40:19 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 07:40:19 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 07:40:20 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 07:40:20 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 07:40:20 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 07:40:20 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 07:40:20 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 07:40:20 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 07:40:20 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 07:40:20 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 07:40:20 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 07:40:21 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 07:40:21 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 07:40:21 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 07:40:21 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 07:40:21 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 07:40:21 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 07:40:21 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 07:40:21 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 07:40:21 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 07:40:22 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 07:40:22 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 07:40:22 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 07:40:22 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 07:40:22 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 07:40:22 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 07:40:22 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 07:40:22 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 07:40:22 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 07:40:22 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 07:40:22 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 07:40:22 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 07:40:22 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 07:40:22 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 07:40:22 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 07:40:23 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 07:40:23 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 07:40:23 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 07:40:23 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 07:40:23 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 07:40:23 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 07:40:23 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 07:40:23 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 07:40:23 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 07:40:23 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 07:40:23 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 07:40:23 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 07:40:23 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 07:40:23 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 07:40:24 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 07:40:24 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 07:40:24 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 07:40:24 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 07:40:24 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 07:40:24 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 07:40:24 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 07:40:24 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 07:40:24 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 07:40:24 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 07:40:24 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 07:40:24 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 07:40:24 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 07:40:24 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 07:40:24 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 07:40:25 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 07:40:25 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 07:40:25 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 07:40:25 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 07:40:25 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 07:40:25 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 07:40:25 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 07:40:25 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 07:40:25 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 07:40:25 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 07:40:25 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 07:40:25 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 07:40:25 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 07:40:25 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 07:40:26 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 07:40:26 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 07:40:26 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 07:40:26 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 07:40:26 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 07:40:26 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 07:40:26 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 07:40:26 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 07:40:26 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 07:40:26 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 07:40:26 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 07:40:26 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 07:40:26 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 07:40:26 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 07:40:27 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 07:40:27 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 07:40:27 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 07:40:27 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 07:40:27 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 07:40:27 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 07:40:27 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 07:40:27 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 07:40:27 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 07:40:27 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 07:40:27 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 07:40:27 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 07:40:27 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 07:40:27 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 07:40:28 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 07:40:28 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 07:40:28 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 07:40:28 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 07:40:28 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 07:40:28 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 07:40:28 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 07:40:28 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 07:40:28 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 07:40:28 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 07:40:28 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 07:40:28 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 07:40:28 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 07:40:28 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 07:40:29 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 07:40:29 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 07:40:29 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 07:40:29 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 07:40:29 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 07:40:29 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 07:40:29 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 07:40:29 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 07:40:29 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 07:40:29 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 07:40:29 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 07:40:29 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 07:40:29 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 07:40:29 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 07:40:30 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 07:40:30 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 07:40:30 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 07:40:30 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 07:40:30 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 07:40:30 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 07:40:30 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 07:40:30 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 07:40:30 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 07:40:30 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 07:40:30 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 07:40:30 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 07:40:30 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 07:40:30 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 07:40:30 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 07:40:31 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 07:40:31 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 07:40:31 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 07:40:31 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 07:40:31 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 07:40:31 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 07:40:31 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 07:40:31 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 07:40:31 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 07:40:31 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 07:40:31 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 07:40:31 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 07:40:32 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 07:40:32 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 07:40:32 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 07:40:32 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 07:40:32 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 07:40:32 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 07:40:32 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 07:40:32 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 07:40:32 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 07:40:32 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 07:40:32 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 07:40:33 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 07:40:33 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 07:40:33 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 07:40:33 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 07:40:33 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 07:40:33 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 07:40:33 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 07:40:33 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 07:40:33 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 07:40:33 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 07:40:33 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 07:40:33 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 07:40:33 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 07:40:34 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 07:40:34 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 07:40:34 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 07:40:34 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 07:40:34 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 07:40:34 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 07:40:34 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 07:40:34 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 07:40:34 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 07:40:34 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 07:40:34 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 07:40:34 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 07:40:34 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 07:40:34 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 07:40:35 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 07:40:35 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 07:40:35 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 07:40:35 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 07:40:35 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 07:40:35 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 07:40:35 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 07:40:35 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 07:40:35 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 07:40:35 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 07:40:35 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 07:40:35 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 07:40:36 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 07:40:36 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 07:40:36 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 07:40:36 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 07:40:36 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 07:40:36 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 07:40:36 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 07:40:36 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 07:40:36 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 07:40:36 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 07:40:36 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 07:40:37 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 07:40:37 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 07:40:37 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 07:40:37 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 07:40:37 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 07:40:37 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 07:40:37 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 07:40:37 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 07:40:37 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 07:40:37 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 07:40:37 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 07:40:37 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 07:40:38 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 07:40:38 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 07:40:38 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 07:40:38 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 07:40:38 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 07:40:38 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 07:40:38 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 07:40:38 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 07:40:38 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 07:40:38 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 07:40:38 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 07:40:39 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 07:40:39 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 07:40:39 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 07:40:39 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 07:40:39 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 07:40:39 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 07:40:39 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 07:40:39 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 07:40:39 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 07:40:39 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 07:40:39 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 07:40:39 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 07:40:40 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 07:40:40 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 07:40:40 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 07:40:40 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 07:40:40 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 07:40:40 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 07:40:40 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 07:40:40 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 07:40:40 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 07:40:40 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 07:40:41 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 07:40:41 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 07:40:41 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 07:40:41 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 07:40:41 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 07:40:41 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 07:40:41 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 07:40:41 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 07:40:41 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 07:40:41 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 07:40:41 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 07:40:41 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 07:40:41 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 07:40:41 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 07:40:41 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 07:40:42 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 07:40:42 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 07:40:42 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 07:40:42 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 07:40:42 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 07:40:42 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 07:40:42 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 07:40:42 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 07:40:42 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 07:40:42 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 07:40:42 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 07:40:42 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 07:40:42 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 07:40:43 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 07:40:43 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 07:40:43 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 07:40:43 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 07:40:43 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 07:40:43 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 07:40:43 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 07:40:43 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 07:40:43 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 07:40:43 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 07:40:43 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 07:40:43 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 07:40:43 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 07:40:44 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 07:40:44 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 07:40:44 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 07:40:44 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 07:40:44 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 07:40:44 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 07:40:44 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 07:40:44 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 07:40:44 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 07:40:44 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 07:40:45 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 07:40:45 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 07:40:45 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 07:40:45 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 07:40:45 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 07:40:45 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 07:40:45 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 07:40:45 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 07:40:45 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 07:40:45 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 07:40:45 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 07:40:46 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 07:40:46 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 07:40:46 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 07:40:46 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 07:40:46 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 07:40:46 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 07:40:46 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 07:40:46 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 07:40:46 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 07:40:47 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 07:40:47 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 07:40:47 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 07:40:47 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 07:40:47 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 07:40:47 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 07:40:47 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 07:40:47 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 07:40:47 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 07:40:47 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 07:40:47 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 07:40:47 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 07:40:48 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 07:40:48 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 07:40:48 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 07:40:48 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 07:40:48 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 07:40:48 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 07:40:48 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 07:40:48 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 07:40:48 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 07:40:48 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 07:40:48 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 07:40:48 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 07:40:48 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 07:40:48 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 07:40:49 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 07:40:49 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 07:40:49 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 07:40:49 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 07:40:49 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 07:40:49 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 07:40:49 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 07:40:49 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 07:40:49 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 07:40:50 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 07:40:50 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 07:40:50 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 07:40:50 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 07:40:50 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 07:40:50 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 07:40:50 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 07:40:50 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 07:40:50 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 07:40:50 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 07:40:51 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 07:40:51 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 07:40:51 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 07:40:51 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 07:40:51 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 07:40:51 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 07:40:51 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 07:40:51 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 07:40:51 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 07:40:51 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 07:40:51 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 07:40:51 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 07:40:51 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 07:40:52 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 07:40:52 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 07:40:52 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 07:40:52 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 07:40:52 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 07:40:52 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 07:40:52 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 07:40:52 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 07:40:52 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 07:40:52 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 07:40:52 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 07:40:53 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 07:40:53 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 07:40:53 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 07:40:53 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 07:40:53 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 07:40:53 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 07:40:53 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 07:40:53 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 07:40:53 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 07:40:53 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 07:40:53 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 07:40:53 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 07:40:54 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 07:40:54 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 07:40:54 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 07:40:54 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 07:40:54 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 07:40:54 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 07:40:54 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 07:40:54 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 07:40:54 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 07:40:55 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 07:40:55 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 07:40:55 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 07:40:55 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 07:40:55 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 07:40:55 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 07:40:56 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 07:40:56 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 07:40:56 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 07:40:56 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 07:40:56 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 07:40:56 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 07:40:56 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 07:40:56 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 07:40:56 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 07:40:57 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 07:40:57 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 07:40:57 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 07:40:57 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 07:40:57 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 07:40:57 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 07:40:57 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 07:40:57 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 07:40:57 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 07:40:57 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 07:40:58 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 07:40:58 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 07:40:58 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 07:40:58 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 07:40:58 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 07:40:58 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 07:40:58 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 07:40:58 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 07:40:58 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 07:40:58 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 07:40:58 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 07:40:59 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 07:40:59 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 07:40:59 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 07:40:59 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 07:40:59 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 07:40:59 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 07:40:59 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 07:40:59 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 07:40:59 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 07:40:59 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 07:40:59 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 07:40:59 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 07:41:00 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 07:41:00 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 07:41:00 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 07:41:00 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 07:41:00 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 07:41:00 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 07:41:00 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 07:41:00 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 07:41:00 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 07:41:00 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 07:41:00 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 07:41:00 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 07:41:00 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 07:41:00 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 07:41:01 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 07:41:01 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 07:41:01 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 07:41:01 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 07:41:01 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 07:41:01 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 07:41:01 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 07:41:01 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 07:41:01 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 07:41:01 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 07:41:01 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 07:41:01 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 07:41:01 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 07:41:01 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 07:41:02 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 07:41:02 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 07:41:02 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 07:41:02 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 07:41:02 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 07:41:02 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 07:41:02 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 07:41:02 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 07:41:02 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 07:41:02 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 07:41:02 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 07:41:02 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 07:41:02 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 07:41:02 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 07:41:02 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 07:41:02 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 07:41:02 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 07:41:03 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 07:41:03 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 07:41:03 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 07:41:03 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 07:41:03 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 07:41:03 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 07:41:03 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 07:41:03 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 07:41:03 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 07:41:03 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 07:41:03 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 07:41:03 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 07:41:03 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 07:41:04 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 07:41:04 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 07:41:04 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 07:41:04 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 07:41:04 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 07:41:04 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 07:41:04 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:07:02 --> Severity: Notice --> Undefined variable: fdate C:\xampp\htdocs\ria\application\controllers\cashbook.php 1172
+ERROR - 2019-01-10 08:07:02 --> Severity: Notice --> Undefined variable: tdate C:\xampp\htdocs\ria\application\controllers\cashbook.php 1172
+ERROR - 2019-01-10 08:07:02 --> Severity: Notice --> Undefined variable: fa C:\xampp\htdocs\ria\application\controllers\cashbook.php 1172
+ERROR - 2019-01-10 08:07:02 --> Severity: Notice --> Undefined variable: aa C:\xampp\htdocs\ria\application\controllers\cashbook.php 1172
+ERROR - 2019-01-10 08:07:02 --> Severity: Notice --> Undefined variable: financialyear C:\xampp\htdocs\ria\application\views\bankstatement.php 2
+ERROR - 2019-01-10 08:07:02 --> Severity: Warning --> Invalid argument supplied for foreach() C:\xampp\htdocs\ria\application\views\bankstatement.php 2
+ERROR - 2019-01-10 08:07:03 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 85
+ERROR - 2019-01-10 08:07:03 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 85
+ERROR - 2019-01-10 08:07:03 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 86
+ERROR - 2019-01-10 08:07:03 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 86
+ERROR - 2019-01-10 08:07:03 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 87
+ERROR - 2019-01-10 08:07:03 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 87
+ERROR - 2019-01-10 08:07:03 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 137
+ERROR - 2019-01-10 08:07:03 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 137
+ERROR - 2019-01-10 08:07:03 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 138
+ERROR - 2019-01-10 08:07:03 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 138
+ERROR - 2019-01-10 08:07:03 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 139
+ERROR - 2019-01-10 08:07:03 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 139
+ERROR - 2019-01-10 08:07:15 --> Severity: Notice --> Undefined variable: financialyear C:\xampp\htdocs\ria\application\views\bankinvoice.php 2
+ERROR - 2019-01-10 08:07:15 --> Severity: Warning --> Invalid argument supplied for foreach() C:\xampp\htdocs\ria\application\views\bankinvoice.php 2
+ERROR - 2019-01-10 08:07:15 --> Severity: Notice --> Undefined variable: cash C:\xampp\htdocs\ria\application\views\bankinvoice.php 80
+ERROR - 2019-01-10 08:07:15 --> Severity: Notice --> Undefined variable: bankid C:\xampp\htdocs\ria\application\views\bankinvoice.php 82
+ERROR - 2019-01-10 08:07:20 --> Severity: Notice --> Undefined variable: financialyear C:\xampp\htdocs\ria\application\views\bankinvoice.php 2
+ERROR - 2019-01-10 08:07:20 --> Severity: Warning --> Invalid argument supplied for foreach() C:\xampp\htdocs\ria\application\views\bankinvoice.php 2
+ERROR - 2019-01-10 08:07:20 --> Severity: Notice --> Undefined variable: cash C:\xampp\htdocs\ria\application\views\bankinvoice.php 80
+ERROR - 2019-01-10 08:07:21 --> Severity: Notice --> Undefined variable: bankid C:\xampp\htdocs\ria\application\views\bankinvoice.php 82
+ERROR - 2019-01-10 08:07:21 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:07:21 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:07:21 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:07:21 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:07:21 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:07:21 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:07:21 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:07:21 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:07:21 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:07:21 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:07:21 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:07:21 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:07:22 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:07:22 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:07:22 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:07:22 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:07:22 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:07:22 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:07:22 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:07:22 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:07:22 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:07:22 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:07:22 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:07:22 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:07:22 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:07:23 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:07:23 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:07:23 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:07:23 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:07:23 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:07:23 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:07:23 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:07:23 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:07:23 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:07:23 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:07:23 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:07:23 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:07:23 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:07:24 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:07:24 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:07:24 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:07:24 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:07:24 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:07:24 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:07:24 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:07:24 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:07:24 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:07:24 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:07:24 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:07:24 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:07:25 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:07:25 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:07:25 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:07:25 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:07:25 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:07:25 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:07:25 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:07:25 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:07:25 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:07:25 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:07:25 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:07:25 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:07:25 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:07:26 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:07:26 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:07:26 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:07:26 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:07:26 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:07:26 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:07:26 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:07:26 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:07:26 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:07:26 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:07:26 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:07:26 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:07:26 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:07:27 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:07:27 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:07:27 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:07:27 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:07:27 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:07:27 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:07:27 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:07:27 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:07:27 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:07:27 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:07:27 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:07:27 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:07:27 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:07:28 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:07:28 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:07:28 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:07:28 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:07:28 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:07:28 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:07:28 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:07:28 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:07:28 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:07:29 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:07:29 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:07:29 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:07:29 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:07:29 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:07:29 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:07:29 --> Severity: Notice --> Undefined variable: financialyear C:\xampp\htdocs\ria\application\views\bankinvoice.php 2
+ERROR - 2019-01-10 08:07:30 --> Severity: Warning --> Invalid argument supplied for foreach() C:\xampp\htdocs\ria\application\views\bankinvoice.php 2
+ERROR - 2019-01-10 08:07:30 --> Severity: Notice --> Undefined variable: cash C:\xampp\htdocs\ria\application\views\bankinvoice.php 80
+ERROR - 2019-01-10 08:07:30 --> Severity: Notice --> Undefined variable: bankid C:\xampp\htdocs\ria\application\views\bankinvoice.php 82
+ERROR - 2019-01-10 08:07:30 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:07:30 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:07:30 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:07:30 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:07:30 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:07:30 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:07:30 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:07:30 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:07:30 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:07:30 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:07:30 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:07:30 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:07:30 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:07:31 --> Severity: Notice --> Undefined variable: financialyear C:\xampp\htdocs\ria\application\views\bankinvoice.php 2
+ERROR - 2019-01-10 08:07:31 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:07:31 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:07:31 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:07:31 --> Severity: Warning --> Invalid argument supplied for foreach() C:\xampp\htdocs\ria\application\views\bankinvoice.php 2
+ERROR - 2019-01-10 08:07:31 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:07:31 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:07:31 --> Severity: Notice --> Undefined variable: cash C:\xampp\htdocs\ria\application\views\bankinvoice.php 80
+ERROR - 2019-01-10 08:07:31 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:07:31 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:07:31 --> Severity: Notice --> Undefined variable: bankid C:\xampp\htdocs\ria\application\views\bankinvoice.php 82
+ERROR - 2019-01-10 08:07:31 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:07:31 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:07:31 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:07:31 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:07:31 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:07:31 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:07:31 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:07:31 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:07:31 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:07:31 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:07:31 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:07:31 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:07:31 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:07:31 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:07:31 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:07:31 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:07:31 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:07:31 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:07:31 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:07:31 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:07:31 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:07:32 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:07:32 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:07:32 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:07:32 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:07:32 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:07:32 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:07:32 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:07:32 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:07:32 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:07:32 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:07:32 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:07:32 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:07:32 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:07:32 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:07:32 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:07:32 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:07:32 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:07:32 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:07:32 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:07:32 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:07:32 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:07:32 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:07:32 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:07:32 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:07:32 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:07:32 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:07:32 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:07:32 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:07:32 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:07:32 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:07:32 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:07:32 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:07:32 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:07:32 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:07:33 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:07:33 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:07:33 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:07:33 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:07:33 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:07:33 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:07:33 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:07:33 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:07:33 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:07:33 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:07:33 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:07:33 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:07:33 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:07:33 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:07:33 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:07:33 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:07:33 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:07:33 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:07:33 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:07:33 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:07:33 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:07:33 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:07:33 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:07:33 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:07:33 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:07:33 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:07:33 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:07:33 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:07:33 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:07:33 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:07:33 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:07:34 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:07:34 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:07:34 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:07:34 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:07:34 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:07:34 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:07:34 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:07:34 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:07:34 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:07:34 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:07:34 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:07:34 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:07:34 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:07:34 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:07:34 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:07:34 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:07:34 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:07:34 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:07:34 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:07:34 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:07:34 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:07:34 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:07:34 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:07:34 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:07:34 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:07:34 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:07:34 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:07:34 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:07:34 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:07:34 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:07:35 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:07:35 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:07:35 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:07:35 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:07:35 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:07:35 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:07:35 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:07:35 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:07:35 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:07:35 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:07:35 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:07:35 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:07:35 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:07:35 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:07:35 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:07:35 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:07:35 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:07:35 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:07:35 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:07:35 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:07:35 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:07:35 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:07:35 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:07:35 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:07:35 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:07:35 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:07:36 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:07:36 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:07:36 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:07:36 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:07:36 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:07:36 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:07:36 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:07:36 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:07:36 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:07:36 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:07:36 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:07:36 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:07:36 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:07:36 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:07:36 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:07:36 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:07:36 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:07:36 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:07:36 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:07:36 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:07:36 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:07:36 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:07:37 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:07:37 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:07:37 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:07:37 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:07:37 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:07:37 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:07:37 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:07:37 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:07:37 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:07:37 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:07:38 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:07:38 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:07:38 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:07:38 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:07:38 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:07:38 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:07:38 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:07:38 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:07:38 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:07:38 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:07:38 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:07:38 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:07:39 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:07:39 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:07:39 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:07:39 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:07:39 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:07:39 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:07:39 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:07:39 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:07:39 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:07:39 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:07:39 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:07:39 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:07:39 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:07:39 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:07:39 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:07:39 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:07:39 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:07:39 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:07:39 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:07:39 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:07:39 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:07:39 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:07:39 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:07:39 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:07:39 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:07:39 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:07:39 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:07:39 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:07:39 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:07:39 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:07:39 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:07:40 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:07:40 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:07:40 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:07:40 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:07:40 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:07:40 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:07:40 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:07:40 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:07:40 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:07:40 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:07:40 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:07:40 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:07:40 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:07:40 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:07:40 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:07:40 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:07:40 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:07:40 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:07:40 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:07:40 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:07:40 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:07:40 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:07:40 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:07:40 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:07:40 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:07:40 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:07:40 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:07:40 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:07:40 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:07:40 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:07:40 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:07:40 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:07:40 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:07:40 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:07:40 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:07:40 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:07:41 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:07:41 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:07:41 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:07:41 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:07:41 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:07:41 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:07:41 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:07:41 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:07:41 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:07:41 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:07:41 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:07:41 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:07:41 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:07:41 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:07:41 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:07:41 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:07:41 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:07:41 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:07:41 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:07:41 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:07:41 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:07:41 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:07:41 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:07:41 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:07:41 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:07:41 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:07:41 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:07:41 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:07:41 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:07:41 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:07:41 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:07:41 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:07:41 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:07:41 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:07:41 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:07:41 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:07:42 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:07:42 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:07:42 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:07:42 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:07:42 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:07:42 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:07:42 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:07:42 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:07:42 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:07:42 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:07:42 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:07:42 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:07:42 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:07:42 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:07:42 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:07:42 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:07:42 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:07:42 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:07:42 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:07:42 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:07:42 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:07:42 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:07:42 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:07:42 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:07:42 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:07:43 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:07:43 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:07:43 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:07:43 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:07:43 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:07:43 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:07:43 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:07:43 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:07:43 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:07:43 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:07:43 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:07:43 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:07:43 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:07:44 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:07:44 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:07:44 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:07:44 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:07:44 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:07:44 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:07:44 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:07:44 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:07:44 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:07:44 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:07:44 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:07:44 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:07:44 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:07:44 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:07:45 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:07:45 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:07:45 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:07:45 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:07:45 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:07:45 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:07:45 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:07:45 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:07:45 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:07:45 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:07:45 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:07:45 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:07:45 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:07:45 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:07:45 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:07:45 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:07:46 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:07:46 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:07:46 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:07:46 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:07:46 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:07:46 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:07:46 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:07:46 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:07:46 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:07:46 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:07:46 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:07:46 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:07:46 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:07:46 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:07:46 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:07:46 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:07:46 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:07:46 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:07:46 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:07:46 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:07:46 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:07:46 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:07:46 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:07:46 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:07:47 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:07:47 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:07:47 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:07:47 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:07:47 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:07:47 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:07:47 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:07:47 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:07:47 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:07:47 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:07:47 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:07:47 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:07:47 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:07:47 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:07:47 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:07:47 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:07:47 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:07:47 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:07:47 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:07:47 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:07:47 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:07:47 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:07:47 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:07:47 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:07:47 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:07:47 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:07:47 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:07:47 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:07:47 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:07:47 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:07:48 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:07:48 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:07:48 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:07:48 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:07:48 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:07:48 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:07:48 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:07:48 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:07:48 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:07:48 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:07:48 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:07:48 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:07:48 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:07:48 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:07:48 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:07:48 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:07:48 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:07:48 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:07:48 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:07:48 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:07:48 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:07:48 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:07:48 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:07:48 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:07:48 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:07:48 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:07:48 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:07:48 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:07:48 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:07:48 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:07:48 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:07:48 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:07:48 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:07:48 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:07:48 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:07:49 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:07:49 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:07:49 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:07:49 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:07:49 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:07:49 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:07:49 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:07:49 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:07:49 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:07:49 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:07:49 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:07:49 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:07:49 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:07:49 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:07:49 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:07:49 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:07:49 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:07:49 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:07:49 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:07:49 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:07:49 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:07:49 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:07:49 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:07:49 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:07:49 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:07:49 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:07:49 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:07:49 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:07:49 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:07:49 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:07:49 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:07:49 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:07:49 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:07:49 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:07:49 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:07:49 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:07:49 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:07:49 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:07:49 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:07:49 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:07:49 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:07:50 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:07:50 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:07:50 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:07:50 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:07:50 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:07:50 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:07:50 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:07:50 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:07:50 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:07:50 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:07:50 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:07:50 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:07:50 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:07:50 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:07:50 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:07:50 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:07:50 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:07:50 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:07:50 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:07:50 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:07:50 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:07:50 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:07:50 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:07:50 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:07:50 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:07:50 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:07:50 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:07:50 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:07:50 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:07:50 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:07:50 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:07:50 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:07:50 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:07:50 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:07:50 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:07:50 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:07:50 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:07:50 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:07:50 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:07:50 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:07:50 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:07:50 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:07:51 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:07:51 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:07:51 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:07:51 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:07:51 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:07:51 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:07:51 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:07:51 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:07:51 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:07:51 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:07:51 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:07:51 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:07:51 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:07:51 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:07:51 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:07:51 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:07:51 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:07:51 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:07:51 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:07:51 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:07:51 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:07:51 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:07:51 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:07:51 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:07:51 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:07:51 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:07:51 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:07:51 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:07:51 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:07:51 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:07:51 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:07:51 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:07:51 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:07:51 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:07:51 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:07:51 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:07:51 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:07:51 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:07:51 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:07:51 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:07:51 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:07:51 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:07:51 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:07:51 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:07:52 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:07:52 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:07:52 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:07:52 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:07:52 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:07:52 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:07:52 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:07:52 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:07:52 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:07:52 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:07:52 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:07:52 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:07:52 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:07:52 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:07:52 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:07:52 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:07:52 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:07:52 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:07:52 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:07:53 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:07:53 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:07:53 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:07:53 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:07:53 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:07:53 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:07:53 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:07:53 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:07:53 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:07:53 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:07:53 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:07:53 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:07:53 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:07:53 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:07:53 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:07:54 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:07:54 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:07:54 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:07:54 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:07:54 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:07:54 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:07:54 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:07:54 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:07:54 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:07:54 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:07:54 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:07:54 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:07:54 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:07:55 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:07:55 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:07:55 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:07:55 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:07:55 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:07:55 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:07:55 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:07:55 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:07:55 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:07:55 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:07:55 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:07:55 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:07:55 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:07:55 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:07:55 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:07:55 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:07:55 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:07:55 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:07:55 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:07:55 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:07:56 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:07:56 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:07:56 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:07:56 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:07:56 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:07:56 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:07:56 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:07:56 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:07:56 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:07:56 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:07:56 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:07:56 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:07:56 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:07:56 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:07:56 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:07:56 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:07:56 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:07:56 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:07:56 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:07:56 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:07:56 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:07:56 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:07:56 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:07:56 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:07:56 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:07:56 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:07:56 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:07:56 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:07:56 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:07:57 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:07:57 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:07:57 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:07:57 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:07:57 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:07:57 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:07:57 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:07:57 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:07:57 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:07:57 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:07:57 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:07:57 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:07:57 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:07:57 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:07:57 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:07:57 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:07:57 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:07:57 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:07:57 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:07:57 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:07:57 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:07:57 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:07:57 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:07:57 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:07:57 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:07:57 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:07:57 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:07:57 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:07:57 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:07:57 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:07:57 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:07:57 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:07:57 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:07:57 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:07:57 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:07:58 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:07:58 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:07:58 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:07:58 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:07:58 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:07:58 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:07:58 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:07:58 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:07:58 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:07:58 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:07:58 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:07:58 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:07:58 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:07:58 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:07:58 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:07:58 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:07:58 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:07:58 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:07:58 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:07:58 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:07:58 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:07:58 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:07:58 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:07:58 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:07:58 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:07:58 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:07:58 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:07:58 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:07:58 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:07:58 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:07:59 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:07:59 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:07:59 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:07:59 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:07:59 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:07:59 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:07:59 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:07:59 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:07:59 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:07:59 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:07:59 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:07:59 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:07:59 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:07:59 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:07:59 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:07:59 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:07:59 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:07:59 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:07:59 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:07:59 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:07:59 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:07:59 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:07:59 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:07:59 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:07:59 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:07:59 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:07:59 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:08:00 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:08:00 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:08:00 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:08:00 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:08:00 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:08:00 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:08:00 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:08:00 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:08:00 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:08:00 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:08:00 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:08:00 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:08:00 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:08:00 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:08:00 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:08:00 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:08:00 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:08:00 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:08:00 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:08:00 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:08:00 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:08:00 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:08:00 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:08:00 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:08:00 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:08:00 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:08:00 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:08:00 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:08:00 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:08:00 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:08:00 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:08:00 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:08:00 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:08:01 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:08:01 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:08:01 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:08:01 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:08:01 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:08:01 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:08:01 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:08:01 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:08:01 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:08:01 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:08:01 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:08:01 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:08:01 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:08:01 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:08:01 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:08:01 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:08:01 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:08:01 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:08:01 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:08:01 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:08:01 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:08:01 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:08:01 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:08:01 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:08:01 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:08:01 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:08:01 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:08:01 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:08:01 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:08:01 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:08:01 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:08:01 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:08:01 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:08:02 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:08:02 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:08:02 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:08:02 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:08:02 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:08:02 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:08:02 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:08:02 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:08:02 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:08:02 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:08:02 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:08:02 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:08:02 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:08:02 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:08:02 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:08:02 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:08:02 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:08:02 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:08:02 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:08:02 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:08:02 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:08:02 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:08:02 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:08:02 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:08:02 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:08:02 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:08:02 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:08:02 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:08:02 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:08:02 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:08:02 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:08:02 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:08:02 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:08:03 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:08:03 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:08:03 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:08:03 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:08:03 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:08:03 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:08:03 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:08:03 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:08:03 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:08:03 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:08:03 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:08:03 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:08:03 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:08:03 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:08:03 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:08:03 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:08:03 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:08:03 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:08:03 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:08:03 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:08:03 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:08:03 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:08:03 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:08:03 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:08:04 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:08:04 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:08:04 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:08:04 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:08:04 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:08:04 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:08:04 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:08:04 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:08:04 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:08:04 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:08:04 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:08:04 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:08:04 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:08:04 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:08:04 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:08:04 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:08:04 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:08:04 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:08:04 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:08:04 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:08:04 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:08:05 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:08:05 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:08:05 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:08:05 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:08:05 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:08:05 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:08:05 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:08:05 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:08:05 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:08:05 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:08:05 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:08:05 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:08:06 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:08:06 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:08:06 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:08:06 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:08:06 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:08:06 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:08:06 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:08:06 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:08:06 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:08:06 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:08:06 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:08:06 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:08:06 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:08:06 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:08:06 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:08:07 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:08:07 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:08:07 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:08:07 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:08:07 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:08:07 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:08:07 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:08:07 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:08:07 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:08:07 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:08:07 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:08:07 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:08:07 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:08:07 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:08:07 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:08:07 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:08:07 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:08:07 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:08:07 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:08:07 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:08:07 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:08:07 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:08:07 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:08:07 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:08:07 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:08:07 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:08:07 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:08:07 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:08:08 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:08:08 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:08:08 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:08:08 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:08:08 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:08:08 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:08:08 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:08:08 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:08:08 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:08:08 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:08:08 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:08:08 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:08:08 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:08:08 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:08:08 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:08:08 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:08:08 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:08:08 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:08:08 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:08:08 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:08:08 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:08:08 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:08:08 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:08:08 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:08:08 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:08:08 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:08:08 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:08:08 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:08:08 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:08:08 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:08:09 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:08:09 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:08:09 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:08:09 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:08:09 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:08:09 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:08:09 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:08:09 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:08:09 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:08:09 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:08:09 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:08:09 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:08:09 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:08:09 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:08:09 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:08:09 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:08:09 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:08:09 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:08:09 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:08:09 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:08:09 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:08:09 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:08:09 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:08:09 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:08:09 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:08:09 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:08:09 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:08:09 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:08:09 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:08:09 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:08:09 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:08:09 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:08:09 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:08:10 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:08:10 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:08:10 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:08:10 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:08:10 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:08:10 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:08:10 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:08:10 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:08:10 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:08:10 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:08:10 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:08:10 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:08:10 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:08:10 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:08:10 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:08:10 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:08:10 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:08:10 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:08:10 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:08:10 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:08:10 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:08:10 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:08:10 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:08:10 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:08:10 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:08:10 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:08:10 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:08:10 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:08:10 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:08:10 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:08:10 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:08:10 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:08:10 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:08:11 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:08:11 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:08:11 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:08:11 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:08:11 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:08:11 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:08:11 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:08:11 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:08:11 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:08:11 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:08:11 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:08:11 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:08:11 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:08:11 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:08:11 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:08:11 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:08:11 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:08:11 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:08:11 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:08:11 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:08:11 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:08:11 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:08:11 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:08:11 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:08:11 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:08:11 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:08:11 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:08:11 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:08:11 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:08:11 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:08:11 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:08:11 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:08:11 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:08:12 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:08:12 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:08:12 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:08:12 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:08:12 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:08:12 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:08:12 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:08:12 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:08:12 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:08:12 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:08:12 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:08:12 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:08:12 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:08:12 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:08:12 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:08:12 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:08:12 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:08:12 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:08:12 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:08:12 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:08:12 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:08:12 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:08:12 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:08:12 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:08:12 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:08:12 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:08:12 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:08:12 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:08:12 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:08:12 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:08:13 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:08:13 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:08:13 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:08:13 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:08:13 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:08:13 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:08:13 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:08:13 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:08:13 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:08:13 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:08:13 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:08:13 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:08:13 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:08:13 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:08:13 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:08:13 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:08:13 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:08:13 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:08:13 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:08:13 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:08:13 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:08:13 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:08:13 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:08:13 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:08:13 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:08:13 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:08:13 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:08:13 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:08:13 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:08:13 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:08:13 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:08:13 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:08:13 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:08:14 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:08:14 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:08:14 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:08:14 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:08:14 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:08:14 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:08:14 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:08:14 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:08:14 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:08:14 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:08:14 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:08:14 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:08:14 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:08:14 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:08:14 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:08:14 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:08:14 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:08:14 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:08:14 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:08:14 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:08:14 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:08:14 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:08:14 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:08:14 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:08:14 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:08:14 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:08:14 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:08:14 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:08:14 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:08:14 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:08:14 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:08:14 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:08:14 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:08:15 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:08:15 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:08:15 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:08:15 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:08:15 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:08:15 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:08:15 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:08:15 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:08:15 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:08:15 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:08:15 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:08:15 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:08:15 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:08:15 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:08:15 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:08:15 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:08:15 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:08:15 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:08:15 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:08:15 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:08:15 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:08:15 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:08:15 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:08:15 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:08:15 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:08:15 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:08:15 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:08:15 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:08:15 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:08:15 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:08:15 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:08:15 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:08:16 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:08:16 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:08:16 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:08:16 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:08:16 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:08:16 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:08:16 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:08:16 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:08:16 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:08:16 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:08:16 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:08:16 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:08:16 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:08:16 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:08:16 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:08:16 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:08:16 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:08:16 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:08:16 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:08:16 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:08:16 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:08:16 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:08:16 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:08:16 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:08:16 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:08:16 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:08:16 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:08:16 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:08:16 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:08:16 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:08:17 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:08:17 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:08:17 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:08:17 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:08:17 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:08:17 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:08:17 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:08:17 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:08:17 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:08:17 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:08:17 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:08:17 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:08:17 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:08:17 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:08:17 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:08:17 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:08:17 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:08:17 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:08:17 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:08:17 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:08:17 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:08:17 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:08:17 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:08:17 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:08:17 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:08:17 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:08:17 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:08:17 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:08:17 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:08:17 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:08:17 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:08:17 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:08:17 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:08:18 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:08:18 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:08:18 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:08:18 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:08:18 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:08:18 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:08:18 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:08:18 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:08:18 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:08:18 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:08:18 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:08:18 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:08:18 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:08:18 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:08:18 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:08:18 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:08:18 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:08:18 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:08:18 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:08:18 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:08:18 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:08:18 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:08:18 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:08:18 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:08:18 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:08:18 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:08:18 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:08:18 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:08:19 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:08:19 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:08:19 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:08:19 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:08:19 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:08:19 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:08:19 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:08:19 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:08:19 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:08:19 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:08:19 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:08:19 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:08:19 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:08:19 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:08:19 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:08:19 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:08:19 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:08:19 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:08:19 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:08:19 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:08:19 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:08:19 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:08:19 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:08:19 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:08:19 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:08:19 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:08:19 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:08:19 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:08:19 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:08:19 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:08:19 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:08:19 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:08:19 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:08:20 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:08:20 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:08:20 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:08:20 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:08:20 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:08:20 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:08:20 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:08:20 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:08:20 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:08:20 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:08:20 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:08:20 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:08:20 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:08:20 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:08:20 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:08:20 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:08:20 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:08:20 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:08:20 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:08:20 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:08:20 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:08:20 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:08:20 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:08:20 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:08:20 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:08:20 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:08:20 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:08:20 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:08:20 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:08:20 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:08:21 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:08:21 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:08:21 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:08:21 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:08:21 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:08:21 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:08:21 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:08:21 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:08:21 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:08:21 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:08:21 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:08:21 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:08:21 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:08:21 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:08:21 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:08:21 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:08:21 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:08:21 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:08:21 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:08:21 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:08:21 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:08:21 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:08:21 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:08:21 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:08:21 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:08:21 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:08:21 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:08:21 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:08:21 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:08:21 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:08:21 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:08:21 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:08:21 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:08:22 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:08:22 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:08:22 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:08:22 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:08:22 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:08:22 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:08:22 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:08:22 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:08:22 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:08:22 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:08:22 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:08:22 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:08:22 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:08:22 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:08:22 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:08:22 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:08:22 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:08:22 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:08:22 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:08:22 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:08:22 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:08:22 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:08:22 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:08:22 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:08:22 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:08:22 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:08:22 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:08:22 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:08:22 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:08:22 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:08:22 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:08:22 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:08:23 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:08:23 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:08:23 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:08:23 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:08:23 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:08:23 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:08:23 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:08:23 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:08:23 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:08:23 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:08:23 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:08:23 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:08:23 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:08:23 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:08:23 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:08:23 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:08:23 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:08:23 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:08:23 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:08:23 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:08:23 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:08:23 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:08:23 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:08:23 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:08:23 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:08:23 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:08:24 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:08:24 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:08:24 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:08:24 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:08:24 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:08:24 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:08:24 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:08:24 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:08:24 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:08:24 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:08:24 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:08:24 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:08:24 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:08:24 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:08:24 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:08:24 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:08:24 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:08:24 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:08:24 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:08:24 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:08:24 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:08:24 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:08:24 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:08:24 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:08:24 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:08:24 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:08:24 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:08:24 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:08:24 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:08:24 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:08:24 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:08:24 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:08:24 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:08:25 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:08:25 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:08:25 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:08:25 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:08:25 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:08:25 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:08:25 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:08:25 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:08:25 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:08:25 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:08:25 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:08:25 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:08:25 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:08:25 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:08:25 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:08:25 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:08:25 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:08:25 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:08:25 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:08:25 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:08:25 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:08:25 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:08:25 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:08:25 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:08:25 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:08:25 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:08:25 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:08:25 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:08:25 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:08:25 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:08:26 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:08:26 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:08:26 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:08:26 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:08:26 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:08:26 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:08:26 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:08:26 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:08:26 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:08:26 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:08:26 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:08:26 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:08:26 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:08:26 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:08:26 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:08:26 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:08:26 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:08:26 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:08:26 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:08:26 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:08:26 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:08:26 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:08:26 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:08:26 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:08:26 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:08:26 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:08:26 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:08:26 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:08:26 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:08:26 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:08:26 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:08:26 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:08:27 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:08:27 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:08:27 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:08:27 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:08:27 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:08:27 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:08:27 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:08:27 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:08:27 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:08:27 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:08:27 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:08:27 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:08:27 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:08:27 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:08:27 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:08:27 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:08:27 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:08:27 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:08:27 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:08:27 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:08:27 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:08:27 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:08:27 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:08:27 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:08:27 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:08:27 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:08:27 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:08:27 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:08:27 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:08:27 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:08:27 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:08:28 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:08:28 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:08:28 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:08:28 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:08:28 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:08:28 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:08:28 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:08:28 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:08:28 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:08:28 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:08:28 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:08:28 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:08:28 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:08:28 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:08:28 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:08:28 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:08:28 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:08:28 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:08:28 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:08:28 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:08:28 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:08:28 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:08:28 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:08:28 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:08:28 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:08:28 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:08:28 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:08:28 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:08:28 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:08:29 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:08:29 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:08:29 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:08:29 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:08:29 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:08:29 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:08:29 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:08:29 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:08:29 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:08:29 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:08:29 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:08:29 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:08:29 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:08:29 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:08:29 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:08:29 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:08:29 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:08:29 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:08:29 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:08:29 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:08:29 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:08:29 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:08:29 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:08:29 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:08:29 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:08:29 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:08:29 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:08:29 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:08:29 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:08:29 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:08:29 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:08:29 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:08:30 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:08:30 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:08:30 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:08:30 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:08:30 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:08:30 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:08:30 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:08:30 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:08:30 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:08:30 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:08:30 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:08:30 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:08:30 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:08:30 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:08:30 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:08:30 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:08:30 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:08:30 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:08:30 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:08:30 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:08:30 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:08:30 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:08:30 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:08:30 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:08:30 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:08:30 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:08:30 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:08:30 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:08:30 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:08:30 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:08:30 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:08:30 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:08:31 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:08:31 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:08:31 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:08:31 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:08:31 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:08:31 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:08:31 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:08:31 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:08:31 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:08:31 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:08:31 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:08:31 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:08:31 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:08:31 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:08:31 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:08:31 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:08:31 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:08:31 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:08:31 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:08:31 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:08:31 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:08:31 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:08:31 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:08:31 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:08:31 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:08:31 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:08:31 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:08:31 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:08:31 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:08:31 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:08:32 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:08:32 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:08:32 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:08:32 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:08:32 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:08:32 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:08:32 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:08:32 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:08:32 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:08:32 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:08:32 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:08:32 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:08:32 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:08:32 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:08:32 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:08:32 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:08:32 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:08:32 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:08:32 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:08:32 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:08:32 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:08:32 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:08:32 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:08:32 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:08:32 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:08:32 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:08:32 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:08:32 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:08:32 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:08:32 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:08:32 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:08:32 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:08:33 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:08:33 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:08:33 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:08:33 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:08:33 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:08:33 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:08:33 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:08:33 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:08:33 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:08:33 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:08:33 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:08:33 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:08:33 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:08:33 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:08:33 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:08:33 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:08:33 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:08:33 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:08:33 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:08:33 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:08:33 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:08:33 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:08:33 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:08:33 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:08:33 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:08:33 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:08:33 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:08:33 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:08:33 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:08:33 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:08:34 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:08:34 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:08:34 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:08:34 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:08:34 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:08:34 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:08:34 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:08:34 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:08:34 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:08:34 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:08:34 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:08:34 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:08:34 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:08:34 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:08:34 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:08:34 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:08:34 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:08:34 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:08:34 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:08:34 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:08:34 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:08:34 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:08:34 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:08:34 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:08:34 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:08:34 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:08:34 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:08:34 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:08:34 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:08:35 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:08:35 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:08:35 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:08:35 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:08:35 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:08:35 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:08:35 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:08:35 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:08:35 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:08:35 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:08:35 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:08:35 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:08:35 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:08:35 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:08:35 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:08:35 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:08:35 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:08:35 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:08:35 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:08:35 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:08:35 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:08:35 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:08:35 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:08:35 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:08:35 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:08:35 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:08:35 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:08:35 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:08:35 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:08:35 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:08:35 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:08:35 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:08:35 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:08:36 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:08:36 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:08:36 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:08:36 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:08:36 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:08:36 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:08:36 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:08:36 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:08:36 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:08:36 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:08:36 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:08:36 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:08:36 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:08:36 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:08:36 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:08:36 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:08:36 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:08:36 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:08:36 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:08:36 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:08:36 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:08:36 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:08:36 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:08:36 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:08:36 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:08:36 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:08:36 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:08:36 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:08:36 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:08:36 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:08:37 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:08:37 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:08:37 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:08:37 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:08:37 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:08:37 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:08:37 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:08:37 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:08:37 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:08:37 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:08:37 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:08:37 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:08:37 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:08:37 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:08:37 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:08:37 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:08:37 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:08:37 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:08:37 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:08:37 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:08:37 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:08:37 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:08:37 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:08:37 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:08:37 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:08:37 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:08:37 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:08:37 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:08:37 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:08:37 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:08:37 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:08:37 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:08:37 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:08:38 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:08:38 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:08:38 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:08:38 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:08:38 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:08:38 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:08:38 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:08:38 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:08:38 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:08:38 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:08:38 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:08:38 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:08:38 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:08:38 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:08:38 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:08:38 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:08:38 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:08:38 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:08:38 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:08:38 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:08:38 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:08:38 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:08:38 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:08:38 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:08:38 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:08:39 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:08:39 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:08:39 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:08:39 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:08:39 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:08:39 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:08:39 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:08:39 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:08:39 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:08:39 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:08:39 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:08:39 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:08:39 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:08:39 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:08:39 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:08:39 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:08:39 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:08:39 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:08:39 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:08:39 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:08:39 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:08:39 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:08:39 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:08:39 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:08:39 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:08:39 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:08:39 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:08:39 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:08:39 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:08:39 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:08:39 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:08:39 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:08:39 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:08:40 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:08:40 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:08:40 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:08:40 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:08:40 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:08:40 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:08:40 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:08:40 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:08:40 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:08:40 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:08:40 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:08:40 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:08:40 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:08:40 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:08:40 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:08:40 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:08:40 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:08:40 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:08:40 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:08:40 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:08:40 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:08:40 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:08:40 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:08:40 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:08:40 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:08:40 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:08:40 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:08:40 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:08:40 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:08:40 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:08:41 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:08:41 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:08:41 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:08:41 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:08:41 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:08:41 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:08:41 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:08:41 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:08:41 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:08:41 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:08:41 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:08:41 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:08:41 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:08:41 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:08:41 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:08:41 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:08:41 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:08:41 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:08:41 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:08:41 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:08:41 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:08:41 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:08:41 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:08:41 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:08:41 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:08:41 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:08:41 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:08:41 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:08:41 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:08:42 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:08:42 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:08:42 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:08:42 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:08:42 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:08:42 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:08:42 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:08:42 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:08:42 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:08:42 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:08:42 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:08:42 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:08:42 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:08:42 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:08:42 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:08:42 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:08:42 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:08:42 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:08:42 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:08:42 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:08:42 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:08:42 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:08:42 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:08:42 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:08:42 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:08:42 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:08:42 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:08:43 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:08:43 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:08:43 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:08:43 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:08:43 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:08:43 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:08:43 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:08:43 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:08:43 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:08:43 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:08:43 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:08:43 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:08:43 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:08:43 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:08:43 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:08:43 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:08:43 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:08:43 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:08:43 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:08:43 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:08:43 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:08:43 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:08:43 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:08:43 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:08:43 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:08:43 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:08:43 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:08:43 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:08:44 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:08:44 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:08:44 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:08:44 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:08:44 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:08:44 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:08:44 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:08:44 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:08:44 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:08:44 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:08:44 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:08:44 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:08:44 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:08:44 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:08:44 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:08:44 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:08:44 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:08:44 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:08:44 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:08:44 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:08:44 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:08:44 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:08:44 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:08:44 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:08:44 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:08:44 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:08:44 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:08:44 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:08:44 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:08:44 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:08:45 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:08:45 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:08:45 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:08:45 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:08:45 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:08:45 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:08:45 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:08:45 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:08:45 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:08:45 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:08:45 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:08:45 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:08:45 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:08:45 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:08:45 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:08:45 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:08:45 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:08:45 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:08:45 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:08:45 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:08:45 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:08:45 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:08:45 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:08:45 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:08:45 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:08:45 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:08:45 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:08:45 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:08:45 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:08:45 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:08:46 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:08:46 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:08:46 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:08:46 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:08:46 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:08:46 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:08:46 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:08:46 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:08:46 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:08:46 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:08:46 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:08:46 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:08:46 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:08:46 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:08:46 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:08:46 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:08:46 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:08:46 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:08:46 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:08:46 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:08:46 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:08:46 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:08:46 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:08:46 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:08:46 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:08:46 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:08:47 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:08:47 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:08:47 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:08:47 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:08:47 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:08:47 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:08:47 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:08:47 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:08:47 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:08:47 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:08:47 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:08:47 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:08:47 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:08:47 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:08:47 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:08:47 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:08:47 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:08:47 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:08:47 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:08:47 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:08:47 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:08:47 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:08:47 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:08:47 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:08:47 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:08:47 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:08:47 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:08:47 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:08:47 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:08:48 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:08:48 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:08:48 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:08:48 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:08:48 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:08:48 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:08:48 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:08:48 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:08:48 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:08:48 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:08:48 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:08:48 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:08:48 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:08:48 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:08:48 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:08:48 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:08:48 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:08:48 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:08:48 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:08:48 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:08:48 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:08:48 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:08:48 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:08:48 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:08:48 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:08:48 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:08:48 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:08:48 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:08:48 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:08:48 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:08:49 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:08:49 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:08:49 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:08:49 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:08:49 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:08:49 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:08:49 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:08:49 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:08:49 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:08:49 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:08:49 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:08:49 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:08:49 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:08:49 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:08:49 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:08:49 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:08:49 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:08:49 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:08:49 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:08:49 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:08:49 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:08:49 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:08:49 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:08:49 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:08:49 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:08:49 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:08:49 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:08:49 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:08:49 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:08:49 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:08:50 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:08:50 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:08:50 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:08:50 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:08:50 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:08:50 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:08:50 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:08:50 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:08:50 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:08:50 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:08:50 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:08:50 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:08:50 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:08:50 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:08:50 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:08:50 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:08:50 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:08:50 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:08:50 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:08:50 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:08:50 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:08:50 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:08:50 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:08:50 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:08:50 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:08:50 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:08:50 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:08:50 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:08:50 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:08:50 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:08:51 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:08:51 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:08:51 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:08:51 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:08:51 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:08:51 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:08:51 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:08:51 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:08:51 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:08:51 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:08:51 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:08:51 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:08:51 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:08:51 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:08:51 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:08:51 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:08:51 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:08:51 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:08:51 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:08:51 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:08:51 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:08:51 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:08:51 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:08:51 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:08:51 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:08:51 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:08:51 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:08:52 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:08:52 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:08:52 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:08:52 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:08:52 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:08:52 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:08:52 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:08:52 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:08:52 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:08:52 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:08:52 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:08:52 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:08:52 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:08:52 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:08:52 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:08:52 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:08:52 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:08:52 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:08:52 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:08:52 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:08:52 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:08:52 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:08:52 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:08:52 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:08:52 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:08:52 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:08:52 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:08:52 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:08:52 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:08:52 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:08:53 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:08:53 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:08:53 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:08:53 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:08:53 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:08:53 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:08:53 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:08:53 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:08:53 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:08:53 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:08:53 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:08:53 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:08:53 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:08:53 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:08:53 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:08:53 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:08:53 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:08:53 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:08:53 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:08:53 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:08:53 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:08:53 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:08:53 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:08:53 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:08:53 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:08:53 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:08:53 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:08:53 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:08:53 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:08:54 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:08:54 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:08:54 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:08:54 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:08:54 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:08:54 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:08:54 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:08:54 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:08:54 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:08:54 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:08:54 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:08:54 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:08:54 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:08:54 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:08:54 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:08:54 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:08:54 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:08:54 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:08:54 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:08:54 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:08:54 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:08:54 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:08:54 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:08:54 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:08:54 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:08:54 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:08:54 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:08:54 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:08:55 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:08:55 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:08:55 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:08:55 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:08:55 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:08:55 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:08:55 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:08:55 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:08:55 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:08:55 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:08:55 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:08:55 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:08:55 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:08:55 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:08:55 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:08:55 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:08:55 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:08:55 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:08:55 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:08:55 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:08:55 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:08:55 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:08:55 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:08:55 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:08:55 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:08:55 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:08:55 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:08:55 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:08:55 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:08:55 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:08:56 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:08:56 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:08:56 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:08:56 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:08:56 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:08:56 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:08:56 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:08:56 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:08:56 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:08:56 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:08:56 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:08:56 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:08:56 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:08:56 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:08:56 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:08:56 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:08:56 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:08:56 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:08:56 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:08:56 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:08:56 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:08:56 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:08:56 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:08:56 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:08:56 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:08:56 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:08:56 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:08:56 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:08:56 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:08:56 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:08:57 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:08:57 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:08:57 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:08:57 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:08:57 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:08:57 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:08:57 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:08:57 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:08:57 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:08:57 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:08:57 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:08:57 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:08:57 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:08:57 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:08:57 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:08:57 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:08:57 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:08:57 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:08:57 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:08:57 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:08:57 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:08:57 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:08:57 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:08:57 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:08:57 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:08:57 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:08:57 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:08:57 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:08:57 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:08:57 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:08:58 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:08:58 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:08:58 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:08:58 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:08:58 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:08:58 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:08:58 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:08:58 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:08:58 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:08:58 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:08:58 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:08:58 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:08:58 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:08:58 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:08:58 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:08:58 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:08:58 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:08:58 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:08:58 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:08:58 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:08:58 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:08:58 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:08:58 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:08:58 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:08:58 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:08:58 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:08:58 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:08:59 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:08:59 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:08:59 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:08:59 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:08:59 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:08:59 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:08:59 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:08:59 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:08:59 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:08:59 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:08:59 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:08:59 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:08:59 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:08:59 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:08:59 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:08:59 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:08:59 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:08:59 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:08:59 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:08:59 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:08:59 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:08:59 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:08:59 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:08:59 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:08:59 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:08:59 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:08:59 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:08:59 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:08:59 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:08:59 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:09:00 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:09:00 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:09:00 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:09:00 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:09:00 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:09:00 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:09:00 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:09:00 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:09:00 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:09:00 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:09:00 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:09:00 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:09:00 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:09:00 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:09:00 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:09:00 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:09:00 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:09:00 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:09:00 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:09:00 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:09:00 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:09:00 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:09:00 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:09:00 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:09:00 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:09:00 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:09:00 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:09:00 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:09:00 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:09:00 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:09:01 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:09:01 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:09:01 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:09:01 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:09:01 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:09:01 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:09:01 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:09:01 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:09:01 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:09:01 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:09:01 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:09:01 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:09:01 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:09:01 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:09:01 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:09:01 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:09:01 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:09:01 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:09:01 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:09:01 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:09:01 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:09:01 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:09:01 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:09:01 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:09:01 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:09:01 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:09:01 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:09:01 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:09:02 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:09:02 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:09:02 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:09:02 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:09:02 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:09:02 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:09:02 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:09:02 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:09:02 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:09:02 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:09:02 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:09:02 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:09:02 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:09:02 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:09:02 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:09:02 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:09:02 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:09:02 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:09:02 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:09:02 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:09:02 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:09:02 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:09:02 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:09:02 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:09:02 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:09:02 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:09:02 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:09:02 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:09:03 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:09:03 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:09:03 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:09:03 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:09:03 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:09:03 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:09:03 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:09:03 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:09:03 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:09:03 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:09:03 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:09:03 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:09:03 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:09:03 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:09:03 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:09:03 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:09:03 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:09:03 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:09:03 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:09:03 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:09:03 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:09:03 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:09:03 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:09:03 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:09:03 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:09:03 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:09:03 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:09:03 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:09:03 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:09:04 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:09:04 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:09:04 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:09:04 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:09:04 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:09:04 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:09:04 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:09:04 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:09:04 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:09:04 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:09:04 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:09:04 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:09:04 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:09:04 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:09:04 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:09:04 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:09:04 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:09:04 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:09:04 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:09:04 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:09:04 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:09:04 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:09:04 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:09:04 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:09:04 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:09:04 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:09:04 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:09:04 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:09:04 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:09:04 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:09:05 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:09:05 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:09:05 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:09:05 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:09:05 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:09:05 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:09:05 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:09:05 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:09:05 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:09:05 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:09:05 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:09:05 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:09:05 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:09:05 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:09:05 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:09:05 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:09:05 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:09:05 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:09:05 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:09:05 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:09:05 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:09:05 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:09:05 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:09:05 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:09:05 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:09:05 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:09:05 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:09:06 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:09:06 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:09:06 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:09:06 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:09:06 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:09:06 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:09:06 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:09:06 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:09:06 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:09:06 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:09:06 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:09:06 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:09:06 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:09:06 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:09:06 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:09:06 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:09:06 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:09:06 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:09:06 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:09:06 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:09:06 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:09:06 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:09:06 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:09:06 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:09:06 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:09:06 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:09:07 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:09:07 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:09:07 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:09:07 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:09:07 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:09:07 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:09:07 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:09:07 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:09:07 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:09:07 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:09:07 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:09:07 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:09:07 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:09:07 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:09:07 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:09:07 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:09:07 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:09:07 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:09:07 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:09:07 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:09:07 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:09:07 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:09:07 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:09:07 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:09:07 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:09:07 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:09:07 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:09:07 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:09:07 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:09:07 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:09:08 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:09:08 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:09:08 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:09:08 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:09:08 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:09:08 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:09:08 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:09:08 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:09:08 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:09:08 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:09:08 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:09:08 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:09:08 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:09:08 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:09:08 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:09:08 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:09:08 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:09:08 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:09:08 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:09:08 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:09:08 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:09:08 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:09:08 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:09:08 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:09:08 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:09:08 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:09:09 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:09:09 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:09:09 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:09:09 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:09:09 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:09:09 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:09:09 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:09:09 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:09:09 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:09:09 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:09:09 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:09:09 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:09:09 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:09:09 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:09:09 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:09:09 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:09:09 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:09:09 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:09:09 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:09:09 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:09:09 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:09:09 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:09:09 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:09:09 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:09:09 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:09:09 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:09:09 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:09:10 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:09:10 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:09:10 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:09:10 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:09:10 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:09:10 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:09:10 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:09:10 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:09:10 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:09:10 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:09:10 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:09:10 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:09:10 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:09:10 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:09:10 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:09:10 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:09:10 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:09:10 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:09:10 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:09:10 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:09:10 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:09:10 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:09:10 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:09:10 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:09:10 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:09:10 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:09:10 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:09:10 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:09:10 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:09:11 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:09:11 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:09:11 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:09:11 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:09:11 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:09:11 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:09:11 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:09:11 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:09:11 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:09:11 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:09:11 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:09:11 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:09:11 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:09:11 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:09:11 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:09:11 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:09:11 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:09:11 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:09:11 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:09:11 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:09:11 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:09:11 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:09:11 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:09:11 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:09:11 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:09:11 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:09:11 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:09:11 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:09:11 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:09:11 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:09:12 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:09:12 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:09:12 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:09:12 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:09:12 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:09:12 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:09:12 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:09:12 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:09:12 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:09:12 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:09:12 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:09:12 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:09:12 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:09:12 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:09:12 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:09:12 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:09:12 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:09:12 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:09:12 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:09:12 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:09:12 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:09:12 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:09:12 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:09:12 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:09:12 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:09:12 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:09:13 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:09:13 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:09:13 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:09:13 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:09:13 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:09:13 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:09:13 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:09:13 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:09:13 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:09:13 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:09:13 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:09:13 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:09:13 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:09:13 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:09:13 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:09:13 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:09:13 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:09:13 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:09:13 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:09:13 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:09:13 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:09:13 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:09:13 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:09:13 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:09:13 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:09:13 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:09:13 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:09:13 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:09:13 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:09:13 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:09:14 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:09:14 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:09:14 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:09:14 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:09:14 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:09:14 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:09:14 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:09:14 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:09:14 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:09:14 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:09:14 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:09:14 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:09:14 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:09:14 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:09:14 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:09:14 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:09:14 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:09:14 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:09:14 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:09:14 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:09:15 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:09:15 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:09:15 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:09:15 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:09:15 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:09:15 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:09:15 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:09:15 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:09:15 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:09:15 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:09:15 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:09:15 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:09:15 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:09:15 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:09:15 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:09:15 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:09:15 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:09:15 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:09:15 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:09:15 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:09:15 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:09:15 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:09:15 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:09:15 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:09:15 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:09:15 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:09:15 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:09:16 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:09:16 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:09:16 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:09:16 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:09:16 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:09:16 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:09:16 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:09:16 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:09:16 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:09:16 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:09:16 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:09:16 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:09:16 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:09:16 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:09:16 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:09:16 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:09:16 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:09:16 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:09:16 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:09:16 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:09:16 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:09:16 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:09:16 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:09:16 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:09:16 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:09:16 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:09:16 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:09:16 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:09:16 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:09:17 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:09:17 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:09:17 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:09:17 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:09:17 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:09:17 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:09:17 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:09:17 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:09:17 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:09:17 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:09:17 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:09:17 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:09:17 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:09:17 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:09:17 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:09:17 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:09:17 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:09:17 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:09:17 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:09:17 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:09:17 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:09:17 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:09:17 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:09:17 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:09:17 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:09:17 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:09:17 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:09:18 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:09:18 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:09:18 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:09:18 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:09:18 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:09:18 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:09:18 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:09:18 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:09:18 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:09:18 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:09:18 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:09:18 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:09:18 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:09:18 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:09:18 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:09:18 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:09:18 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:09:18 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:09:18 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:09:18 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:09:18 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:09:18 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:09:18 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:09:18 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:09:18 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:09:18 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:09:18 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:09:18 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:09:18 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:09:18 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:09:19 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:09:19 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:09:19 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:09:19 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:09:19 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:09:19 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:09:19 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:09:19 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:09:19 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:09:19 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:09:19 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:09:19 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:09:19 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:09:19 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:09:19 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:09:19 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:09:19 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:09:19 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:09:19 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:09:19 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:09:19 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:09:20 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:09:20 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:09:20 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:09:20 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:09:20 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:09:20 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:09:20 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:09:20 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:09:20 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:09:20 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:09:20 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:09:20 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:09:20 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:09:20 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:09:20 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:09:20 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:09:20 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:09:20 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:09:20 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:09:20 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:09:20 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:09:20 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:09:20 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:09:20 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:09:20 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:09:20 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:09:20 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:09:21 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:09:21 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:09:21 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:09:21 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:09:21 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:09:21 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:09:21 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:09:21 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:09:21 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:09:21 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:09:21 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:09:21 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:09:21 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:09:21 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:09:21 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:09:21 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:09:21 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:09:21 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:09:21 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:09:21 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:09:21 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:09:21 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:09:21 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:09:21 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:09:21 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:09:21 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:09:22 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:09:22 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:09:22 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:09:22 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:09:22 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:09:22 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:09:22 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:09:22 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:09:22 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:09:22 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:09:22 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:09:22 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:09:22 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:09:22 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:09:22 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:09:22 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:09:22 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:09:22 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:09:22 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:09:22 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:09:22 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:09:22 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:09:22 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:09:22 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:09:22 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:09:22 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:09:22 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:09:22 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:09:22 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:09:22 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:09:23 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:09:23 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:09:23 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:09:23 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:09:23 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:09:23 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:09:23 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:09:23 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:09:23 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:09:23 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:09:23 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:09:23 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:09:23 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:09:23 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:09:23 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:09:23 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:09:23 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:09:23 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:09:23 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:09:23 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:09:23 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:09:23 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:09:23 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:09:23 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:09:23 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:09:23 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:09:23 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:09:24 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:09:24 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:09:24 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:09:24 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:09:24 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:09:24 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:09:24 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:09:24 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:09:24 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:09:24 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:09:24 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:09:24 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:09:24 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:09:24 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:09:24 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:09:24 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:09:24 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:09:24 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:09:24 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:09:24 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:09:24 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:09:24 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:09:24 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:09:24 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:09:24 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:09:24 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:09:24 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:09:25 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:09:25 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:09:25 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:09:25 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:09:25 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:09:25 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:09:25 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:09:25 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:09:25 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:09:25 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:09:25 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:09:25 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:09:25 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:09:25 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:09:25 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:09:25 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:09:25 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:09:25 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:09:25 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:09:25 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:09:25 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:09:25 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:09:25 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:09:25 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:09:25 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:09:25 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:09:26 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:09:26 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:09:26 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:09:26 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:09:26 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:09:26 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:09:26 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:09:26 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:09:26 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:09:26 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:09:26 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:09:26 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:09:26 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:09:26 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:09:26 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:09:26 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:09:26 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:09:26 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:09:26 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:09:26 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:09:26 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:09:26 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:09:26 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:09:26 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:09:26 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:09:26 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:09:26 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:09:26 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:09:26 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:09:26 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:09:27 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:09:27 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:09:27 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:09:27 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:09:27 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:09:27 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:09:27 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:09:27 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:09:27 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:09:27 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:09:27 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:09:27 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:09:27 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:09:27 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:09:27 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:09:27 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:09:27 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:09:27 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:09:27 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:09:27 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:09:27 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:09:27 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:09:27 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:09:27 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:09:27 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:09:27 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:09:27 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:09:28 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:09:28 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:09:28 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:09:28 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:09:28 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:09:28 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:09:28 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:09:28 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:09:28 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:09:28 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:09:28 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:09:28 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:09:28 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:09:28 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:09:28 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:09:28 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:09:28 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:09:28 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:09:28 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:09:28 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:09:28 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:09:28 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:09:28 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:09:28 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:09:28 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:09:28 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:09:28 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:09:29 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:09:29 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:09:29 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:09:29 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:09:29 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:09:29 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:09:29 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:09:29 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:09:29 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:09:29 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:09:29 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:09:29 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:09:29 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:09:29 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:09:29 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:09:29 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:09:29 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:09:29 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:09:29 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:09:29 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:09:29 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:09:29 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:09:29 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:09:29 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:09:29 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:09:29 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:09:29 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:09:29 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:09:29 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:09:30 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:09:30 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:09:30 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:09:30 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:09:30 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:09:30 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:09:30 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:09:30 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:09:30 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:09:30 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:09:30 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:09:30 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:09:30 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:09:30 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:09:30 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:09:30 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:09:30 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:09:30 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:09:30 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:09:30 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:09:30 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:09:30 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:09:30 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:09:30 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:09:30 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:09:30 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:09:31 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:09:31 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:09:31 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:09:31 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:09:31 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:09:31 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:09:31 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:09:31 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:09:31 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:09:31 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:09:31 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:09:31 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:09:31 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:09:31 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:09:31 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:09:31 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:09:31 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:09:31 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:09:31 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:09:31 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:09:31 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:09:31 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:09:31 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:09:31 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:09:32 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:09:32 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:09:32 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:09:32 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:09:32 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:09:32 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:09:32 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:09:32 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:09:32 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:09:32 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:09:32 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:09:32 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:09:32 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:09:32 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:09:32 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:09:32 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:09:32 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:09:32 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:09:32 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:09:32 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:09:32 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:09:32 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:09:32 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:09:32 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:09:33 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:09:33 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:09:33 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:09:33 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:09:33 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:09:33 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:09:33 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:09:33 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:09:33 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:09:33 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:09:33 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:09:33 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:09:33 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:09:33 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:09:33 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:09:33 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:09:33 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:09:33 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:09:33 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:09:33 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:09:33 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:09:33 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:09:33 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:09:33 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:09:33 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:09:33 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:09:33 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:09:34 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:09:34 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:09:34 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:09:34 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:09:34 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:09:34 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:09:34 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:09:34 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:09:34 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:09:34 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:09:34 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:09:34 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:09:34 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:09:34 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:09:34 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:09:34 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:09:34 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:09:34 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:09:34 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:09:34 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:09:34 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:09:35 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:09:35 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:09:35 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:09:35 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:09:35 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:09:35 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:09:35 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:09:35 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:09:35 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:09:35 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:09:35 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:09:35 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:09:35 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:09:35 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:09:35 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:09:35 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:09:35 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:09:35 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:09:35 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:09:35 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:09:35 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:09:35 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:09:35 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:09:35 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:09:35 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:09:35 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:09:35 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:09:36 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:09:36 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:09:36 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:09:36 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:09:36 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:09:36 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:09:36 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:09:36 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:09:36 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:09:36 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:09:36 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:09:36 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:09:36 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:09:36 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:09:36 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:09:36 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:09:36 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:09:36 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:09:36 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:09:36 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:09:36 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:09:36 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:09:36 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:09:36 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:09:36 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:09:36 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:09:36 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:09:37 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:09:37 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:09:37 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:09:37 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:09:37 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:09:37 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:09:37 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:09:37 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:09:37 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:09:37 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:09:37 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:09:37 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:09:37 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:09:37 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:09:37 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:09:37 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:09:37 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:09:37 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:09:37 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:09:37 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:09:37 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:09:37 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:09:37 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:09:37 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:09:37 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:09:37 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:09:37 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:09:38 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:09:38 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:09:38 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:09:38 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:09:38 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:09:38 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:09:38 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:09:38 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:09:38 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:09:38 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:09:38 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:09:38 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:09:38 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:09:38 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:09:38 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:09:38 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:09:38 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:09:38 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:09:38 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:09:38 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:09:38 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:09:38 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:09:38 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:09:38 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:09:38 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:09:38 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:09:39 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:09:39 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:09:39 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:09:39 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:09:39 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:09:39 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:09:39 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:09:39 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:09:39 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:09:39 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:09:39 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:09:39 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:09:39 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:09:39 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:09:39 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:09:39 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:09:39 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:09:39 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:09:39 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:09:39 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:09:39 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:09:39 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:09:39 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:09:39 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:09:40 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:09:40 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:09:40 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:09:40 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:09:40 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:09:40 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:09:40 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:09:40 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:09:40 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:09:40 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:09:40 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:09:40 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:09:40 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:09:40 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:09:40 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:09:40 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:09:40 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:09:40 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:09:40 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:09:40 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:09:40 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:09:40 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:09:41 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:09:41 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:09:41 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:09:41 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:09:41 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:09:41 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:09:41 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:09:41 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:09:41 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:09:41 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:09:41 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:09:41 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:09:41 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:09:41 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:09:41 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:09:41 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:09:41 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:09:41 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:09:41 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:09:41 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:09:41 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:09:41 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:09:41 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:09:41 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:09:41 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:09:42 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:09:42 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:09:42 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:09:42 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:09:42 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:09:42 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:09:42 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:09:42 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:09:42 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:09:42 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:09:42 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:09:42 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:09:42 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:09:42 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:09:42 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:09:42 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:09:42 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:09:42 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:09:42 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:09:42 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:09:42 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:09:42 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:09:42 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:09:42 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:09:42 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:09:42 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:09:42 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:09:43 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:09:43 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:09:43 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:09:43 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:09:43 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:09:43 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:09:43 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:09:43 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:09:43 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:09:43 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:09:43 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:09:43 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:09:43 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:09:43 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:09:43 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:09:43 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:09:43 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:09:43 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:09:43 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:09:43 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:09:43 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:09:43 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:09:43 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:09:43 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:09:44 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:09:44 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:09:44 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:09:44 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:09:44 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:09:44 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:09:44 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:09:44 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:09:44 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:09:44 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:09:44 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:09:44 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:09:44 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:09:44 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:09:44 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:09:44 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:09:44 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:09:44 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:09:44 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:09:44 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:09:44 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:09:44 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:09:44 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:09:44 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:09:44 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:09:44 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:09:45 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:09:45 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:09:45 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:09:45 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:09:45 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:09:45 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:09:45 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:09:45 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:09:45 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:09:45 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:09:45 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:09:45 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:09:45 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:09:45 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:09:45 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:09:45 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:09:45 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:09:45 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:09:45 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:09:45 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:09:45 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:09:45 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:09:45 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:09:45 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:09:45 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:09:45 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:09:45 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:09:46 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:09:46 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:09:46 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:09:46 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:09:46 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:09:46 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:09:46 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:09:46 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:09:46 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:09:46 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:09:46 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:09:46 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:09:46 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:09:46 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:09:46 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:09:46 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:09:46 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:09:46 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:09:46 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:09:46 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:09:46 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:09:46 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:09:46 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:09:46 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:09:47 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:09:47 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:09:47 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:09:47 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:09:47 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:09:47 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:09:47 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:09:47 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:09:47 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:09:47 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:09:47 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:09:47 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:09:47 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:09:47 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:09:47 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:09:47 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:09:47 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:09:47 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:09:47 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:09:47 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:09:47 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:09:47 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:09:47 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:09:47 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:09:47 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:09:47 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:09:47 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:09:48 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:09:48 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:09:48 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:09:48 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:09:48 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:09:48 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:09:48 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:09:48 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:09:48 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:09:48 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:09:48 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:09:48 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:09:48 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:09:48 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:09:48 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:09:48 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:09:48 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:09:48 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:09:48 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:09:48 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:09:48 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:09:48 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:09:48 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:09:48 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:09:48 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:09:48 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:09:48 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:09:49 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:09:49 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:09:49 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:09:49 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:09:49 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:09:49 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:09:49 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:09:49 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:09:49 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:09:49 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:09:49 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:09:49 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:09:49 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:09:49 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:09:49 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:09:49 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:09:49 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:09:49 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:09:49 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:09:49 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:09:49 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:09:49 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:09:49 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:09:49 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:09:49 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:09:49 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:09:49 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:09:50 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:09:50 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:09:50 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:09:50 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:09:50 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:09:50 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:09:50 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:09:50 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:09:50 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:09:50 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:09:50 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:09:50 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:09:50 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:09:50 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:09:50 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:09:50 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:09:50 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:09:50 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:09:50 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:09:50 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:09:50 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:09:50 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:09:50 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:09:50 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:09:50 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:09:51 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:09:51 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:09:51 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:09:51 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:09:51 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:09:51 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:09:51 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:09:51 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:09:51 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:09:51 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:09:51 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:09:51 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:09:51 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:09:51 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:09:51 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:09:51 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:09:51 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:09:51 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:09:51 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:09:51 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:09:51 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:09:51 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:09:51 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:09:51 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:09:51 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:09:51 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:09:51 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:09:52 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:09:52 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:09:52 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:09:52 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:09:52 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:09:52 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:09:52 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:09:52 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:09:52 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:09:52 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:09:52 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:09:52 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:09:52 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:09:52 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:09:52 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:09:52 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:09:52 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:09:52 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:09:52 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:09:52 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:09:52 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:09:52 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:09:52 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:09:52 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:09:52 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:09:52 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:09:52 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:09:53 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:09:53 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:09:53 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:09:53 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:09:53 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:09:53 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:09:53 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:09:53 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:09:53 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:09:53 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:09:53 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:09:53 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:09:53 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:09:53 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:09:53 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:09:53 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:09:53 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:09:53 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:09:53 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:09:53 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:09:53 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:09:54 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:09:54 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:09:54 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:09:54 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:09:54 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:09:54 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:09:54 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:09:54 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:09:54 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:09:54 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:09:54 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:09:54 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:09:54 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:09:54 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:09:54 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:09:54 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:09:54 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:09:54 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:09:54 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:09:54 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:09:54 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:09:54 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:09:54 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:09:55 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:09:55 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:09:55 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:09:55 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:09:55 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:09:55 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:09:55 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:09:55 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:09:55 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:09:55 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:09:55 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:09:55 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:09:55 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:09:55 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:09:55 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:09:55 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:09:55 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:09:55 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:09:55 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:09:55 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:09:55 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:09:55 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:09:55 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:09:55 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:09:56 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:09:56 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:09:56 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:09:56 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:09:56 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:09:56 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:09:56 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:09:56 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:09:56 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:09:56 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:09:56 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:09:56 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:09:56 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:09:56 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:09:56 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:09:56 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:09:56 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:09:56 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:09:56 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:09:56 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:09:56 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:09:56 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:09:56 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:09:56 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:09:56 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:09:56 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:09:56 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:09:57 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:09:57 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:09:57 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:09:57 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:09:57 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:09:57 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:09:57 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:09:57 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:09:57 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:09:57 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:09:57 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:09:57 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:09:57 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:09:57 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:09:57 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:09:57 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:09:57 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:09:57 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:09:57 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:09:57 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:09:57 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:09:57 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:09:57 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:09:57 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:09:57 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:09:57 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:09:58 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:09:58 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:09:58 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:09:58 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:09:58 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:09:58 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:09:58 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:09:58 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:09:58 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:09:58 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:09:58 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:09:58 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:09:58 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:09:58 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:09:58 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:09:58 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:09:58 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:09:58 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:09:58 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:09:58 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:09:58 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:09:58 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:09:58 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:09:59 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:09:59 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:09:59 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:09:59 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:09:59 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:09:59 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:09:59 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:09:59 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:09:59 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:09:59 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:09:59 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:09:59 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:09:59 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:09:59 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:09:59 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:09:59 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:09:59 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:09:59 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:09:59 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:09:59 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:09:59 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:09:59 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:09:59 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:09:59 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:09:59 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:09:59 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:10:00 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:10:00 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:10:00 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:10:00 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:10:00 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:10:00 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:10:00 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:10:00 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:10:00 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:10:00 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:10:00 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:10:00 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:10:00 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:10:00 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:10:00 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:10:00 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:10:00 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:10:00 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:10:00 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:10:00 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:10:00 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:10:01 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:10:01 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:10:01 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:10:01 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:10:01 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:10:01 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:10:01 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:10:01 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:10:01 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:10:01 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:10:01 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:10:01 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:10:01 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:10:01 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:10:01 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:10:01 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:10:01 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:10:01 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:10:02 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:10:02 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:10:02 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:10:02 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:10:02 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:10:02 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:10:02 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:10:02 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:10:02 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:10:02 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:10:02 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:10:02 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:10:02 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:10:02 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:10:02 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:10:02 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:10:02 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:10:03 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:10:03 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:10:03 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:10:03 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:10:03 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:10:03 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:10:03 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:10:03 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:10:03 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:10:03 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:10:03 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:10:03 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:10:03 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:10:03 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:10:03 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:10:03 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:10:03 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:10:03 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:10:03 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:10:03 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:10:04 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:10:04 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:10:04 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:10:04 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:10:04 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:10:04 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:10:04 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:10:04 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:10:04 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:10:04 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:10:04 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:10:04 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:10:04 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:10:04 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:10:04 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:10:04 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:10:04 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:10:04 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:10:04 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:10:04 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:10:04 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:10:04 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:10:04 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:10:04 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:10:05 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:10:05 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:10:05 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:10:05 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:10:05 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:10:05 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:10:05 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:10:05 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:10:05 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:10:05 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:10:05 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:10:05 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:10:05 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:10:05 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:10:05 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:10:05 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:10:05 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:10:05 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:10:05 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:10:05 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:10:05 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:10:05 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:10:05 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:10:05 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:10:06 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:10:06 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:10:06 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:10:06 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:10:06 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:10:06 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:10:06 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:10:06 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:10:06 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:10:06 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:10:06 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:10:06 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:10:06 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:10:06 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:10:06 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:10:06 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:10:06 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:10:06 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:10:06 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:10:06 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:10:06 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:10:06 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:10:06 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:10:06 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:10:06 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:10:06 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:10:06 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:10:07 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:10:07 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:10:07 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:10:07 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:10:07 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:10:07 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:10:07 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:10:07 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:10:07 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:10:07 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:10:07 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:10:07 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:10:07 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:10:07 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:10:07 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:10:07 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:10:07 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:10:07 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:10:07 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:10:07 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:10:07 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:10:07 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:10:08 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:10:08 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:10:08 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:10:08 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:10:08 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:10:08 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:10:08 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:10:08 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:10:08 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:10:08 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:10:08 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:10:08 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:10:08 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:10:08 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:10:08 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:10:08 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:10:08 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:10:08 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:10:08 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:10:08 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:10:08 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:10:08 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:10:08 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:10:08 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:10:08 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:10:08 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:10:08 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:10:09 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:10:09 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:10:09 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:10:09 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:10:09 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:10:09 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:10:09 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:10:09 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:10:09 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:10:09 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:10:09 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:10:09 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:10:09 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:10:09 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:10:09 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:10:09 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:10:09 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:10:09 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:10:09 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:10:09 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:10:09 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:10:09 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:10:09 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:10:09 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:10:10 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:10:10 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:10:10 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:10:10 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:10:10 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:10:10 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:10:10 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:10:10 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:10:10 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:10:10 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:10:10 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:10:10 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:10:10 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:10:10 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:10:10 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:10:10 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:10:10 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:10:10 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:10:10 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:10:10 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:10:10 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:10:10 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:10:10 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:10:10 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:10:10 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:10:11 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:10:11 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:10:11 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:10:11 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:10:11 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:10:11 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:10:11 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:10:11 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:10:11 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:10:11 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:10:11 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:10:11 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:10:11 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:10:11 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:10:11 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:10:11 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:10:11 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:10:11 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:10:11 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:10:11 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:10:11 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:10:11 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:10:11 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:10:11 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:10:12 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:10:12 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:10:12 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:10:12 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:10:12 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:10:12 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:10:12 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:10:12 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:10:12 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:10:12 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:10:12 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:10:12 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:10:12 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:10:12 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:10:12 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:10:12 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:10:12 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:10:12 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:10:12 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:10:12 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:10:12 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:10:12 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:10:12 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:10:12 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:10:13 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:10:13 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:10:13 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:10:13 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:10:13 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:10:13 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:10:13 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:10:13 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:10:13 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:10:13 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:10:13 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:10:13 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:10:13 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:10:13 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:10:13 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:10:13 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:10:13 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:10:13 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:10:13 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:10:13 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:10:13 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:10:13 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:10:13 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:10:13 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:10:13 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:10:13 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:10:14 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:10:14 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:10:14 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:10:14 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:10:14 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:10:14 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:10:14 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:10:14 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:10:14 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:10:14 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:10:14 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:10:14 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:10:14 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:10:14 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:10:14 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:10:14 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:10:14 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:10:14 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:10:14 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:10:14 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:10:14 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:10:14 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:10:14 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:10:14 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:10:15 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:10:15 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:10:15 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:10:15 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:10:15 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:10:15 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:10:15 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:10:15 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:10:15 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:10:15 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:10:15 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:10:15 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:10:15 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:10:15 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:10:15 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:10:15 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:10:15 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:10:15 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:10:15 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:10:15 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:10:15 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:10:15 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:10:15 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:10:15 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:10:15 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:10:15 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:10:15 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:10:16 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:10:16 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:10:16 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:10:16 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:10:16 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:10:16 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:10:16 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:10:16 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:10:16 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:10:16 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:10:16 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:10:16 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:10:16 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:10:16 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:10:16 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:10:16 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:10:16 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:10:16 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:10:16 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:10:16 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:10:16 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:10:16 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:10:16 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:10:16 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:10:17 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:10:17 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:10:17 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:10:17 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:10:17 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:10:17 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:10:17 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:10:17 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:10:17 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:10:17 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:10:17 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:10:17 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:10:17 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:10:17 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:10:17 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:10:17 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:10:17 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:10:17 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:10:17 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:10:17 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:10:17 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:10:17 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:10:17 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:10:17 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:10:17 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:10:17 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:10:18 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:10:18 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:10:18 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:10:18 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:10:18 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:10:18 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:10:18 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:10:18 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:10:18 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:10:18 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:10:18 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:10:18 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:10:18 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:10:18 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:10:18 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:10:18 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:10:18 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:10:18 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:10:18 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:10:18 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:10:18 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:10:18 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:10:19 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:10:19 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:10:19 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:10:19 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:10:19 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:10:19 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:10:19 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:10:19 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:10:19 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:10:19 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:10:19 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:10:19 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:10:19 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:10:19 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:10:19 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:10:19 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:10:19 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:10:19 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:10:19 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:10:19 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:10:19 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:10:19 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:10:19 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:10:19 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:10:20 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:10:20 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:10:20 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:10:20 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:10:20 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:10:20 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:10:20 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:10:20 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:10:20 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:10:20 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:10:20 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:10:20 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:10:20 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:10:20 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:10:20 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:10:20 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:10:20 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:10:20 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:10:20 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:10:20 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:10:20 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:10:20 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:10:21 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:10:21 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:10:21 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:10:21 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:10:21 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:10:21 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:10:21 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:10:21 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:10:21 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:10:21 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:10:21 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:10:21 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:10:21 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:10:21 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:10:21 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:10:21 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:10:21 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:10:21 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:10:21 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:10:21 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:10:21 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:10:21 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:10:22 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:10:22 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:10:22 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:10:22 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:10:22 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:10:22 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:10:22 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:10:22 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:10:22 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:10:22 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:10:22 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:10:22 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:10:22 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:10:22 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:10:22 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:10:22 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:10:22 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:10:22 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:10:22 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:10:22 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:10:22 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:10:22 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:10:22 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:10:22 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:10:23 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:10:23 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:10:23 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:10:23 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:10:23 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:10:23 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:10:23 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:10:23 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:10:23 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:10:23 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:10:23 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:10:23 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:10:23 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:10:23 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:10:23 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:10:23 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:10:23 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:10:23 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:10:23 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:10:23 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:10:23 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:10:23 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:10:23 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:10:23 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:10:23 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:10:24 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:10:24 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:10:24 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:10:24 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:10:24 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:10:24 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:10:24 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:10:24 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:10:24 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:10:24 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:10:24 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:10:24 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:10:24 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:10:24 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:10:24 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:10:24 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:10:24 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:10:24 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:10:24 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:10:24 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:10:24 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:10:24 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:10:24 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:10:24 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:10:25 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:10:25 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:10:25 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:10:25 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:10:25 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:10:25 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:10:25 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:10:25 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:10:25 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:10:25 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:10:25 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:10:25 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:10:25 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:10:25 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:10:25 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:10:25 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:10:25 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:10:25 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:10:25 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:10:25 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:10:25 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:10:25 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:10:25 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:10:25 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:10:25 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:10:25 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:10:26 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:10:26 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:10:26 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:10:26 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:10:26 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:10:26 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:10:26 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:10:26 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:10:26 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:10:26 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:10:26 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:10:26 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:10:26 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:10:26 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:10:26 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:10:26 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:10:26 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:10:26 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:10:26 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:10:26 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:10:26 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:10:26 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:10:26 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:10:26 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:10:27 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:10:27 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:10:27 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:10:27 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:10:27 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:10:27 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:10:27 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:10:27 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:10:27 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:10:27 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:10:27 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:10:27 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:10:27 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:10:27 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:10:27 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:10:27 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:10:27 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:10:27 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:10:27 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:10:27 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:10:27 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:10:27 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:10:27 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:10:27 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:10:28 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:10:28 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:10:28 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:10:28 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:10:28 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:10:28 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:10:28 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:10:28 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:10:28 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:10:28 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:10:28 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:10:28 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:10:28 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:10:28 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:10:28 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:10:28 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:10:28 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:10:28 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:10:28 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:10:28 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:10:28 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:10:28 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:10:28 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:10:28 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:10:28 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:10:28 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:10:29 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:10:29 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:10:29 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:10:29 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:10:29 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:10:29 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:10:29 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:10:29 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:10:29 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:10:29 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:10:29 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:10:29 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:10:29 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:10:29 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:10:29 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:10:29 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:10:29 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:10:29 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:10:29 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:10:29 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:10:29 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:10:29 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:10:30 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:10:30 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:10:30 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:10:30 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:10:30 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:10:30 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:10:30 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:10:30 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:10:30 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:10:30 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:10:30 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:10:30 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:10:30 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:10:30 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:10:30 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:10:30 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:10:30 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:10:30 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:10:30 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:10:30 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:10:30 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:10:30 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:10:30 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:10:30 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:10:31 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:10:31 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:10:31 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:10:31 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:10:31 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:10:31 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:10:31 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:10:31 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:10:31 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:10:31 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:10:31 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:10:31 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:10:31 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:10:31 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:10:31 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:10:31 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:10:31 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:10:31 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:10:31 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:10:31 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:10:31 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:10:31 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:10:31 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:10:31 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:10:31 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:10:31 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:10:31 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:10:32 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:10:32 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:10:32 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:10:32 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:10:32 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:10:32 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:10:32 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:10:32 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:10:32 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:10:32 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:10:32 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:10:32 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:10:32 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:10:32 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:10:32 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:10:32 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:10:32 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:10:32 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:10:32 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:10:32 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:10:32 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:10:32 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:10:32 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:10:33 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:10:33 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:10:33 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:10:33 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:10:33 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:10:33 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:10:33 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:10:33 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:10:33 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:10:33 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:10:33 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:10:33 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:10:33 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:10:33 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:10:33 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:10:33 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:10:33 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:10:33 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:10:33 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:10:33 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:10:33 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:10:33 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:10:33 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:10:33 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:10:34 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:10:34 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:10:34 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:10:34 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:10:34 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:10:34 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:10:34 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:10:34 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:10:34 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:10:34 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:10:34 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:10:34 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:10:34 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:10:34 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:10:34 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:10:34 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:10:34 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:10:34 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:10:34 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:10:34 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:10:34 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:10:34 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:10:34 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:10:34 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:10:35 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:10:35 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:10:35 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:10:35 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:10:35 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:10:35 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:10:35 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:10:35 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:10:35 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:10:35 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:10:35 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:10:35 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:10:35 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:10:35 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:10:35 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:10:35 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:10:35 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:10:35 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:10:35 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:10:35 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:10:35 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:10:35 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:10:35 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:10:35 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:10:36 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:10:36 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:10:36 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:10:36 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:10:36 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:10:36 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:10:36 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:10:36 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:10:36 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:10:36 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:10:36 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:10:36 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:10:36 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:10:36 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:10:36 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:10:36 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:10:36 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:10:36 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:10:36 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:10:36 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:10:36 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:10:37 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:10:37 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:10:37 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:10:37 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:10:37 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:10:37 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:10:37 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:10:37 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:10:37 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:10:37 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:10:37 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:10:37 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:10:37 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:10:37 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:10:37 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:10:37 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:10:37 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:10:37 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:10:37 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:10:37 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:10:37 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:10:37 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:10:37 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:10:37 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:10:38 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:10:38 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:10:38 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:10:38 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:10:38 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:10:38 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:10:38 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:10:38 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:10:38 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:10:38 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:10:38 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:10:38 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:10:38 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:10:38 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:10:38 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:10:38 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:10:38 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:10:38 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:10:38 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:10:38 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:10:38 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:10:38 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:10:38 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:10:39 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:10:39 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:10:39 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:10:39 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:10:39 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:10:39 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:10:39 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:10:39 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:10:39 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:10:39 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:10:39 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:10:39 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:10:39 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:10:39 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:10:39 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:10:39 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:10:39 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:10:39 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:10:39 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:10:39 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:10:39 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:10:39 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:10:39 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:10:39 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:10:40 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:10:40 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:10:40 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:10:40 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:10:40 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:10:40 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:10:40 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:10:40 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:10:40 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:10:40 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:10:40 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:10:40 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:10:40 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:10:40 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:10:40 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:10:40 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:10:40 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:10:40 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:10:40 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:10:40 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:10:40 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:10:40 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:10:41 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:10:41 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:10:41 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:10:41 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:10:41 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:10:41 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:10:41 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:10:41 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:10:41 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:10:41 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:10:41 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:10:41 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:10:41 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:10:41 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:10:41 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:10:41 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:10:41 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:10:41 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:10:41 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:10:41 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:10:41 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:10:41 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:10:41 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:10:42 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:10:42 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:10:42 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:10:42 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:10:42 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:10:42 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:10:42 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:10:42 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:10:42 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:10:42 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:10:42 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:10:42 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:10:42 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:10:42 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:10:42 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:10:42 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:10:42 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:10:42 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:10:42 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:10:42 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:10:42 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:10:42 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:10:42 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:10:42 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:10:43 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:10:43 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:10:43 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:10:43 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:10:43 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:10:43 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:10:43 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:10:43 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:10:43 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:10:43 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:10:43 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:10:43 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:10:43 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:10:43 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:10:43 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:10:43 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:10:43 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:10:43 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:10:43 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:10:43 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:10:43 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:10:43 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:10:44 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:10:44 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:10:44 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:10:44 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:10:44 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:10:44 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:10:44 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:10:44 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:10:44 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:10:44 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:10:44 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:10:44 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:10:44 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:10:44 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:10:44 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:10:44 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:10:44 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:10:44 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:10:44 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:10:44 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:10:44 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:10:44 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:10:44 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:10:44 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:10:45 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:10:45 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:10:45 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:10:45 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:10:45 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:10:45 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:10:45 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:10:45 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:10:45 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:10:45 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:10:45 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:10:45 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:10:45 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:10:45 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:10:45 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:10:45 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:10:45 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:10:45 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:10:45 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:10:45 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:10:45 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:10:45 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:10:45 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:10:45 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:10:46 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:10:46 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:10:46 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:10:46 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:10:46 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:10:46 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:10:46 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:10:46 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:10:46 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:10:46 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:10:46 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:10:46 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:10:46 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:10:46 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:10:46 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:10:46 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:10:46 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:10:46 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:10:46 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:10:46 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:10:46 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:10:46 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:10:46 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:10:46 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:10:47 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:10:47 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:10:47 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:10:47 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:10:47 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:10:47 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:10:47 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:10:47 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:10:47 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:10:47 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:10:47 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:10:47 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:10:47 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:10:47 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:10:47 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:10:47 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:10:47 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:10:47 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:10:47 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:10:47 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:10:47 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:10:47 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:10:47 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:10:47 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:10:48 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:10:48 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:10:48 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:10:48 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:10:48 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:10:48 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:10:48 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:10:48 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:10:48 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:10:48 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:10:48 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:10:48 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:10:48 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:10:48 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:10:48 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:10:48 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:10:48 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:10:48 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:10:48 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:10:48 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:10:48 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:10:48 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:10:48 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:10:48 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:10:49 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:10:49 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:10:49 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:10:49 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:10:49 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:10:49 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:10:49 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:10:49 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:10:49 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:10:49 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:10:49 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:10:49 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:10:49 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:10:49 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:10:49 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:10:49 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:10:49 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:10:49 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:10:49 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:10:49 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:10:50 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:10:50 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:10:50 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:10:50 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:10:50 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:10:50 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:10:50 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:10:50 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:10:50 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:10:50 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:10:50 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:10:50 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:10:50 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:10:50 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:10:50 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:10:50 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:10:50 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:10:50 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:10:50 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:10:50 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:10:50 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:10:50 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:10:50 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:10:50 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:10:51 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:10:51 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:10:51 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:10:51 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:10:51 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:10:51 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:10:51 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:10:51 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:10:51 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:10:51 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:10:51 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:10:51 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:10:51 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:10:51 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:10:51 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:10:51 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:10:51 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:10:51 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:10:51 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:10:51 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:10:51 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:10:51 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:10:51 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:10:51 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:10:52 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:10:52 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:10:52 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:10:52 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:10:52 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:10:52 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:10:52 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:10:52 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:10:52 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:10:52 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:10:52 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:10:52 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:10:52 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:10:52 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:10:52 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:10:52 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:10:52 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:10:52 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:10:52 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:10:52 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:10:52 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:10:52 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:10:52 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:10:52 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:10:53 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:10:53 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:10:53 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:10:53 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:10:53 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:10:53 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:10:53 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:10:53 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:10:53 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:10:53 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:10:53 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:10:53 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:10:53 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:10:53 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:10:53 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:10:53 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:10:53 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:10:53 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:10:53 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:10:53 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:10:53 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:10:53 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:10:53 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:10:53 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:10:54 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:10:54 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:10:54 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:10:54 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:10:54 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:10:54 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:10:54 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:10:54 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:10:54 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:10:54 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:10:54 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:10:54 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:10:54 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:10:54 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:10:54 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:10:54 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:10:54 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:10:54 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:10:54 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:10:54 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:10:54 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:10:54 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:10:54 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:10:54 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:10:55 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:10:55 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:10:55 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:10:55 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:10:55 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:10:55 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:10:55 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:10:55 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:10:55 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:10:55 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:10:55 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:10:55 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:10:55 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:10:55 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:10:55 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:10:55 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:10:55 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:10:55 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:10:55 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:10:55 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:10:55 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:10:55 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:10:55 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:10:55 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:10:56 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:10:56 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:10:56 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:10:56 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:10:56 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:10:56 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:10:56 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:10:56 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:10:56 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:10:56 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:10:56 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:10:56 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:10:56 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:10:56 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:10:56 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:10:56 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:10:56 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:10:56 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:10:56 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:10:56 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:10:56 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:10:56 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:10:56 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:10:56 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:10:57 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:10:57 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:10:57 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:10:57 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:10:57 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:10:57 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:10:57 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:10:57 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:10:57 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:10:57 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:10:57 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:10:57 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:10:57 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:10:57 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:10:57 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:10:57 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:10:57 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:10:57 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:10:57 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:10:57 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:10:57 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:10:57 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:10:57 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:10:57 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:10:58 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:10:58 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:10:58 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:10:58 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:10:58 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:10:58 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:10:58 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:10:58 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:10:58 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:10:58 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:10:58 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:10:58 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:10:58 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:10:58 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:10:58 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:10:58 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:10:58 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:10:58 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:10:58 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:10:58 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:10:58 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:10:58 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:10:58 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:10:58 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:10:59 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:10:59 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:10:59 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:10:59 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:10:59 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:10:59 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:10:59 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:10:59 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:10:59 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:10:59 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:10:59 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:10:59 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:10:59 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:10:59 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:10:59 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:10:59 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:10:59 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:10:59 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:10:59 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:10:59 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:10:59 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:10:59 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:10:59 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:10:59 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:11:00 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:11:00 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:11:00 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:11:00 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:11:00 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:11:00 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:11:00 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:11:00 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:11:00 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:11:00 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:11:00 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:11:00 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:11:00 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:11:00 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:11:00 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:11:00 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:11:00 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:11:00 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:11:00 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:11:00 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:11:00 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:11:00 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:11:01 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:11:01 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:11:01 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:11:01 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:11:01 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:11:01 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:11:01 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:11:01 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:11:01 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:11:01 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:11:01 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:11:01 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:11:01 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:11:01 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:11:01 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:11:01 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:11:01 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:11:01 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:11:01 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:11:01 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:11:01 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:11:01 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:11:02 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:11:02 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:11:02 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:11:02 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:11:02 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:11:02 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:11:02 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:11:02 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:11:02 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:11:02 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:11:02 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:11:02 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:11:02 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:11:02 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:11:02 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:11:02 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:11:02 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:11:02 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:11:02 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:11:02 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:11:02 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:11:03 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:11:03 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:11:03 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:11:03 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:11:03 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:11:03 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:11:03 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:11:03 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:11:03 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:11:03 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:11:03 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:11:03 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:11:03 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:11:03 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:11:03 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:11:03 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:11:03 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:11:03 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:11:03 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:11:03 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:11:03 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:11:03 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:11:03 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:11:03 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:11:04 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:11:04 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:11:04 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:11:04 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:11:04 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:11:04 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:11:04 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:11:04 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:11:04 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:11:04 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:11:04 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:11:04 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:11:04 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:11:04 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:11:04 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:11:04 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:11:04 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:11:04 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:11:04 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:11:04 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:11:04 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:11:04 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:11:04 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:11:04 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:11:05 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:11:05 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:11:05 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:11:05 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:11:05 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:11:05 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:11:05 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:11:05 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:11:05 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:11:05 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:11:05 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:11:05 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:11:05 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:11:05 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:11:05 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:11:05 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:11:05 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:11:05 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:11:05 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:11:05 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:11:05 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:11:05 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:11:05 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:11:05 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:11:06 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:11:06 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:11:06 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:11:06 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:11:06 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:11:06 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:11:06 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:11:06 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:11:06 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:11:06 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:11:06 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:11:06 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:11:06 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:11:06 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:11:06 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:11:06 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:11:06 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:11:06 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:11:06 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:11:06 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:11:06 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:11:06 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:11:06 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:11:06 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:11:07 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:11:07 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:11:07 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:11:07 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:11:07 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:11:07 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:11:07 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:11:07 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:11:07 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:11:07 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:11:07 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:11:07 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:11:07 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:11:07 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:11:07 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:11:07 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:11:07 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:11:07 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:11:07 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:11:07 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:11:07 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:11:08 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:11:08 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:11:08 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:11:08 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:11:08 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:11:08 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:11:08 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:11:08 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:11:08 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:11:08 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:11:08 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:11:08 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:11:08 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:11:08 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:11:08 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:11:08 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:11:08 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:11:08 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:11:08 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:11:08 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:11:08 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:11:08 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:11:08 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:11:08 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:11:09 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:11:09 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:11:09 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:11:09 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:11:09 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:11:09 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:11:09 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:11:09 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:11:09 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:11:09 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:11:09 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:11:09 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:11:09 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:11:09 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:11:09 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:11:09 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:11:09 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:11:09 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:11:09 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:11:09 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:11:09 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:11:09 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:11:09 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:11:09 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:11:10 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:11:10 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:11:10 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:11:10 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:11:10 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:11:10 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:11:10 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:11:10 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:11:10 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:11:10 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:11:10 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:11:10 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:11:10 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:11:10 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:11:10 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:11:10 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:11:10 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:11:10 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:11:10 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:11:10 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:11:10 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:11:10 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:11:10 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:11:10 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:11:11 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:11:11 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:11:11 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:11:11 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:11:11 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:11:11 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:11:11 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:11:11 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:11:11 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:11:11 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:11:11 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:11:11 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:11:11 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:11:11 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:11:11 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:11:11 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:11:11 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:11:11 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:11:11 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:11:12 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:11:12 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:11:12 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:11:12 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:11:12 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:11:12 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:11:12 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:11:12 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:11:12 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:11:12 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:11:12 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:11:12 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:11:12 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:11:12 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:11:12 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:11:12 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:11:12 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:11:12 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:11:12 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:11:12 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:11:12 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:11:12 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:11:12 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:11:12 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:11:13 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:11:13 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:11:13 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:11:13 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:11:13 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:11:13 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:11:13 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:11:13 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:11:13 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:11:13 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:11:13 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:11:13 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:11:13 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:11:13 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:11:13 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:11:13 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:11:13 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:11:13 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:11:13 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:11:13 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:11:13 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:11:13 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:11:13 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:11:13 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:11:14 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:11:14 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:11:14 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:11:14 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:11:14 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:11:14 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:11:14 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:11:14 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:11:14 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:11:14 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:11:14 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:11:14 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:11:14 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:11:14 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:11:14 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:11:14 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:11:14 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:11:14 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:11:14 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:11:14 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:11:14 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:11:15 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:11:15 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:11:15 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:11:15 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:11:15 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:11:15 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:11:15 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:11:15 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:11:15 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:11:15 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:11:15 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:11:15 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:11:15 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:11:15 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:11:15 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:11:15 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:11:15 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:11:15 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:11:15 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:11:15 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:11:15 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:11:15 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:11:15 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:11:15 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:11:16 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:11:16 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:11:16 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:11:16 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:11:16 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:11:16 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:11:16 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:11:16 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:11:16 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:11:16 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:11:16 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:11:16 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:11:16 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:11:16 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:11:16 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:11:16 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:11:16 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:11:16 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:11:16 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:11:16 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:11:16 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:11:16 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:11:16 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:11:16 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:11:17 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:11:17 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:11:17 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:11:17 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:11:17 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:11:17 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:11:17 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:11:17 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:11:17 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:11:17 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:11:17 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:11:17 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:11:17 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:11:17 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:11:17 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:11:17 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:11:17 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:11:17 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:11:17 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:11:17 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:11:17 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:11:18 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:11:18 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:11:18 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:11:18 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:11:18 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:11:18 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:11:18 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:11:18 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:11:18 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:11:18 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:11:18 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:11:18 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:11:18 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:11:18 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:11:18 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:11:18 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:11:18 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:11:18 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:11:18 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:11:18 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:11:18 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:11:18 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:11:18 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:11:18 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:11:19 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:11:19 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:11:19 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:11:19 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:11:19 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:11:19 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:11:19 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:11:19 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:11:19 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:11:19 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:11:19 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:11:19 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:11:19 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:11:19 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:11:19 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:11:19 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:11:19 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:11:19 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:11:19 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:11:19 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:11:19 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:11:19 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:11:19 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:11:19 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:11:20 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:11:20 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:11:20 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:11:20 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:11:20 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:11:20 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:11:20 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:11:20 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:11:20 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:11:20 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:11:20 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:11:20 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:11:20 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:11:20 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:11:20 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:11:20 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:11:20 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:11:20 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:11:20 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:11:21 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:11:21 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:11:21 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:11:21 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:11:21 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:11:21 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:11:21 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:11:21 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:11:21 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:11:21 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:11:21 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:11:21 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:11:21 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:11:21 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:11:21 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:11:21 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:11:21 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:11:21 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:11:21 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:11:21 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:11:21 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:11:21 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:11:21 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:11:21 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:11:22 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:11:22 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:11:22 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:11:22 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:11:22 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:11:22 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:11:22 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:11:22 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:11:22 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:11:22 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:11:22 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:11:22 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:11:22 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:11:22 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:11:22 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:11:22 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:11:22 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:11:22 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:11:22 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:11:22 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:11:23 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:11:23 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:11:23 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:11:23 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:11:23 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:11:23 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:11:23 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:11:23 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:11:23 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:11:23 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:11:23 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:11:23 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:11:23 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:11:23 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:11:23 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:11:23 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:11:23 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:11:23 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:11:23 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:11:23 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:11:23 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:11:23 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:11:23 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:11:23 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:11:24 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:11:24 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:11:24 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:11:24 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:11:24 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:11:24 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:11:24 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:11:24 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:11:24 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:11:24 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:11:24 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:11:24 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:11:24 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:11:24 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:11:24 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:11:24 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:11:24 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:11:24 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:11:24 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:11:24 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:11:24 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:11:24 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:11:24 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:11:24 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:11:25 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:11:25 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:11:25 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:11:25 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:11:25 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:11:25 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:11:25 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:11:25 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:11:25 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:11:25 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:11:25 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:11:25 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:11:25 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:11:25 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:11:25 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:11:25 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:11:25 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:11:25 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:11:25 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:11:26 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:11:26 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:11:26 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:11:26 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:11:26 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:11:26 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:11:26 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:11:26 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:11:26 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:11:26 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:11:26 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:11:26 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:11:26 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:11:26 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:11:26 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:11:26 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:11:26 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:11:26 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:11:27 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:11:27 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:11:27 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:11:27 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:11:27 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:11:27 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:11:27 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:11:27 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:11:27 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:11:27 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:11:27 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:11:27 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:11:27 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:11:27 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:11:27 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:11:27 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:11:27 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:11:27 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:11:27 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:11:27 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:11:27 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:11:28 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:11:28 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:11:28 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:11:28 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:11:28 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:11:28 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:11:28 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:11:28 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:11:28 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:11:28 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:11:28 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:11:29 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:11:29 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:11:29 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:11:29 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:11:29 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:11:29 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:11:29 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:11:29 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:11:29 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:11:29 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:11:29 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:11:29 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:11:29 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:11:29 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:11:29 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:11:29 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:11:30 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:11:30 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:11:30 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:11:30 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:11:30 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:11:30 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:11:30 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:11:30 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:11:30 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:11:30 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:11:30 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:11:30 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:11:30 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:11:30 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:11:30 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:11:30 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:11:30 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:11:30 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:11:30 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:11:30 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:11:30 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:11:30 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:11:30 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:11:30 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:11:31 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:11:31 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:11:31 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:11:31 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:11:31 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:11:31 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:11:31 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:11:31 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:11:31 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:11:31 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:11:31 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:11:31 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:11:31 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:11:31 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:11:31 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:11:31 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:11:31 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:11:31 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:11:31 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:11:31 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:11:31 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:11:32 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:11:32 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:11:32 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:11:32 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:11:32 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:11:32 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:11:32 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:11:32 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:11:32 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:11:32 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:11:32 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:11:32 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:11:32 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:11:32 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:11:32 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:11:32 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:11:32 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:11:32 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:11:32 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:11:32 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:11:32 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:11:33 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:11:33 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:11:33 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:11:33 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:11:33 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:11:33 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:11:33 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:11:33 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:11:33 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:11:33 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:11:33 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:11:33 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:11:33 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:11:33 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:11:33 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:11:33 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:11:33 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:11:33 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:11:33 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:11:33 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:11:33 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:11:33 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:11:33 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:11:34 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:11:34 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:11:34 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:11:34 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:11:34 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:11:34 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:11:34 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:11:34 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:11:34 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:11:34 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:11:34 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:11:34 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:11:34 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:11:34 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:11:34 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:11:34 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:11:34 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:11:34 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:11:34 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:11:34 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:11:35 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:11:35 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:11:35 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:11:35 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:11:35 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:11:35 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:11:35 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:11:35 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:11:35 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:11:35 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:11:35 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:11:35 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:11:35 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:11:35 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:11:35 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:11:35 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:11:35 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:11:35 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:11:35 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:11:35 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:11:35 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:11:35 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:11:35 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:11:35 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:11:36 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:11:36 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:11:36 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:11:36 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:11:36 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:11:36 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:11:36 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:11:36 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:11:36 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:11:36 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:11:36 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:11:36 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:11:36 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:11:36 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:11:36 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:11:36 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:11:36 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:11:36 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:11:36 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:11:37 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:11:37 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:11:37 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:11:37 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:11:37 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:11:37 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:11:37 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:11:37 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:11:37 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:11:37 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:11:37 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:11:37 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:11:37 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:11:37 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:11:37 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:11:37 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:11:37 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:11:37 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:11:37 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:11:37 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:11:37 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:11:37 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:11:37 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:11:37 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:11:38 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:11:38 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:11:38 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:11:38 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:11:38 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:11:38 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:11:38 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:11:38 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:11:38 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:11:38 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:11:38 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:11:38 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:11:38 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:11:38 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:11:38 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:11:38 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:11:38 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:11:38 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:11:38 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:11:38 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:11:38 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:11:38 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:11:38 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:11:38 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:11:39 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:11:39 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:11:39 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:11:39 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:11:39 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:11:39 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:11:39 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:11:39 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:11:39 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:11:39 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:11:39 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:11:39 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:11:39 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:11:39 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:11:39 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:11:39 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:11:39 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:11:39 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:11:39 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:11:39 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:11:39 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:11:40 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:11:40 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:11:40 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:11:40 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:11:40 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:11:40 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:11:40 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:11:40 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:11:40 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:11:40 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:11:40 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:11:40 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:11:40 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:11:40 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:11:40 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:11:40 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:11:40 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:11:40 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:11:40 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:11:40 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:11:40 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:11:40 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:11:40 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:11:40 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:11:41 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:11:41 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:11:41 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:11:41 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:11:41 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:11:41 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:11:41 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:11:41 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:11:41 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:11:41 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:11:41 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:11:41 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:11:41 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:11:41 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:11:41 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:11:41 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:11:41 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:11:41 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:11:41 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:11:41 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:11:41 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:11:42 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:11:42 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:11:42 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:11:42 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:11:42 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:11:42 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:11:42 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:11:42 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:11:42 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:11:42 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:11:42 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:11:42 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:11:42 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:11:42 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:11:42 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:11:42 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:11:42 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:11:42 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:11:42 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:11:42 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:11:42 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:11:42 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:11:42 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:11:42 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:11:43 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:11:43 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:11:43 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:11:43 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:11:43 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:11:43 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:11:43 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:11:43 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:11:43 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:11:43 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:11:43 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:11:43 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:11:43 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:11:43 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:11:43 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:11:43 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:11:43 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:11:43 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:11:43 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:11:43 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:11:43 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:11:44 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:11:44 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:11:44 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:11:44 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:11:44 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:11:44 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:11:44 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:11:44 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:11:44 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:11:44 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:11:44 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:11:44 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:11:44 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:11:44 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:11:44 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:11:44 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:11:44 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:11:44 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:11:44 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:11:44 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:11:44 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:11:45 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:11:45 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:11:45 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:11:45 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:11:45 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:11:45 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:11:45 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:11:45 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:11:45 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:11:45 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:11:45 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:11:45 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:11:45 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:11:45 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:11:45 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:11:45 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:11:45 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:11:45 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:11:45 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:11:45 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:11:45 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:11:45 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:11:45 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:11:45 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:11:46 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:11:46 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:11:46 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:11:46 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:11:46 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:11:46 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:11:46 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:11:46 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:11:46 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:11:46 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:11:46 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:11:46 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:11:46 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:11:46 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:11:46 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:11:46 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:11:46 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:11:46 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:11:46 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:11:46 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:11:46 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:11:47 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:11:47 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:11:47 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:11:47 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:11:47 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:11:47 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:11:47 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:11:47 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:11:47 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:11:47 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:11:47 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:11:47 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:11:47 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:11:47 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:11:47 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:11:47 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:11:47 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:11:47 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:11:47 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:11:47 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:11:47 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:11:47 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:11:47 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:11:47 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:11:48 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:11:48 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:11:48 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:11:48 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:11:48 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:11:48 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:11:48 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:11:48 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:11:48 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:11:48 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:11:48 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:11:48 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:11:48 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:11:48 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:11:48 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:11:48 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:11:48 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:11:48 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:11:48 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:11:48 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:11:48 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:11:49 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:11:49 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:11:49 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:11:49 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:11:49 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:11:49 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:11:49 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:11:49 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:11:49 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:11:49 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:11:49 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:11:49 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:11:49 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:11:49 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:11:49 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:11:49 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:11:49 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:11:49 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:11:49 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:11:49 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:11:49 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:11:49 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:11:49 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:11:49 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:11:50 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:11:50 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:11:50 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:11:50 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:11:50 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:11:50 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:11:50 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:11:50 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:11:50 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:11:50 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:11:50 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:11:50 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:11:50 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:11:50 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:11:50 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:11:50 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:11:50 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:11:50 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:11:50 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:11:50 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:11:50 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:11:51 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:11:51 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:11:51 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:11:51 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:11:51 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:11:51 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:11:51 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:11:51 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:11:51 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:11:51 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:11:51 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:11:51 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:11:51 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:11:51 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:11:51 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:11:51 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:11:51 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:11:51 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:11:51 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:11:51 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:11:51 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:11:51 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:11:51 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:11:51 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:11:52 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:11:52 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:11:52 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:11:52 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:11:52 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:11:52 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:11:52 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:11:52 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:11:52 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:11:52 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:11:52 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:11:52 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:11:52 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:11:52 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:11:52 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:11:52 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:11:52 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:11:52 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:11:52 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:11:52 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:11:53 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:11:53 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:11:53 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:11:53 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:11:53 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:11:53 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:11:53 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:11:53 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:11:53 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:11:53 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:11:53 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:11:53 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:11:53 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:11:53 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:11:53 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:11:53 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:11:53 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:11:53 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:11:53 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:11:53 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:11:53 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:11:53 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:11:53 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:11:54 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:11:54 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:11:54 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:11:54 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:11:54 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:11:54 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:11:54 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:11:54 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:11:54 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:11:54 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:11:54 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:11:54 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:11:54 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:11:54 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:11:54 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:11:54 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:11:55 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:11:55 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:11:55 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:11:55 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:11:55 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:11:55 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:11:55 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:11:55 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:11:55 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:11:55 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:11:55 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:11:55 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:11:55 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:11:55 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:11:55 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:11:55 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:11:55 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:11:55 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:11:55 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:11:55 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:11:55 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:11:55 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:11:55 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:11:55 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:11:56 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:11:56 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:11:56 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:11:56 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:11:56 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:11:56 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:11:56 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:11:56 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:11:56 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:11:56 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:11:56 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:11:56 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:11:56 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:11:56 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:11:56 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:11:56 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:11:56 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:11:56 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:11:56 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:11:56 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:11:56 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:11:57 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:11:57 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:11:57 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:11:57 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:11:57 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:11:57 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:11:57 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:11:57 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:11:57 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:11:57 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:11:57 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:11:57 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:11:57 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:11:57 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:11:57 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:11:58 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:11:58 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:11:58 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:11:58 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:11:58 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:11:58 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:11:58 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:11:58 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:11:58 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:11:58 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:11:58 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:11:58 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:11:58 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:11:58 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:11:58 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:11:58 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:11:58 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:11:58 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:11:58 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:11:59 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:11:59 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:11:59 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:11:59 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:11:59 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:11:59 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:11:59 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:11:59 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:11:59 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:11:59 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:11:59 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:11:59 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:11:59 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:11:59 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:11:59 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:11:59 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:11:59 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:11:59 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:11:59 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:11:59 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:11:59 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:12:00 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:12:00 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:12:00 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:12:00 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:12:00 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:12:00 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:12:00 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:12:00 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:12:00 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:12:00 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:12:00 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:12:00 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:12:00 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:12:00 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:12:00 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:12:00 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:12:00 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:12:00 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:12:00 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:12:00 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:12:00 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:12:01 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:12:01 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:12:01 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:12:01 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:12:01 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:12:01 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:12:01 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:12:01 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:12:01 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:12:01 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:12:01 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:12:01 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:12:01 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:12:01 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:12:01 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:12:01 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:12:01 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:12:01 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:12:01 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:12:01 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:12:01 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:12:01 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:12:01 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:12:01 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:12:02 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:12:02 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:12:02 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:12:02 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:12:02 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:12:02 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:12:02 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:12:02 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:12:02 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:12:02 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:12:02 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:12:02 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:12:02 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:12:02 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:12:02 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:12:02 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:12:02 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:12:02 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:12:02 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:12:02 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:12:02 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:12:03 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:12:03 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:12:03 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:12:03 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:12:03 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:12:03 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:12:03 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:12:03 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:12:03 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:12:03 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:12:03 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:12:03 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:12:03 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:12:03 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:12:03 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:12:03 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:12:03 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:12:03 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:12:03 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:12:04 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:12:04 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:12:04 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:12:04 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:12:04 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:12:04 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:12:04 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:12:04 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:12:04 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:12:04 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:12:04 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:12:04 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:12:04 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:12:04 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:12:04 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:12:04 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:12:04 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:12:04 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:12:04 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:12:04 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:12:04 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:12:04 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:12:04 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:12:05 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:12:05 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:12:05 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:12:05 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:12:05 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:12:05 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:12:05 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:12:05 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:12:05 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:12:05 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:12:05 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:12:05 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:12:05 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:12:05 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:12:05 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:12:05 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:12:05 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:12:05 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:12:06 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:12:06 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:12:06 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:12:06 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:12:06 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:12:06 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:12:06 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:12:06 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:12:06 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:12:06 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:12:06 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:12:06 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:12:06 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:12:06 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:12:06 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:12:06 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:12:06 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:12:06 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:12:06 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:12:06 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:12:06 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:12:07 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:12:07 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:12:07 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:12:07 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:12:07 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:12:07 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:12:07 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:12:07 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:12:07 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:12:07 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:12:07 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:12:07 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:12:07 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:12:07 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:12:07 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:12:07 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:12:07 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:12:07 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:12:07 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:12:07 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:12:07 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:12:08 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:12:08 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:12:08 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:12:08 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:12:08 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:12:08 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:12:08 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:12:08 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:12:08 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:12:08 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:12:08 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:12:08 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:12:08 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:12:08 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:12:08 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:12:08 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:12:08 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:12:08 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:12:08 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:12:08 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:12:08 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:12:08 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:12:08 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:12:08 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:12:09 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:12:09 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:12:09 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:12:09 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:12:09 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:12:09 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:12:09 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:12:09 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:12:09 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:12:09 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:12:09 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:12:09 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:12:09 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:12:09 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:12:09 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:12:09 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:12:09 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:12:09 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:12:10 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:12:10 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:12:10 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:12:10 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:12:10 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:12:10 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:12:10 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:12:10 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:12:10 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:12:10 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:12:10 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:12:10 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:12:10 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:12:10 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:12:10 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:12:10 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:12:10 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:12:10 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:12:11 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:12:11 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:12:11 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:12:11 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:12:11 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:12:11 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:12:11 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:12:11 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:12:11 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:12:11 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:12:11 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:12:11 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:12:11 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:12:11 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:12:11 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:12:11 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:12:11 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:12:11 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:12:11 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:12:11 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:12:12 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:12:12 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:12:12 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:12:12 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:12:12 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:12:12 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:12:12 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:12:12 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:12:12 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:12:12 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:12:12 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:12:12 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:12:12 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:12:12 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:12:12 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:12:12 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:12:12 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:12:12 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:12:12 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:12:12 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:12:12 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:12:12 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:12:12 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:12:13 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:12:13 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:12:13 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:12:13 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:12:13 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:12:13 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:12:13 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:12:13 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:12:13 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:12:13 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:12:13 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:12:13 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:12:13 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:12:13 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:12:13 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:12:13 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:12:13 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:12:13 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:12:13 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:12:13 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:12:13 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:12:14 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:12:14 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:12:14 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:12:14 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:12:14 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:12:14 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:12:14 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:12:14 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:12:14 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:12:14 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:12:14 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:12:14 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:12:14 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:12:14 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:12:14 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:12:14 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:12:14 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:12:14 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:12:14 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:12:15 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:12:15 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:12:15 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:12:15 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:12:15 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:12:15 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:12:15 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:12:15 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:12:15 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:12:15 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:12:15 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:12:15 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:12:15 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:12:15 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:12:15 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:12:15 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:12:15 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:12:15 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:12:15 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:12:15 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:12:15 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:12:16 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:12:16 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:12:16 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:12:16 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:12:16 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:12:16 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:12:16 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:12:16 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:12:16 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:12:16 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:12:16 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:12:16 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:12:16 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:12:16 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:12:16 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:12:16 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:12:16 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:12:16 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:12:16 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:12:16 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:12:17 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:12:17 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:12:17 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:12:17 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:12:17 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:12:17 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:12:17 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:12:17 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:12:17 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:12:17 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:12:17 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:12:17 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:12:17 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:12:17 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:12:17 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:12:17 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:12:17 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:12:17 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:12:17 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:12:17 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:12:17 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:12:18 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:12:18 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:12:18 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:12:18 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:12:18 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:12:18 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:12:18 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:12:18 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:12:18 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:12:18 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:12:18 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:12:18 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:12:18 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:12:18 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:12:18 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:12:18 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:12:18 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:12:18 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:12:19 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:12:19 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:12:19 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:12:19 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:12:19 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:12:19 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:12:19 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:12:19 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:12:19 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:12:19 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:12:19 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:12:19 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:12:19 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:12:19 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:12:19 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:12:19 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:12:20 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:12:20 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:12:20 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:12:20 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:12:20 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:12:20 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:12:20 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:12:20 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:12:20 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:12:20 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:12:20 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:12:20 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:12:20 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:12:21 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:12:21 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:12:21 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:12:21 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:12:21 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:12:21 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:12:21 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:12:21 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:12:21 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:12:21 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:12:21 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:12:21 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:12:21 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:12:21 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:12:22 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:12:22 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:12:22 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:12:22 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:12:22 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:12:22 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:12:22 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:12:22 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:12:22 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:12:22 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:12:22 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:12:22 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:12:22 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:12:22 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:12:23 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:12:23 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:12:23 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:12:23 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:12:23 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:12:23 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:12:23 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:12:23 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:12:23 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:12:23 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:12:23 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:12:23 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:12:23 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:12:23 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:12:24 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:12:24 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:12:24 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:12:24 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:12:24 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:12:24 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:12:24 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:12:24 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:12:24 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:12:24 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:12:24 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:12:24 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:12:24 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:12:24 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:12:25 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:12:25 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:12:25 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:12:25 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:12:25 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:12:25 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:12:25 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:12:25 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:12:25 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:12:25 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:12:25 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:12:25 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:12:25 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:12:25 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:12:26 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:12:26 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:12:26 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:12:26 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:12:26 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:12:26 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:12:26 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:12:26 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:12:26 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:12:26 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:12:26 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:12:26 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:12:26 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:12:26 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:12:27 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:12:27 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:12:27 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:12:27 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:12:27 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:12:27 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:12:27 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:12:27 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:12:27 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:12:27 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:12:27 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:12:27 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:12:27 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:12:27 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:12:28 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:12:28 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:12:28 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:12:28 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:12:28 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:12:28 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:12:28 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:12:28 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:12:28 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:12:28 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:12:28 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:12:29 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:12:29 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:12:29 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:12:29 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoice.php 191
+ERROR - 2019-01-10 08:12:56 --> Severity: Notice --> Undefined variable: fdate C:\xampp\htdocs\ria\application\controllers\cashbook.php 1172
+ERROR - 2019-01-10 08:12:56 --> Severity: Notice --> Undefined variable: tdate C:\xampp\htdocs\ria\application\controllers\cashbook.php 1172
+ERROR - 2019-01-10 08:12:56 --> Severity: Notice --> Undefined variable: fa C:\xampp\htdocs\ria\application\controllers\cashbook.php 1172
+ERROR - 2019-01-10 08:12:56 --> Severity: Notice --> Undefined variable: aa C:\xampp\htdocs\ria\application\controllers\cashbook.php 1172
+ERROR - 2019-01-10 08:12:56 --> Severity: Notice --> Undefined variable: financialyear C:\xampp\htdocs\ria\application\views\bankstatement.php 2
+ERROR - 2019-01-10 08:12:57 --> Severity: Warning --> Invalid argument supplied for foreach() C:\xampp\htdocs\ria\application\views\bankstatement.php 2
+ERROR - 2019-01-10 08:12:57 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 85
+ERROR - 2019-01-10 08:12:57 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 85
+ERROR - 2019-01-10 08:12:57 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 86
+ERROR - 2019-01-10 08:12:57 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 86
+ERROR - 2019-01-10 08:12:57 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 87
+ERROR - 2019-01-10 08:12:57 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 87
+ERROR - 2019-01-10 08:12:58 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 137
+ERROR - 2019-01-10 08:12:58 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 137
+ERROR - 2019-01-10 08:12:58 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 138
+ERROR - 2019-01-10 08:12:58 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 138
+ERROR - 2019-01-10 08:12:58 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 139
+ERROR - 2019-01-10 08:12:58 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 139
+ERROR - 2019-01-10 08:17:18 --> Severity: Notice --> Undefined variable: fdate C:\xampp\htdocs\ria\application\controllers\cashbook.php 1172
+ERROR - 2019-01-10 08:17:19 --> Severity: Notice --> Undefined variable: tdate C:\xampp\htdocs\ria\application\controllers\cashbook.php 1172
+ERROR - 2019-01-10 08:17:19 --> Severity: Notice --> Undefined variable: fa C:\xampp\htdocs\ria\application\controllers\cashbook.php 1172
+ERROR - 2019-01-10 08:17:19 --> Severity: Notice --> Undefined variable: aa C:\xampp\htdocs\ria\application\controllers\cashbook.php 1172
+ERROR - 2019-01-10 08:17:19 --> Severity: Notice --> Undefined variable: fdate C:\xampp\htdocs\ria\application\controllers\cashbook.php 1172
+ERROR - 2019-01-10 08:17:19 --> Severity: Notice --> Undefined variable: financialyear C:\xampp\htdocs\ria\application\views\bankstatement.php 2
+ERROR - 2019-01-10 08:17:20 --> Severity: Notice --> Undefined variable: tdate C:\xampp\htdocs\ria\application\controllers\cashbook.php 1172
+ERROR - 2019-01-10 08:17:20 --> Severity: Warning --> Invalid argument supplied for foreach() C:\xampp\htdocs\ria\application\views\bankstatement.php 2
+ERROR - 2019-01-10 08:17:20 --> Severity: Notice --> Undefined variable: fa C:\xampp\htdocs\ria\application\controllers\cashbook.php 1172
+ERROR - 2019-01-10 08:17:20 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 85
+ERROR - 2019-01-10 08:17:20 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 85
+ERROR - 2019-01-10 08:17:20 --> Severity: Notice --> Undefined variable: aa C:\xampp\htdocs\ria\application\controllers\cashbook.php 1172
+ERROR - 2019-01-10 08:17:20 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 86
+ERROR - 2019-01-10 08:17:20 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 86
+ERROR - 2019-01-10 08:17:20 --> Severity: Notice --> Undefined variable: financialyear C:\xampp\htdocs\ria\application\views\bankstatement.php 2
+ERROR - 2019-01-10 08:17:20 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 87
+ERROR - 2019-01-10 08:17:20 --> Severity: Warning --> Invalid argument supplied for foreach() C:\xampp\htdocs\ria\application\views\bankstatement.php 2
+ERROR - 2019-01-10 08:17:21 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 87
+ERROR - 2019-01-10 08:17:21 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 85
+ERROR - 2019-01-10 08:17:21 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 85
+ERROR - 2019-01-10 08:17:21 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 137
+ERROR - 2019-01-10 08:17:21 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 137
+ERROR - 2019-01-10 08:17:21 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 86
+ERROR - 2019-01-10 08:17:21 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 86
+ERROR - 2019-01-10 08:17:21 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 138
+ERROR - 2019-01-10 08:17:21 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 87
+ERROR - 2019-01-10 08:17:21 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 138
+ERROR - 2019-01-10 08:17:21 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 139
+ERROR - 2019-01-10 08:17:21 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 87
+ERROR - 2019-01-10 08:17:21 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 137
+ERROR - 2019-01-10 08:17:21 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 139
+ERROR - 2019-01-10 08:17:22 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 137
+ERROR - 2019-01-10 08:17:22 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 138
+ERROR - 2019-01-10 08:17:22 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 138
+ERROR - 2019-01-10 08:17:22 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 139
+ERROR - 2019-01-10 08:17:22 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 139
+ERROR - 2019-01-10 08:17:38 --> Severity: Notice --> Undefined variable: financialyear C:\xampp\htdocs\ria\application\views\bankinvoice.php 2
+ERROR - 2019-01-10 08:17:38 --> Severity: Warning --> Invalid argument supplied for foreach() C:\xampp\htdocs\ria\application\views\bankinvoice.php 2
+ERROR - 2019-01-10 08:17:38 --> Severity: Notice --> Undefined variable: cash C:\xampp\htdocs\ria\application\views\bankinvoice.php 80
+ERROR - 2019-01-10 08:17:38 --> Severity: Notice --> Undefined variable: bankid C:\xampp\htdocs\ria\application\views\bankinvoice.php 82
+ERROR - 2019-01-10 08:17:46 --> Severity: Notice --> Undefined variable: financialyear C:\xampp\htdocs\ria\application\views\bankinvoice.php 2
+ERROR - 2019-01-10 08:17:46 --> Severity: Warning --> Invalid argument supplied for foreach() C:\xampp\htdocs\ria\application\views\bankinvoice.php 2
+ERROR - 2019-01-10 08:17:46 --> Severity: Notice --> Undefined variable: cash C:\xampp\htdocs\ria\application\views\bankinvoice.php 80
+ERROR - 2019-01-10 08:17:46 --> Severity: Notice --> Undefined variable: bankid C:\xampp\htdocs\ria\application\views\bankinvoice.php 82
+ERROR - 2019-01-10 08:17:46 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:17:46 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:17:47 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:17:47 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:17:47 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:17:47 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:17:47 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:17:47 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:17:47 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:17:48 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:17:48 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:17:48 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:17:48 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:17:48 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:17:48 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:17:48 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:17:49 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:17:49 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:17:49 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:17:49 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:17:49 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:17:49 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:17:49 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:17:50 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:17:50 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:17:50 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:17:50 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:17:50 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:17:50 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:17:50 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:17:51 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:17:51 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:17:51 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:17:51 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:17:51 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:17:51 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:17:51 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:17:51 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:17:52 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:17:52 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:17:52 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:17:52 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:17:52 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:17:52 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:17:52 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:17:53 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:17:53 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:17:53 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:17:53 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:17:53 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:17:53 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:17:53 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:17:54 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:17:54 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:17:54 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:17:54 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:17:54 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:17:54 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:17:54 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:17:55 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:17:55 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:17:55 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:17:55 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:17:55 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:17:55 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:17:55 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:17:56 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:17:56 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:17:56 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:17:56 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:17:56 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:17:56 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:17:56 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:17:57 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:17:57 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:17:57 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:17:57 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:17:57 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:17:57 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:17:57 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:17:58 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:17:58 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:17:58 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:17:58 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:17:58 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:17:58 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:17:58 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:17:59 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:17:59 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:17:59 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:17:59 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:17:59 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:17:59 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:17:59 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:18:00 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:18:00 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:18:00 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:18:00 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:18:00 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:18:00 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:18:00 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:18:01 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:18:01 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:18:01 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:18:01 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:18:01 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:18:01 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:18:01 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:18:02 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:18:02 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:18:02 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:18:02 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:18:02 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:18:02 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:18:02 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:18:03 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:18:03 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:18:03 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:18:03 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:18:03 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:18:03 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:18:03 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:18:04 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:18:04 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:18:04 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:18:04 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:18:04 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:18:04 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:18:04 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:18:05 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:18:05 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:18:05 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:18:05 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:18:05 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:18:05 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:18:05 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:18:06 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:18:06 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:18:06 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:18:06 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:18:06 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:18:06 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:18:06 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:18:07 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:18:07 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:18:07 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:18:07 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:18:07 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:18:07 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:18:07 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:18:08 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:18:08 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:18:08 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:18:08 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:18:08 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:18:08 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:18:08 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:18:09 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:18:09 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:18:09 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:18:09 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:18:09 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:18:09 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:18:09 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:18:10 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:18:10 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:18:10 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:18:10 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:18:10 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:18:10 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:18:10 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:18:11 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:18:11 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:18:11 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:18:11 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:18:11 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:18:11 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:18:11 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:18:12 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:18:12 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:18:12 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:18:12 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:18:12 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:18:12 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:18:12 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:18:13 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:18:13 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:18:13 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:18:13 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:18:13 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:18:13 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:18:13 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:18:14 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:18:14 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:18:14 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:18:14 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:18:14 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:18:14 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:18:14 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:18:15 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:18:15 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:18:15 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:18:15 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:18:15 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:18:15 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:18:15 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:18:16 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:18:16 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:18:16 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:18:16 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:18:16 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:18:16 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:18:16 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:18:17 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:18:17 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:18:17 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:18:17 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:18:17 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:18:17 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:18:17 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:18:18 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:18:18 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:18:18 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:18:18 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:18:18 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:18:18 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:18:18 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:18:19 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:18:19 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:18:19 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:18:19 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:18:19 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:18:19 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:18:19 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:18:20 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:18:20 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:18:20 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:18:20 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:18:20 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:18:20 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:18:20 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:18:21 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:18:21 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:18:21 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:18:21 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:18:21 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:18:21 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:18:21 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:18:22 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:18:22 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:18:22 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:18:22 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:18:22 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:18:22 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:18:22 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:18:23 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:18:23 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:18:23 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:18:23 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:18:23 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:18:23 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:18:23 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:18:24 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:18:24 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:18:24 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:18:24 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:18:24 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:18:24 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:18:24 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:18:25 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:18:25 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:18:25 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:18:25 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:18:25 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:18:25 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:18:25 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:18:26 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:18:26 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:18:26 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:18:26 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:18:26 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:18:26 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:18:26 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:18:27 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:18:27 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:18:27 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:18:27 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:18:27 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:18:27 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:18:27 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:18:28 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:18:28 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:18:28 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:18:28 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:18:28 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:18:28 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:18:28 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:18:29 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:18:29 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:18:29 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:18:29 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:18:29 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:18:29 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:18:29 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:18:30 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:18:30 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:18:30 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:18:30 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:18:30 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:18:30 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:18:30 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:18:31 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:18:31 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:18:31 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:18:31 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:18:31 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:18:31 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:18:31 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:18:32 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:18:32 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:18:32 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:18:32 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:18:32 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:18:32 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:18:32 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:18:33 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:18:33 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:18:33 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:18:33 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:18:33 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:18:33 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:18:33 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:18:34 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:18:34 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:18:34 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:18:34 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:18:34 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:18:34 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:18:34 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:18:35 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:18:35 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:18:35 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:18:35 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:18:35 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:18:35 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:18:35 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:18:36 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:18:36 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:18:36 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:18:36 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:18:36 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:18:36 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:18:36 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:18:37 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:18:37 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:18:37 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:18:37 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:18:37 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:18:37 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:18:37 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:18:38 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:18:38 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:18:38 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:18:38 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:18:38 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:18:38 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:18:38 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:18:39 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:18:39 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:18:39 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:18:39 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:18:39 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:18:39 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:18:39 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:18:40 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:18:40 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:18:40 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:18:40 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:18:40 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:18:40 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:18:40 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:18:41 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:18:41 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:18:41 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:18:41 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:18:41 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:18:41 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:18:41 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:18:42 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:18:42 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:18:42 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:18:42 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:18:42 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:18:42 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:18:42 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:18:43 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:18:43 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:18:43 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:18:43 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:18:43 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:18:43 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:18:43 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:18:44 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:18:44 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:18:44 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:18:44 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:18:44 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:18:44 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:18:44 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:18:45 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:18:45 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:18:45 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:18:45 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:18:45 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:18:45 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:18:45 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:18:46 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:18:46 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:18:46 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:18:46 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:18:46 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:18:46 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:18:47 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:18:47 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:18:47 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:18:47 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:18:47 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:18:47 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:18:47 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:18:48 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:18:48 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:18:48 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:18:48 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:18:48 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:18:48 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:18:48 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:18:49 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:18:49 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:18:49 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:18:49 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:18:49 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:18:49 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:18:49 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:18:50 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:18:50 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:18:50 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:18:50 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:18:50 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:18:50 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:18:50 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:18:51 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:18:51 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:18:51 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:18:51 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:18:51 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:18:51 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:18:52 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:18:52 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:18:52 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:18:52 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:18:52 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:18:52 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:18:52 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:18:53 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:18:53 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:18:53 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:18:53 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:18:53 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:18:53 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:18:53 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:18:54 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:18:54 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:18:54 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:18:54 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:18:54 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:18:54 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:18:54 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:18:55 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:18:55 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:18:55 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:18:55 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:18:55 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:18:55 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:18:56 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:18:56 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:18:56 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:18:56 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:18:56 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:18:56 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:18:57 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:18:57 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:18:57 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:18:57 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:18:57 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:18:57 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:18:57 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:18:58 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:18:58 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:18:58 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:18:58 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:18:58 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:18:58 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:18:58 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:18:59 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:18:59 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:18:59 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:18:59 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:18:59 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:18:59 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:19:00 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:19:00 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:19:00 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:19:00 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:19:00 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:19:00 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:19:00 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:19:01 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:19:01 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:19:01 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:19:01 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:19:01 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:19:01 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:19:01 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:19:02 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:19:02 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:19:02 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:19:02 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:19:02 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:19:02 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:19:03 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:19:03 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:19:03 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:19:03 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:19:03 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:19:03 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:19:03 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:19:04 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:19:04 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:19:04 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:19:04 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:19:04 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:19:04 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:19:04 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:19:05 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:19:05 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:19:05 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:19:05 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:19:05 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:19:05 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:19:05 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:19:06 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:19:06 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:19:06 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:19:06 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:19:06 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:19:06 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:19:07 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:19:07 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:19:07 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:19:07 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:19:07 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:19:07 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:19:07 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:19:08 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:19:08 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:19:08 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:19:08 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:19:08 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:19:08 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:19:08 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:19:09 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:19:09 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:19:09 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:19:09 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:19:09 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:19:09 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:19:09 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:19:10 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:19:10 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:19:10 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:19:10 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:19:10 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:19:10 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:19:10 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:19:11 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:19:11 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:19:11 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:19:11 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:19:11 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:19:11 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:19:11 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:19:12 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:19:12 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:19:12 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:19:12 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:19:12 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:19:12 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:19:12 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:19:13 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:19:13 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:19:13 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:19:13 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:19:13 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:19:13 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:19:14 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:19:14 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:19:14 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:19:14 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:19:14 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:19:14 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:19:14 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:19:15 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:19:15 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:19:15 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:19:15 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:19:15 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:19:15 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:19:15 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:19:16 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:19:16 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:19:16 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:19:16 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:19:16 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:19:16 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:19:16 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:19:17 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:19:17 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:19:17 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:19:17 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:19:17 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:19:17 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:19:17 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:19:18 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:19:18 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:19:18 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:19:18 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:19:18 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:19:18 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:19:19 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:19:19 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:19:19 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:19:19 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:19:19 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:19:19 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:19:19 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:19:20 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:19:20 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:19:20 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:19:20 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:19:20 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:19:20 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:19:20 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:19:21 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:19:21 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:19:21 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:19:21 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:19:21 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:19:21 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:19:21 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:19:22 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:19:22 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:19:22 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:19:22 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:19:22 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:19:22 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:19:22 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:19:23 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:19:23 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:19:23 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:19:23 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:19:23 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:19:23 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:19:24 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:19:24 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:19:24 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:19:24 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:19:24 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:19:24 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:19:24 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:19:25 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:19:25 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:19:25 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:19:25 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:19:25 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:19:25 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:19:25 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:19:26 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:19:26 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:19:26 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:19:26 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:19:26 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:19:26 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:19:26 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:19:27 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:19:27 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:19:27 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:19:27 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:19:27 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:19:27 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:19:28 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:19:28 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:19:28 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:19:28 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:19:28 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:19:28 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:19:28 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:19:29 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:19:29 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:19:29 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:19:29 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:19:29 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:19:29 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:19:29 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:19:30 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:19:30 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:19:30 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:19:30 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:19:30 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:19:30 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:19:30 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:19:31 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:19:31 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:19:31 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:19:31 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:19:31 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:19:31 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:19:32 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:19:32 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:19:32 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:19:32 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:19:32 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:19:32 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:19:32 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:19:33 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:19:33 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:19:33 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:19:33 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:19:33 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:19:33 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:19:33 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:19:34 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:19:34 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:19:34 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:19:34 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:19:34 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:19:34 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:19:34 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:19:35 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:19:35 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:19:35 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:19:35 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:19:35 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:19:35 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:19:36 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:19:36 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:19:36 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:19:36 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:19:36 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:19:36 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:19:36 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:19:37 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:19:37 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:19:37 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:19:37 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:19:37 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:19:37 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:19:37 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:19:38 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:19:38 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:19:38 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:19:38 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:19:38 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:19:38 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:19:38 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:19:39 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:19:39 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:19:39 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:19:39 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:19:39 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:19:39 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:19:39 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:19:40 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:19:40 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:19:40 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:19:40 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:19:40 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:19:40 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:19:41 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:19:41 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:19:41 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:19:41 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:19:41 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:19:41 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:19:41 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:19:42 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:19:42 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:19:42 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:19:42 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:19:42 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:19:42 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:19:42 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:19:43 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:19:43 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:19:43 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:19:43 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:19:43 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:19:43 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:19:44 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:19:44 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:19:44 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:19:44 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:19:44 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:19:44 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:19:44 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:19:45 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:19:45 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:19:45 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:19:45 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:19:45 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:19:45 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:19:45 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:19:46 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:19:46 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:19:46 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:19:46 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:19:46 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:19:46 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:19:46 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:19:47 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:19:47 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:19:47 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:19:47 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:19:47 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:19:47 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:19:48 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:19:48 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:19:48 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:19:48 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:19:48 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:19:48 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:19:48 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:19:49 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:19:49 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:19:49 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:19:49 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:19:49 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:19:49 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:19:49 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:19:50 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:19:50 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:19:50 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:19:50 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:19:50 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:19:50 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:19:50 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:19:51 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:19:51 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:19:51 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:19:51 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:19:51 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:19:51 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:19:52 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:19:52 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:19:52 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:19:52 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:19:52 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:19:52 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:19:52 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:19:53 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:19:53 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:19:53 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:19:53 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:19:53 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:19:53 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:19:53 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:19:54 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:19:54 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:19:54 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:19:54 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:19:54 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:19:54 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:19:55 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:19:55 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:19:55 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:19:55 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:19:55 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:19:55 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:19:55 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:19:56 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:19:56 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:19:56 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:19:56 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:19:56 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:19:56 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:19:56 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:19:57 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:19:57 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:19:57 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:19:57 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:19:57 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:19:57 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:19:57 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:19:58 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:19:58 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:19:58 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:19:58 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:19:58 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:19:58 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:19:59 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:19:59 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:19:59 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:19:59 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:19:59 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:19:59 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:19:59 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:20:00 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:20:00 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:20:00 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:20:00 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:20:00 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:20:00 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:20:00 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:20:01 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:20:01 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:20:01 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:20:01 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:20:01 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:20:01 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:20:01 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:20:02 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:20:02 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:20:02 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:20:02 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:20:02 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:20:02 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:20:03 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:20:03 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:20:03 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:20:03 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:20:03 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:20:03 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:20:03 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:20:04 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:20:04 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:20:04 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:20:04 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:20:04 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:20:04 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:20:04 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:20:05 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:20:05 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:20:05 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:20:05 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:20:05 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:20:05 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:20:06 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:20:06 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:20:06 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:20:06 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:20:06 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:20:06 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:20:06 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:20:07 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:20:07 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:20:07 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:20:07 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:20:07 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:20:07 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:20:07 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:20:08 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:20:08 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:20:08 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:20:08 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:20:08 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:20:08 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:20:09 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:20:09 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:20:09 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:20:09 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:20:09 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:20:09 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:20:09 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:20:10 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:20:10 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:20:10 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:20:10 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:20:10 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:20:10 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:20:10 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:20:11 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:20:11 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:20:11 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:20:11 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:20:11 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:20:11 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:20:12 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:20:12 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:20:12 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:20:12 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:20:12 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:20:12 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:20:12 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:20:13 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:20:13 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:20:13 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:20:13 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:20:13 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:20:13 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:20:13 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:20:14 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:20:14 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:20:14 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:20:14 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:20:14 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:20:14 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:20:15 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:20:15 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:20:15 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:20:15 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:20:15 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:20:15 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:20:15 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:20:16 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:20:16 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:20:16 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:20:16 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:20:16 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:20:16 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:20:16 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:20:17 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:20:17 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:20:17 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:20:17 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:20:17 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:20:17 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:20:18 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:20:18 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:20:18 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:20:18 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:20:18 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:20:18 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:20:18 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:20:19 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:20:19 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:20:19 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:20:19 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:20:19 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:20:19 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:20:19 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:20:20 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:20:20 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:20:20 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:20:20 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:20:20 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:20:20 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:20:21 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:20:21 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:20:21 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:20:21 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:20:22 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:20:22 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:20:22 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:20:22 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:20:22 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:20:22 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:20:23 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:20:23 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:20:23 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:20:23 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:20:23 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:20:23 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:20:24 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:20:24 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:20:24 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:20:24 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:20:24 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:20:24 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:20:25 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:20:25 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:20:25 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:20:25 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:20:25 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:20:25 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:20:25 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:20:26 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:20:26 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:20:26 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:20:26 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:20:26 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:20:26 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:20:27 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:20:27 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:20:27 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:20:27 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:20:27 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:20:27 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:20:27 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:20:28 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:20:28 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:20:28 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:20:28 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:20:28 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:20:28 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:20:28 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:20:29 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:20:29 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:20:29 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:20:29 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:20:29 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:20:29 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:20:30 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:20:30 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:20:30 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:20:30 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:20:30 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:20:30 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:20:30 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:20:31 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:20:31 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:20:31 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:20:31 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:20:31 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:20:31 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:20:31 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:20:32 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:20:32 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:20:32 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:20:32 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:20:32 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:20:32 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:20:33 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:20:33 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:20:33 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:20:33 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:20:33 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:20:33 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:20:33 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:20:34 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:20:34 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:20:34 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:20:34 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:20:34 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:20:34 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:20:35 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:20:35 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:20:35 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:20:35 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:20:35 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:20:35 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:20:35 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:20:36 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:20:36 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:20:36 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:20:36 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:20:36 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:20:36 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:20:36 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:20:37 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:20:37 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:20:37 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:20:37 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:20:37 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:20:37 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:20:38 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:20:38 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:20:38 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:20:38 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:20:38 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:20:38 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:20:38 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:20:39 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:20:39 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:20:39 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:20:39 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:20:39 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:20:39 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:20:39 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:20:40 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:20:40 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:20:40 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:20:40 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:20:40 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:20:40 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:20:41 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:20:41 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:20:41 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:20:41 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:20:41 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:20:41 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:20:41 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:20:42 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:20:42 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:20:42 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:20:42 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:20:42 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:20:42 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:20:42 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:20:43 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:20:43 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:20:43 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:20:43 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:20:43 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:20:43 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:20:44 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:20:44 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:20:44 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:20:44 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:20:44 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:20:44 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:20:44 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:20:45 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:20:45 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:20:45 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:20:45 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:20:45 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:20:45 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:20:45 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:20:46 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:20:46 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:20:46 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:20:46 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:20:46 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:20:46 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:20:47 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:20:47 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:20:47 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:20:47 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:20:47 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:20:47 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:20:47 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:20:48 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:20:48 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:20:48 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:20:48 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:20:48 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:20:48 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:20:48 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:20:49 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:20:49 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:20:49 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:20:49 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:20:49 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:20:49 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:20:50 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:20:50 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:20:50 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:20:50 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:20:50 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:20:50 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:20:50 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:20:51 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:20:51 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:20:51 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:20:51 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:20:51 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:20:51 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:20:51 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:20:52 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:20:52 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:20:52 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:20:52 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:20:52 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:20:52 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:20:53 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:20:53 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:20:53 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:20:53 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:20:53 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:20:53 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:20:53 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:20:54 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:20:54 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:20:54 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:20:54 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:20:54 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:20:54 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:20:55 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:20:55 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:20:55 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:20:55 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:20:55 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:20:55 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:20:55 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:20:56 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:20:56 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:20:56 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:20:56 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:20:56 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:20:56 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:20:56 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:20:57 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:20:57 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:20:57 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:20:57 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:20:57 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:20:57 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:20:58 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:20:58 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:20:58 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:20:58 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:20:58 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:20:58 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:20:58 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:20:59 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:20:59 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:20:59 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:20:59 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:20:59 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:20:59 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:21:00 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:21:00 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:21:00 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:21:00 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:21:00 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:21:00 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:21:00 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:21:01 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:21:01 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:21:01 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:21:01 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:21:01 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:21:01 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:21:02 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:21:02 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:21:02 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:21:02 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:21:02 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:21:02 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:21:02 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:21:03 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:21:03 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:21:03 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:21:03 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:21:03 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:21:03 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:21:03 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:21:04 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:21:04 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:21:04 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:21:04 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:21:04 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:21:04 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:21:05 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:21:05 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:21:05 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:21:05 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:21:05 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:21:05 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:21:05 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:21:06 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:21:06 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:21:06 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:21:06 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:21:06 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:21:06 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:21:07 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:21:07 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:21:07 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:21:07 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:21:07 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:21:07 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:21:07 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:21:08 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:21:08 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:21:08 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:21:08 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:21:08 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:21:08 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:21:09 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:21:09 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:21:09 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:21:09 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:21:09 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:21:09 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:21:09 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:21:10 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:21:10 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:21:10 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:21:10 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:21:10 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:21:10 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:21:11 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:21:11 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:21:11 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:21:11 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:21:11 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:21:12 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:21:12 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:21:12 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:21:12 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:21:12 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:21:13 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:21:13 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:21:13 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:21:13 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:21:13 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:21:13 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:21:14 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:21:14 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:21:14 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:21:14 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:21:14 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:21:14 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:21:14 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:21:15 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:21:15 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:21:15 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:21:15 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:21:15 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:21:15 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:21:15 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:21:16 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:21:16 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:21:16 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:21:16 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:21:16 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:21:16 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:21:17 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:21:17 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:21:17 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:21:17 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:21:17 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:21:17 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:21:17 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:21:18 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:21:18 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:21:18 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:21:18 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:21:18 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:21:18 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:21:19 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:21:19 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:21:19 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:21:19 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:21:19 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:21:19 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:21:19 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:21:20 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:21:20 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:21:20 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:21:20 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:21:20 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:21:20 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:21:21 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:21:21 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:21:21 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:21:21 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:21:21 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:21:21 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:21:21 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:21:22 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:21:22 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:21:22 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:21:22 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:21:22 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:21:22 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:21:23 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:21:23 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:21:23 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:21:23 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:21:23 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:21:23 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:21:23 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:21:24 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:21:24 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:21:24 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:21:24 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:21:24 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:21:24 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:21:25 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:21:25 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:21:25 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:21:25 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:21:25 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:21:25 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:21:25 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:21:26 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:21:26 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:21:26 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:21:26 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:21:26 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:21:26 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:21:26 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:21:27 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:21:27 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:21:27 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:21:27 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:21:27 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:21:27 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:21:28 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:21:28 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:21:28 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:21:28 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:21:28 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:21:28 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:21:28 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:21:29 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:21:29 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:21:29 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:21:29 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:21:29 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:21:29 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:21:30 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:21:30 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:21:30 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:21:30 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:21:30 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:21:30 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:21:30 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:21:31 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:21:31 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:21:31 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:21:31 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:21:31 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:21:31 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:21:32 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:21:32 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:21:32 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:21:32 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:21:32 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:21:32 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:21:32 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:21:33 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:21:33 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:21:33 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:21:33 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:21:33 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:21:33 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:21:34 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:21:34 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:21:34 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:21:34 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:21:34 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:21:34 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:21:34 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:21:35 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:21:35 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:21:35 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:21:35 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:21:35 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:21:35 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:21:36 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:21:36 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:21:36 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:21:36 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:21:36 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:21:36 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:21:36 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:21:37 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:21:37 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:21:37 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:21:37 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:21:37 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:21:37 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:21:38 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:21:38 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:21:38 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:21:38 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:21:38 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:21:38 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:21:38 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:21:39 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:21:39 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:21:39 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:21:39 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:21:39 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:21:39 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:21:40 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:21:40 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:21:40 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:21:40 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:21:40 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:21:40 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:21:40 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:21:41 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:21:41 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:21:41 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:21:41 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:21:41 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:21:41 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:21:42 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:21:42 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:21:42 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:21:42 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:21:42 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:21:42 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:21:42 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:21:43 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:21:43 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:21:43 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:21:43 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:21:43 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:21:43 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:21:43 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:21:44 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:21:44 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:21:44 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:21:44 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:21:44 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:21:44 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:21:45 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:21:45 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:21:45 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:21:45 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:21:45 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:21:46 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:21:46 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:21:46 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:21:46 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:21:46 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:21:46 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:21:47 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:21:47 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:21:47 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:21:47 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:21:47 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:21:47 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:21:48 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:21:48 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:21:48 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:21:48 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:21:48 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:21:48 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:21:49 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:21:49 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:21:49 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:21:49 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:21:49 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:21:49 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:21:49 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:21:50 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:21:50 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:21:50 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:21:50 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:21:50 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:21:50 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:21:51 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:21:51 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:21:51 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:21:51 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:21:51 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:21:51 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:21:52 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:21:52 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:21:52 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:21:52 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:21:52 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:21:52 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:21:53 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:21:53 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:21:53 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:21:53 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:21:53 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:21:53 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:21:53 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:21:54 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:21:54 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:21:54 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:21:54 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:21:54 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:21:54 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:21:55 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:21:55 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:21:55 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:21:55 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:21:55 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:21:55 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:21:56 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:21:56 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:21:56 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:21:56 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:21:56 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:21:56 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:21:57 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:21:57 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:21:57 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:21:57 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:21:57 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:21:57 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:21:57 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:21:58 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:21:58 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:21:58 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:21:58 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:21:58 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:21:58 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:21:59 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:21:59 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:21:59 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:21:59 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:21:59 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:21:59 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:21:59 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:22:00 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:22:00 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:22:00 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:22:00 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:22:00 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:22:00 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:22:01 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:22:01 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:22:01 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:22:01 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:22:01 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:22:01 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:22:01 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:22:02 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:22:02 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:22:02 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:22:02 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:22:02 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:22:02 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:22:03 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:22:03 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:22:03 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:22:03 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:22:03 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:22:03 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:22:04 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:22:04 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:22:04 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:22:04 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:22:04 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:22:04 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:22:04 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:22:05 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:22:05 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:22:05 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:22:05 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:22:05 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:22:05 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:22:06 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:22:06 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:22:06 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:22:06 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:22:07 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:22:07 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:22:07 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:22:07 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:22:07 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:22:08 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:22:08 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:22:08 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:22:08 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:22:08 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:22:08 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:22:09 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:22:09 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:22:09 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:22:09 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:22:10 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:22:10 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:22:10 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:22:10 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:22:11 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:22:11 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:22:11 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:22:11 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:22:11 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:22:12 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:22:12 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:22:12 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:22:12 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:22:12 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:22:13 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:22:13 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:22:13 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:22:13 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:22:13 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:22:13 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:22:14 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:22:14 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:22:14 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:22:14 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:22:14 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:22:14 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:22:15 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:22:15 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:22:15 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:22:15 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:22:16 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:22:16 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:22:16 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:22:16 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:22:16 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:22:17 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:22:17 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:22:17 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:22:17 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:22:17 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:22:18 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:22:18 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:22:18 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:22:18 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:22:18 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:22:19 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:22:19 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:22:19 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:22:19 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:22:19 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:22:20 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:22:20 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:22:20 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:22:20 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:22:20 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:22:20 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:22:21 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:22:21 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:22:21 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:22:21 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:22:21 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:22:21 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:22:21 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:22:22 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:22:22 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:22:22 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:22:22 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:22:22 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:22:22 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:22:22 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:22:23 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:22:23 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:22:23 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:22:23 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:22:23 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:22:23 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:22:23 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:22:24 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:22:24 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:22:24 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:22:24 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:22:24 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:22:25 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:22:25 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:22:25 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:22:25 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:22:25 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:22:26 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:22:26 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:22:26 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:22:26 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:22:26 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:22:27 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:22:27 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:22:27 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:22:27 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:22:27 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:22:28 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:22:28 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:22:28 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:22:28 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:22:28 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:22:29 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:22:29 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:22:29 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:22:29 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:22:29 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:22:30 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:22:30 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:22:30 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:22:30 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:22:30 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:22:31 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:22:31 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:22:31 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:22:31 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:22:32 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:22:32 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:22:32 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:22:32 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:22:32 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:22:33 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:22:33 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:22:33 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:22:34 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:22:34 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:22:34 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:22:34 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:22:35 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:22:35 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:22:35 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:22:35 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:22:35 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:22:35 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:22:36 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:22:36 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:22:36 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:22:36 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:22:36 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:22:37 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:22:37 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:22:37 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:22:37 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:22:37 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:22:38 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:22:38 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:22:38 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:22:38 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:22:38 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:22:39 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:22:39 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:22:39 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:22:39 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:22:39 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:22:40 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:22:40 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:22:40 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:22:40 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:22:40 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:22:41 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:22:41 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:22:41 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:22:41 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:22:42 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:22:42 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:22:42 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:22:42 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:22:42 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:22:43 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:22:43 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:22:43 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:22:43 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:22:43 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:22:44 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:22:44 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:29:14 --> Severity: Notice --> Undefined variable: financialyear C:\xampp\htdocs\ria\application\views\bankinvoice.php 2
+ERROR - 2019-01-10 08:29:14 --> Severity: Warning --> Invalid argument supplied for foreach() C:\xampp\htdocs\ria\application\views\bankinvoice.php 2
+ERROR - 2019-01-10 08:29:14 --> Severity: Notice --> Undefined variable: cash C:\xampp\htdocs\ria\application\views\bankinvoice.php 80
+ERROR - 2019-01-10 08:29:15 --> Severity: Notice --> Undefined variable: bankid C:\xampp\htdocs\ria\application\views\bankinvoice.php 82
+ERROR - 2019-01-10 08:29:15 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:29:15 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:29:15 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:29:15 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:29:15 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:29:16 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:29:16 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:29:16 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:29:16 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:29:16 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:29:16 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:29:16 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:29:17 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:29:17 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:29:17 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:29:17 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:29:17 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:29:17 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:29:18 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:29:18 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:29:18 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:29:18 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:29:18 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:29:18 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:29:19 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:29:19 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:29:19 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:29:19 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:29:19 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:29:19 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:29:20 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:29:20 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:29:20 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:29:20 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:29:20 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:29:20 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:29:20 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:29:21 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:29:21 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:29:21 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:29:21 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:29:21 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:29:21 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:29:22 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:29:22 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:29:22 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:29:22 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:29:22 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:29:22 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:29:23 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:29:23 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:29:23 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:29:23 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:29:23 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:29:23 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:29:23 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:29:24 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:29:24 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:29:24 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:29:24 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:29:24 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:29:24 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:29:25 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:29:25 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:29:25 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:29:25 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:29:25 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:29:25 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:29:26 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:29:26 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:29:26 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:29:26 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:29:26 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:29:26 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:29:26 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:29:27 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:29:27 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:29:27 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:29:27 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:29:27 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:29:27 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:29:28 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:29:28 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:29:28 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:29:28 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:29:28 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:29:28 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:29:29 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:29:29 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:29:29 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:29:29 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:29:29 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:29:29 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:29:29 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:29:30 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:29:30 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:29:30 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:29:30 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:29:30 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:29:30 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:29:31 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:29:31 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:29:31 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:29:31 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:29:31 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:29:31 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:29:32 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:29:32 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:29:32 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:29:32 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:29:32 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:29:32 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:29:33 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:29:33 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:29:33 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:29:33 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:29:33 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:29:33 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:29:33 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:29:34 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:29:34 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:29:34 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:29:34 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:29:34 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:29:34 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:29:35 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:29:35 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:29:35 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:29:35 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:29:35 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:29:35 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:29:36 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:29:36 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:29:36 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:29:36 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:29:36 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:29:36 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:29:36 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:29:37 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:29:37 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:29:37 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:29:37 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:29:37 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:29:37 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:29:38 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:29:38 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:29:38 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:29:38 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:29:38 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:29:38 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:29:39 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:29:39 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:29:39 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:29:39 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:29:39 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:29:39 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:29:40 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:29:40 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:29:40 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:29:40 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:29:40 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:29:40 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:29:40 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:29:41 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:29:41 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:29:41 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:29:41 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:29:41 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:29:41 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:29:42 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:29:42 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:29:42 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:29:42 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:29:42 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:29:42 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:29:43 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:29:43 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:29:43 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:29:43 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:29:43 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:29:43 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:29:43 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:29:44 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:29:44 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:29:44 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:29:44 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:29:44 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:29:44 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:29:45 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:29:45 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:29:45 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:29:45 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:29:45 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:29:45 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:29:46 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:29:46 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:29:46 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:29:46 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:29:46 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:29:46 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:29:47 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:29:47 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:29:47 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:29:47 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:29:47 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:29:47 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:29:47 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:29:48 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:29:48 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:29:48 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:29:48 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:29:48 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:29:48 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:29:49 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:29:49 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:29:49 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:29:49 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:29:49 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:29:49 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:29:50 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:29:50 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:29:50 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:29:50 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:29:50 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:29:50 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:29:50 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:29:51 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:29:51 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:29:51 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:29:51 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:29:51 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:29:51 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:29:52 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:29:52 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:29:52 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:29:52 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:29:52 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:29:52 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:29:53 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:29:53 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:29:53 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:29:53 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:29:53 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:29:53 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:29:54 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:29:54 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:29:54 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:29:54 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:29:54 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:29:54 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:29:54 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:29:55 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:29:55 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:29:55 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:29:55 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:29:55 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:29:55 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:29:56 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:29:56 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:29:56 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:29:56 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:29:56 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:29:56 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:29:57 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:29:57 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:29:57 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:29:57 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:29:57 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:29:57 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:29:58 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:29:58 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:29:58 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:29:58 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:29:58 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:29:58 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:29:58 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:29:59 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:29:59 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:29:59 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:29:59 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:29:59 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:29:59 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:30:00 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:30:00 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:30:00 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:30:00 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:30:00 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:30:00 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:30:01 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:30:01 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:30:01 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:30:01 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:30:01 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:30:01 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:30:02 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:30:02 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:30:02 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:30:02 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:30:02 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:30:02 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:30:02 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:30:03 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:30:03 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:30:03 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:30:03 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:30:03 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:30:03 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:30:04 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:30:04 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:30:04 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:30:04 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:30:04 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:30:04 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:30:05 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:30:05 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:30:05 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:30:05 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:30:05 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:30:05 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:30:06 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:30:06 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:30:06 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:30:06 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:30:06 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:30:06 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:30:06 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:30:07 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:30:07 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:30:07 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:30:07 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:30:07 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:30:07 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:30:08 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:30:08 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:30:08 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:30:08 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:30:08 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:30:08 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:30:09 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:30:09 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:30:09 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:30:09 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:30:09 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:30:09 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:30:10 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:30:10 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:30:10 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:30:10 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:30:10 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:30:10 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:30:11 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:30:11 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:30:11 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:30:11 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:30:11 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:30:11 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:30:11 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:30:12 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:30:12 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:30:12 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:30:12 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:30:12 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:30:12 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:30:13 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:30:13 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:30:13 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:30:13 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:30:13 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:30:13 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:30:14 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:30:14 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:30:14 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:30:14 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:30:14 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:30:14 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:30:15 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:30:15 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:30:15 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:30:15 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:30:15 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:30:15 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:30:15 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:30:16 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:30:16 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:30:16 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:30:16 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:30:16 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:30:16 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:30:17 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:30:17 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:30:17 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:30:17 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:30:17 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:30:17 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:30:18 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:30:18 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:30:18 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:30:18 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:30:18 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:30:18 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:30:19 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:30:19 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:30:19 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:30:19 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:30:19 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:30:19 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:30:20 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:30:20 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:30:20 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:30:20 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:30:20 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:30:20 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:30:21 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:30:21 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:30:21 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:30:21 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:30:21 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:30:21 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:30:21 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:30:22 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:30:22 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:30:22 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:30:22 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:30:22 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:30:22 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:30:23 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:30:23 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:30:23 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:30:23 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:30:23 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:30:23 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:30:24 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:30:24 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:30:24 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:30:24 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:30:24 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:30:24 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:30:25 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:30:25 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:30:25 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:30:25 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:30:25 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:30:25 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:30:26 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:30:26 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:30:26 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:30:26 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:30:26 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:30:26 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:30:27 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:30:27 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:30:27 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:30:27 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:30:27 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:30:27 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:30:28 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:30:28 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:30:28 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:30:28 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:30:28 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:30:28 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:30:28 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:30:29 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:30:29 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:30:29 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:30:29 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:30:29 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:30:29 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:30:30 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:30:30 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:30:30 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:30:30 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:30:30 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:30:30 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:30:31 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:30:31 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:30:31 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:30:31 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:30:31 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:30:31 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:30:32 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:30:32 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:30:32 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:30:32 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:30:32 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:30:32 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:30:32 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:30:33 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:30:33 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:30:33 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:30:33 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:30:33 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:30:33 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:30:34 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:30:34 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:30:34 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:30:34 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:30:34 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:30:34 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:30:35 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:30:35 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:30:35 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:30:35 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:30:35 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:30:35 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:30:36 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:30:36 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:30:36 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:30:36 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:30:36 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:30:36 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:30:37 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:30:37 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:30:37 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:30:37 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:30:37 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:30:37 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:30:38 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:30:38 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:30:38 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:30:38 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:30:38 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:30:38 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:30:39 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:30:39 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:30:39 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:30:39 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:30:39 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:30:39 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:30:39 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:30:40 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:30:40 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:30:40 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:30:40 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:30:40 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:30:40 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:30:41 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:30:41 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:30:41 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:30:41 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:30:41 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:30:41 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:30:42 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:30:42 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:30:42 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:30:42 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:30:42 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:30:42 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:30:43 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:30:43 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:30:43 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:30:43 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:30:43 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:30:43 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:30:44 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:30:44 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:30:44 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:30:44 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:30:44 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:30:44 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:30:44 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:30:45 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:30:45 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:30:45 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:30:45 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:30:45 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:30:45 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:30:46 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:30:46 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:30:46 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:30:46 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:30:46 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:30:46 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:30:47 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:30:47 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:30:47 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:30:47 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:30:47 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:30:47 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:30:48 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:30:48 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:30:48 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:30:48 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:30:48 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:30:48 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:30:49 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:30:49 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:30:49 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:30:49 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:30:49 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:30:49 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:30:50 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:30:50 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:30:50 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:30:50 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:30:50 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:30:50 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:30:51 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:30:51 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:30:51 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:30:51 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:30:51 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:30:51 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:30:51 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:30:52 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:30:52 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:30:52 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:30:52 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:30:52 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:30:52 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:30:53 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:30:53 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:30:53 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:30:53 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:30:53 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:30:54 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:30:54 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:30:54 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:30:54 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:30:54 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:30:54 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:30:55 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:30:55 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:30:55 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:30:55 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:30:55 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:30:55 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:30:56 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:30:56 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:30:56 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:30:56 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:30:56 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:30:56 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:30:57 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:30:57 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:30:57 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:30:57 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:30:57 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:30:57 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:30:58 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:30:58 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:30:58 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:30:58 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:30:58 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:30:58 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:30:59 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:30:59 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:30:59 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:30:59 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:30:59 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:30:59 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:31:00 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:31:00 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:31:00 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:31:00 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:31:00 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:31:00 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:31:01 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:31:01 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:31:01 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:31:01 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:31:01 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:31:01 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:31:02 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:31:02 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:31:02 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:31:02 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:31:02 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:31:02 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:31:03 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:31:03 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:31:03 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:31:03 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:31:03 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:31:03 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:31:03 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:31:04 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:31:04 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:31:04 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:31:04 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:31:04 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:31:04 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:31:05 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:31:05 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:31:05 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:31:05 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:31:05 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:31:05 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:31:06 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:31:06 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:31:06 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:31:06 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:31:06 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:31:06 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:31:07 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:31:07 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:31:07 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:31:07 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:31:07 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:31:07 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:31:08 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:31:08 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:31:08 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:31:08 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:31:08 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:31:08 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:31:09 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:31:09 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:31:09 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:31:09 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:31:09 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:31:09 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:31:10 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:31:10 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:31:10 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:31:10 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:31:10 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:31:10 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:31:11 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:31:11 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:31:11 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:31:11 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:31:11 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:31:11 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:31:12 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:31:12 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:31:12 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:31:12 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:31:12 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:31:12 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:31:13 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:31:13 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:31:13 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:31:13 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:31:13 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:31:13 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:31:14 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:31:14 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:31:14 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:31:14 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:31:14 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:31:14 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:31:15 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:31:15 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:31:15 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:31:15 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:31:15 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:31:15 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:31:16 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:31:16 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:31:16 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:31:16 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:31:16 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:31:16 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:31:17 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:31:17 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:31:17 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:31:17 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:31:17 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:31:17 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:31:18 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:31:18 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:31:18 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:31:18 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:31:18 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:31:18 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:31:19 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:31:19 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:31:19 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:31:19 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:31:19 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:31:19 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:31:20 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:31:20 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:31:20 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:31:20 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:31:20 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:31:20 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:31:21 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:31:21 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:31:21 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:31:21 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:31:21 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:31:21 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:31:22 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:31:22 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:31:22 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:31:22 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:31:22 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:31:22 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:31:22 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:31:23 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:31:23 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:31:23 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:31:23 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:31:23 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:31:23 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:31:24 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:31:24 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:31:24 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:31:24 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:31:24 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:31:24 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:31:25 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:31:25 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:31:25 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:31:25 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:31:25 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:31:25 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:31:26 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:31:26 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:31:26 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:31:26 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:31:26 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:31:26 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:31:27 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:31:27 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:31:27 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:31:27 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:31:27 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:31:27 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:31:28 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:31:28 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:31:28 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:31:28 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:31:28 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:31:28 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:31:29 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:31:29 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:31:29 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:31:29 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:31:29 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:31:29 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:31:30 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:31:30 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:31:30 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:31:30 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:31:30 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:31:30 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:31:31 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:31:31 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:31:31 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:31:31 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:31:31 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:31:31 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:31:32 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:31:32 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:31:32 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:31:32 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:31:32 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:31:32 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:31:33 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:31:33 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:31:33 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:31:33 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:31:33 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:31:33 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:31:34 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:31:34 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:31:34 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:31:34 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:31:34 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:31:34 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:31:35 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:31:35 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:31:35 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:31:35 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:31:35 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:31:35 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:31:36 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:31:36 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:31:36 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:31:36 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:31:36 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:31:36 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:31:37 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:31:37 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:31:37 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:31:37 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:31:37 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:31:37 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:31:38 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:31:38 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:31:38 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:31:38 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:31:38 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:31:38 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:31:39 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:31:39 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:31:39 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:31:39 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:31:39 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:31:39 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:31:40 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:31:40 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:31:40 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:31:40 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:31:40 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:31:40 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:31:41 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:31:41 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:31:41 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:31:41 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:31:41 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:31:41 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:31:42 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:31:42 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:31:42 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:31:42 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:31:42 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:31:42 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:31:43 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:31:43 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:31:43 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:31:43 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:31:43 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:31:43 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:31:44 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:31:44 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:31:44 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:31:44 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:31:44 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:31:44 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:31:45 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:31:45 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:31:45 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:31:45 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:31:45 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:31:45 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:31:45 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:31:46 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:31:46 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:31:46 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:31:46 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:31:46 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:31:46 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:31:47 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:31:47 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:31:47 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:31:47 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:31:47 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:31:47 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:31:48 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:31:48 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:31:48 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:31:48 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:31:48 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:31:48 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:31:49 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:31:49 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:31:49 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:31:49 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:31:49 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:31:49 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:31:50 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:31:50 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:31:50 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:31:50 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:31:50 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:31:50 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:31:51 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:31:51 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:31:51 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:31:51 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:31:51 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:31:51 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:31:52 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:31:52 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:31:52 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:31:52 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:31:52 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:31:52 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:31:53 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:31:53 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:31:53 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:31:53 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:31:53 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:31:53 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:31:54 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:31:54 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:31:54 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:31:54 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:31:54 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:31:54 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:31:55 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:31:55 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:31:55 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:31:55 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:31:55 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:31:55 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:31:56 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:31:56 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:31:56 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:31:56 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:31:56 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:31:56 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:31:57 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:31:57 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:31:57 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:31:57 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:31:57 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:31:57 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:31:58 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:31:58 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:31:58 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:31:58 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:31:58 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:31:58 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:31:59 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:31:59 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:31:59 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:31:59 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:31:59 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:31:59 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:32:00 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:32:00 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:32:00 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:32:00 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:32:00 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:32:00 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:32:01 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:32:01 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:32:01 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:32:01 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:32:01 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:32:01 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:32:02 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:32:02 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:32:02 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:32:02 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:32:02 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:32:02 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:32:03 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:32:03 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:32:03 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:32:03 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:32:03 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:32:03 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:32:04 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:32:04 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:32:04 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:32:04 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:32:04 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:32:04 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:32:05 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:32:05 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:32:05 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:32:05 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:32:05 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:32:05 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:32:06 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:32:06 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:32:06 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:32:06 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:32:06 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:32:06 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:32:07 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:32:07 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:32:07 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:32:07 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:32:07 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:32:07 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:32:08 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:32:08 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:32:08 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:32:08 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:32:08 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:32:09 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:32:09 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:32:09 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:32:09 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:32:09 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:32:09 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:32:10 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:32:10 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:32:10 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:32:10 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:32:10 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:32:10 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:32:11 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:32:11 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:32:11 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:32:11 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:32:11 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:32:11 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:32:12 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:32:12 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:32:12 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:32:12 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:32:12 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:32:12 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:32:13 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:32:13 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:32:13 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:32:13 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:32:13 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:32:13 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:32:14 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:32:14 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:32:14 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:32:14 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:32:14 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:32:14 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:32:15 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:32:15 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:32:15 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:32:15 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:32:15 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:32:15 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:32:16 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:32:16 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:32:16 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:32:16 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:32:16 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:32:16 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:32:17 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:32:17 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:32:17 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:32:17 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:32:17 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:32:17 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:32:18 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:32:18 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:32:18 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:32:18 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:32:18 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:32:18 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:32:19 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:32:19 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:32:19 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:32:19 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:32:19 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:32:19 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:32:20 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:32:20 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:32:20 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:32:20 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:32:20 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:32:20 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:32:21 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:32:21 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:32:21 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:32:21 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:32:21 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:32:21 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:32:22 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:32:22 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:32:22 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:32:22 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:32:22 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:32:22 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:32:23 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:32:23 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:32:23 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:32:23 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:32:23 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:32:23 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:32:24 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:32:24 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:32:24 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:32:24 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:32:24 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:32:24 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:32:25 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:32:25 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:32:25 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:32:25 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:32:25 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:32:25 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:32:26 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:32:26 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:32:26 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:32:26 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:32:26 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:32:26 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:32:27 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:32:27 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:32:27 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:32:27 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:32:27 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:32:28 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:32:28 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:32:28 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:32:28 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:32:28 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:32:28 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:32:29 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:32:29 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:32:29 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:32:29 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:32:29 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:32:29 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:32:30 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:32:30 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:32:30 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:32:30 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:32:30 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:32:30 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:32:31 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:32:31 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:32:31 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:32:31 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:32:31 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:32:31 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:32:32 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:32:32 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:32:32 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:32:32 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:32:32 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:32:32 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:32:33 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:32:33 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:32:33 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:32:33 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:32:33 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:32:33 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:32:34 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:32:34 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:32:34 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:32:34 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:32:34 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:32:34 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:32:35 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:32:35 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:32:35 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:32:35 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:32:35 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:32:35 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:32:36 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:32:36 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:32:36 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:32:36 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:32:36 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:32:36 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:32:37 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:32:37 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:32:37 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:32:37 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:32:37 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:32:37 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:32:38 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:32:38 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:32:38 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:32:38 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:32:38 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:32:38 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:32:39 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:32:39 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:32:39 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:32:39 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:32:39 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:32:39 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:32:40 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:32:40 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:32:40 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:32:40 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:32:40 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:32:40 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:32:41 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:32:41 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:32:41 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:32:41 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:32:41 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:32:41 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:32:42 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:32:42 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:32:42 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:32:42 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:32:42 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:32:42 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:32:43 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:32:43 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:32:43 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:32:43 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:32:43 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:32:44 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:32:44 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:32:44 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:32:44 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:32:44 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:32:44 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:32:45 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:32:45 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:32:45 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:32:45 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:32:45 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:32:45 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:32:46 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:32:46 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:32:46 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:32:46 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:32:46 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:32:46 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:32:47 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:32:47 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:32:47 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:32:47 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:32:47 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:32:48 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:32:48 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:32:48 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:32:48 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:32:48 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:32:48 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:32:49 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:32:49 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:32:49 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:32:49 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:32:49 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:32:50 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:32:50 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:32:50 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:32:50 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:32:50 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:32:50 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:32:51 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:32:51 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:32:51 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:32:51 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:32:51 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:32:51 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:32:52 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:32:52 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:32:52 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:32:52 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:32:52 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:32:52 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:32:53 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:32:53 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:32:53 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:32:53 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:32:53 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:32:54 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:32:54 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:32:54 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:32:54 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:32:54 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:32:54 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:32:55 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:32:55 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:32:55 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:32:55 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:32:55 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:32:55 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:32:56 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:32:56 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:32:56 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:32:56 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:32:56 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:32:56 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:32:57 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:32:57 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:32:57 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:32:57 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:32:57 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:32:57 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:32:58 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:32:58 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:32:58 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:32:58 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:32:58 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:32:58 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:32:59 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:32:59 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:32:59 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:32:59 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:32:59 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:32:59 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:33:00 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:33:00 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:33:00 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:33:00 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:33:00 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:33:01 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:33:01 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:33:01 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:33:01 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:33:01 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:33:01 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:33:02 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:33:02 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:33:02 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:33:02 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:33:02 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:33:02 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:33:03 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:33:03 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:33:03 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:33:03 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:33:03 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:33:03 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:33:04 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:33:04 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:33:04 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:33:04 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:33:04 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:33:04 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:33:05 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:33:05 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:33:05 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:33:05 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:33:05 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:33:06 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:33:06 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:33:06 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:33:06 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:33:06 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:33:06 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:33:07 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:33:07 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:33:07 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:33:07 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:33:07 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:33:07 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:33:08 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:33:08 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:33:08 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:33:08 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:33:08 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:33:08 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:33:09 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:33:09 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:33:09 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:33:09 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:33:09 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:33:10 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:33:10 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:33:10 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:33:10 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:33:10 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:33:10 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:33:11 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:33:11 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:33:11 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:33:11 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:33:11 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:33:11 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:33:12 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:33:12 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:33:12 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:33:12 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:33:12 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:33:12 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:33:13 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:33:13 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:33:13 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:33:13 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:33:13 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:33:13 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:33:14 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:33:14 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:33:14 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:33:14 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:33:14 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:33:15 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:33:15 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:33:15 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:33:15 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:33:15 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:33:15 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:33:16 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:33:16 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:33:16 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:33:16 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:33:16 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:33:16 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:33:17 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:33:17 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:33:17 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:33:17 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:33:17 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:33:17 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:33:18 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:33:18 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:33:18 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:33:18 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:33:18 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:33:18 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:33:19 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:33:19 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:33:19 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:33:19 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:33:19 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:33:20 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:33:20 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:33:20 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:33:20 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:33:20 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:33:20 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:33:21 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:33:21 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:33:21 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:33:21 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:33:21 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:33:21 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:33:22 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:33:22 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:33:22 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:33:22 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:33:22 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:33:22 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:33:23 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:33:23 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:33:23 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:33:23 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:33:23 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:33:23 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:33:24 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:33:24 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:33:24 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:33:24 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:33:24 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:33:25 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:33:25 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:33:25 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:33:25 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:33:25 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:33:25 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:33:26 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:33:26 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:33:26 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:33:26 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:33:26 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:33:27 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:33:27 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:33:27 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:33:27 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:33:27 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:33:27 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:33:28 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:33:28 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:33:28 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:33:28 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:33:28 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:33:29 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:33:29 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:33:29 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:33:29 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:33:29 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:33:30 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:33:30 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:33:30 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:33:30 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:33:30 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:33:31 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:33:31 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:33:31 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:33:31 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:33:31 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:33:31 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:33:32 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:33:32 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:33:32 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:33:32 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:33:32 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:33:33 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:33:33 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:33:33 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:33:33 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:33:33 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:33:33 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:33:34 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:33:34 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:33:34 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:33:34 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:33:34 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:33:34 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:33:35 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:33:35 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:33:35 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:33:35 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:33:35 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:33:35 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:33:36 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:33:36 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:33:36 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:33:36 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:33:36 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:33:36 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:33:37 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:33:37 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:33:37 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:33:37 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:33:37 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:33:38 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:33:38 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:33:38 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:33:38 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:33:38 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:33:38 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:33:39 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:33:39 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:33:39 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:33:39 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:33:39 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:33:39 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:33:40 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:33:40 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:33:40 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:33:40 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:33:40 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:33:40 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:33:41 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:33:41 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:33:41 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:33:41 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:33:41 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:33:41 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:33:42 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:33:42 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:33:42 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:33:42 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:33:42 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:33:43 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:33:43 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:33:43 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:33:43 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:33:43 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:33:43 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:33:44 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:33:44 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:33:44 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:33:44 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:33:44 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:33:44 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:33:45 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:33:45 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:33:45 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:33:45 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:33:45 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:33:45 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:33:46 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:33:46 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:33:46 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:33:46 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:33:46 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:33:46 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:33:47 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:33:47 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:33:47 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:33:47 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:33:47 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:33:48 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:33:48 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:33:48 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:33:48 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:33:48 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:33:48 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:33:49 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:33:49 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:33:49 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:33:49 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:33:49 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:33:49 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:33:50 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:33:50 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:33:50 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:33:50 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:33:50 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:33:50 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:33:51 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:33:51 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:33:51 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:33:51 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:33:51 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:33:52 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:33:52 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:33:52 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:33:52 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:33:52 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:33:52 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:33:53 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:33:53 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:33:53 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:33:53 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:33:53 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:33:53 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:33:54 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:33:54 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:33:54 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:33:54 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:33:54 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:33:54 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:33:55 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:33:55 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:33:55 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:33:55 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:33:55 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:33:55 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:33:56 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:33:56 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:33:56 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:33:56 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:33:56 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:33:57 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:33:57 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:33:57 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:33:57 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:33:57 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:33:57 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:33:58 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:33:58 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:33:58 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:33:58 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:33:58 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:33:58 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:33:59 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:33:59 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:33:59 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:33:59 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:33:59 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:33:59 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:34:00 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:34:00 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:34:00 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:34:00 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:34:01 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:34:01 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:34:01 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:34:01 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:34:01 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:34:02 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:34:02 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:34:02 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:34:02 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:34:02 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:34:02 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:34:03 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:34:03 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:34:03 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:34:03 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:34:03 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:34:03 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:34:04 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:34:04 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:34:04 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:34:04 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:34:04 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:34:04 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:34:05 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:34:05 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:34:05 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:34:05 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:34:05 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:34:06 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:34:06 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:34:06 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:34:06 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:34:06 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:34:06 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:34:07 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:34:07 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:34:07 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:34:07 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:34:07 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:34:07 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:34:08 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:34:08 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:34:08 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:34:08 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:34:08 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:34:08 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:34:09 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:34:09 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:34:09 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:34:09 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:34:09 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:34:10 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:34:10 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:34:10 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:34:10 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:34:10 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:34:10 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:34:11 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:34:11 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:34:11 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:34:11 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:34:11 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:34:12 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:34:12 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:34:12 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:34:12 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:34:12 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:34:13 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:34:13 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:42:23 --> Severity: Notice --> Undefined variable: financialyear C:\xampp\htdocs\ria\application\views\bankinvoice.php 2
+ERROR - 2019-01-10 08:42:24 --> Severity: Warning --> Invalid argument supplied for foreach() C:\xampp\htdocs\ria\application\views\bankinvoice.php 2
+ERROR - 2019-01-10 08:42:24 --> Severity: Notice --> Undefined variable: cash C:\xampp\htdocs\ria\application\views\bankinvoice.php 80
+ERROR - 2019-01-10 08:42:24 --> Severity: Notice --> Undefined variable: bankid C:\xampp\htdocs\ria\application\views\bankinvoice.php 82
+ERROR - 2019-01-10 08:42:24 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:42:24 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:42:24 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:42:25 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:42:25 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:42:25 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:42:25 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:42:25 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:42:25 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:42:26 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:42:26 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:42:26 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:42:26 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:42:26 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:42:27 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:42:27 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:42:27 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:42:27 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:42:27 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:42:27 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:42:28 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:42:28 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:42:28 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:42:28 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:42:28 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:42:28 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:42:29 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:42:29 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:42:29 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:42:29 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:42:29 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:42:29 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:42:30 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:42:30 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:42:30 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:42:30 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:42:30 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:42:31 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:42:31 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:42:31 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:42:31 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:42:31 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:42:31 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:42:32 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:42:32 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:42:32 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:42:32 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:42:32 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:42:32 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:42:33 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:42:33 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:42:33 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:42:33 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:42:33 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:42:33 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:42:34 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:42:34 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:42:34 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:42:34 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:42:34 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:42:35 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:42:35 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:42:35 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:42:35 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:42:35 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:42:35 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:42:36 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:42:36 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:42:36 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:42:36 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:42:36 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:42:36 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:42:37 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:42:37 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:42:37 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:42:37 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:42:37 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:42:37 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:42:38 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:42:38 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:42:38 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:42:38 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:42:38 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:42:39 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:42:39 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:42:39 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:42:39 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:42:39 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:42:39 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:42:40 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:42:40 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:42:40 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:42:40 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:42:40 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:42:40 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:42:41 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:42:41 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:42:41 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:42:41 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:42:41 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:42:41 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:42:42 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:42:42 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:42:42 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:42:42 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:42:42 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:42:43 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:42:43 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:42:43 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:42:43 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:42:43 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:42:43 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:42:44 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:42:44 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:42:44 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:42:44 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:42:44 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:42:44 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:42:45 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:42:45 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:42:45 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:42:45 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:42:45 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:42:45 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:42:46 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:42:46 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:42:46 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:42:46 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:42:46 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:42:47 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:42:47 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:42:47 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:42:47 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:42:47 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:42:47 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:42:48 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:42:48 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:42:48 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:42:48 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:42:48 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:42:48 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:42:49 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:42:49 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:42:49 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:42:49 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:42:49 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:42:49 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:42:50 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:42:50 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:42:50 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:42:50 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:42:50 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:42:50 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:42:51 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:42:51 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:42:51 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:42:51 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:42:51 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:42:52 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:42:52 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:42:52 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:42:52 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:42:52 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:42:52 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:42:53 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:42:53 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:42:53 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:42:53 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:42:53 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:42:53 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:42:54 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:42:54 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:42:54 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:42:54 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:42:54 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:42:54 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:42:55 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:42:55 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:42:55 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:42:55 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:42:55 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:42:56 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:42:56 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:42:56 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:42:56 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:42:56 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:42:56 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:42:57 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:42:57 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:42:57 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:42:57 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:42:57 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:42:57 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:42:58 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:42:58 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:42:58 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:42:58 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:42:58 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:42:59 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:42:59 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:42:59 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:42:59 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:42:59 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:42:59 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:43:00 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:43:00 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:43:00 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:43:00 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:43:00 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:43:00 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:43:01 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:43:01 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:43:01 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:43:01 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:43:01 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:43:02 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:43:02 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:43:02 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:43:02 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:43:02 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:43:03 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:43:03 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:43:03 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:43:03 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:43:03 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:43:03 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:43:04 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:43:04 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:43:04 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:43:04 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:43:04 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:43:05 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:43:05 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:43:05 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:43:05 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:43:05 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:43:05 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:43:06 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:43:06 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:43:06 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:43:06 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:43:06 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:43:07 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:43:07 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:43:07 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:43:07 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:43:07 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:43:07 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:43:08 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:43:08 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:43:08 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:43:08 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:43:08 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:43:08 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:43:09 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:43:09 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:43:09 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:43:09 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:43:09 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:43:10 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:43:10 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:43:10 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:43:10 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:43:10 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:43:10 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:43:11 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:43:11 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:43:11 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:43:11 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:43:11 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:43:11 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:43:12 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:43:12 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:43:12 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:43:12 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:43:12 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:43:13 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:43:13 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:43:13 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:43:13 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:43:13 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:43:13 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:43:14 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:43:14 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:43:14 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:43:14 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:43:14 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:43:14 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:43:15 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:43:15 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:43:15 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:43:15 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:43:15 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:43:16 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:43:16 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:43:16 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:43:16 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:43:16 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:43:16 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:43:17 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:43:17 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:43:17 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:43:17 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:43:17 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:43:18 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:43:18 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:43:18 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:43:18 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:43:18 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:43:18 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:43:19 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:43:19 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:43:19 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:43:19 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:43:19 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:43:20 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:43:20 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:43:20 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:43:20 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:43:20 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:43:20 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:43:21 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:43:21 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:43:21 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:43:21 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:43:21 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:43:22 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:43:22 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:43:22 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:43:22 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:43:22 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:43:22 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:43:23 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:43:23 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:43:23 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:43:23 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:43:23 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:43:23 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:43:24 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:43:24 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:43:24 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:43:24 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:43:24 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:43:25 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:43:25 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:43:25 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:43:25 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:43:25 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:43:25 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:43:26 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:43:26 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:43:26 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:43:26 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:43:27 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:43:27 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:43:27 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:43:27 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:43:28 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:43:28 --> Severity: Notice --> Undefined variable: financialyear C:\xampp\htdocs\ria\application\views\bankinvoice.php 2
+ERROR - 2019-01-10 08:43:28 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:43:28 --> Severity: Warning --> Invalid argument supplied for foreach() C:\xampp\htdocs\ria\application\views\bankinvoice.php 2
+ERROR - 2019-01-10 08:43:28 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:43:28 --> Severity: Notice --> Undefined variable: cash C:\xampp\htdocs\ria\application\views\bankinvoice.php 80
+ERROR - 2019-01-10 08:43:29 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:43:29 --> Severity: Notice --> Undefined variable: bankid C:\xampp\htdocs\ria\application\views\bankinvoice.php 82
+ERROR - 2019-01-10 08:43:29 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:43:29 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:43:30 --> Severity: Notice --> Undefined variable: fdate C:\xampp\htdocs\ria\application\controllers\cashbook.php 1172
+ERROR - 2019-01-10 08:43:30 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:43:30 --> Severity: Notice --> Undefined variable: tdate C:\xampp\htdocs\ria\application\controllers\cashbook.php 1172
+ERROR - 2019-01-10 08:43:30 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:43:30 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:43:30 --> Severity: Notice --> Undefined variable: fa C:\xampp\htdocs\ria\application\controllers\cashbook.php 1172
+ERROR - 2019-01-10 08:43:31 --> Severity: Notice --> Undefined variable: financialyear C:\xampp\htdocs\ria\application\views\bankinvoice.php 2
+ERROR - 2019-01-10 08:43:31 --> Severity: Notice --> Undefined variable: fdate C:\xampp\htdocs\ria\application\controllers\cashbook.php 1172
+ERROR - 2019-01-10 08:43:31 --> Severity: Notice --> Undefined variable: aa C:\xampp\htdocs\ria\application\controllers\cashbook.php 1172
+ERROR - 2019-01-10 08:43:31 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:43:31 --> Severity: Notice --> Undefined variable: tdate C:\xampp\htdocs\ria\application\controllers\cashbook.php 1172
+ERROR - 2019-01-10 08:43:31 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:43:31 --> Severity: Warning --> Invalid argument supplied for foreach() C:\xampp\htdocs\ria\application\views\bankinvoice.php 2
+ERROR - 2019-01-10 08:43:31 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:43:31 --> Severity: Notice --> Undefined variable: fa C:\xampp\htdocs\ria\application\controllers\cashbook.php 1172
+ERROR - 2019-01-10 08:43:32 --> Severity: Notice --> Undefined variable: financialyear C:\xampp\htdocs\ria\application\views\bankstatement.php 2
+ERROR - 2019-01-10 08:43:32 --> Severity: Notice --> Undefined variable: financialyear C:\xampp\htdocs\ria\application\views\bankinvoice.php 2
+ERROR - 2019-01-10 08:43:32 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:43:32 --> Severity: Warning --> Invalid argument supplied for foreach() C:\xampp\htdocs\ria\application\views\bankinvoice.php 2
+ERROR - 2019-01-10 08:43:32 --> Severity: Warning --> Invalid argument supplied for foreach() C:\xampp\htdocs\ria\application\views\bankstatement.php 2
+ERROR - 2019-01-10 08:43:32 --> Severity: Notice --> Undefined variable: cash C:\xampp\htdocs\ria\application\views\bankinvoice.php 80
+ERROR - 2019-01-10 08:43:32 --> Severity: Notice --> Undefined variable: bankid C:\xampp\htdocs\ria\application\views\bankinvoice.php 82
+ERROR - 2019-01-10 08:43:32 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 85
+ERROR - 2019-01-10 08:43:32 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:43:32 --> Severity: Notice --> Undefined variable: aa C:\xampp\htdocs\ria\application\controllers\cashbook.php 1172
+ERROR - 2019-01-10 08:43:32 --> Severity: Notice --> Undefined variable: fdate C:\xampp\htdocs\ria\application\controllers\cashbook.php 1172
+ERROR - 2019-01-10 08:43:32 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 85
+ERROR - 2019-01-10 08:43:32 --> Severity: Notice --> Undefined variable: cash C:\xampp\htdocs\ria\application\views\bankinvoice.php 80
+ERROR - 2019-01-10 08:43:32 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:43:33 --> Severity: Notice --> Undefined variable: bankid C:\xampp\htdocs\ria\application\views\bankinvoice.php 82
+ERROR - 2019-01-10 08:43:33 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:43:33 --> Severity: Notice --> Undefined variable: tdate C:\xampp\htdocs\ria\application\controllers\cashbook.php 1172
+ERROR - 2019-01-10 08:43:33 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 86
+ERROR - 2019-01-10 08:43:33 --> Severity: Notice --> Undefined variable: financialyear C:\xampp\htdocs\ria\application\views\bankstatement.php 2
+ERROR - 2019-01-10 08:43:33 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:43:33 --> Severity: Notice --> Undefined variable: fa C:\xampp\htdocs\ria\application\controllers\cashbook.php 1172
+ERROR - 2019-01-10 08:43:33 --> Severity: Warning --> Invalid argument supplied for foreach() C:\xampp\htdocs\ria\application\views\bankstatement.php 2
+ERROR - 2019-01-10 08:43:33 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:43:33 --> Severity: Notice --> Undefined variable: financialyear C:\xampp\htdocs\ria\application\views\bankinvoice.php 2
+ERROR - 2019-01-10 08:43:33 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 86
+ERROR - 2019-01-10 08:43:33 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 85
+ERROR - 2019-01-10 08:43:33 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:43:34 --> Severity: Notice --> Undefined variable: fdate C:\xampp\htdocs\ria\application\controllers\cashbook.php 1172
+ERROR - 2019-01-10 08:43:34 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 87
+ERROR - 2019-01-10 08:43:34 --> Severity: Warning --> Invalid argument supplied for foreach() C:\xampp\htdocs\ria\application\views\bankinvoice.php 2
+ERROR - 2019-01-10 08:43:34 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 85
+ERROR - 2019-01-10 08:43:34 --> Severity: Notice --> Undefined variable: tdate C:\xampp\htdocs\ria\application\controllers\cashbook.php 1172
+ERROR - 2019-01-10 08:43:34 --> Severity: Notice --> Undefined variable: cash C:\xampp\htdocs\ria\application\views\bankinvoice.php 80
+ERROR - 2019-01-10 08:43:34 --> Severity: Notice --> Undefined variable: aa C:\xampp\htdocs\ria\application\controllers\cashbook.php 1172
+ERROR - 2019-01-10 08:43:34 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:43:34 --> Severity: Notice --> Undefined variable: financialyear C:\xampp\htdocs\ria\application\views\bankinvoice.php 2
+ERROR - 2019-01-10 08:43:34 --> Severity: Notice --> Undefined variable: bankid C:\xampp\htdocs\ria\application\views\bankinvoice.php 82
+ERROR - 2019-01-10 08:43:34 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 86
+ERROR - 2019-01-10 08:43:34 --> Severity: Notice --> Undefined variable: fa C:\xampp\htdocs\ria\application\controllers\cashbook.php 1172
+ERROR - 2019-01-10 08:43:34 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 87
+ERROR - 2019-01-10 08:43:34 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:43:34 --> Severity: Notice --> Undefined variable: aa C:\xampp\htdocs\ria\application\controllers\cashbook.php 1172
+ERROR - 2019-01-10 08:43:35 --> Severity: Notice --> Undefined variable: financialyear C:\xampp\htdocs\ria\application\views\bankstatement.php 2
+ERROR - 2019-01-10 08:43:35 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:43:35 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 137
+ERROR - 2019-01-10 08:43:35 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 86
+ERROR - 2019-01-10 08:43:35 --> Severity: Warning --> Invalid argument supplied for foreach() C:\xampp\htdocs\ria\application\views\bankinvoice.php 2
+ERROR - 2019-01-10 08:43:35 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:43:35 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 87
+ERROR - 2019-01-10 08:43:35 --> Severity: Warning --> Invalid argument supplied for foreach() C:\xampp\htdocs\ria\application\views\bankstatement.php 2
+ERROR - 2019-01-10 08:43:35 --> Severity: Notice --> Undefined variable: financialyear C:\xampp\htdocs\ria\application\views\bankstatement.php 2
+ERROR - 2019-01-10 08:43:35 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 85
+ERROR - 2019-01-10 08:43:35 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:43:35 --> Severity: Notice --> Undefined variable: cash C:\xampp\htdocs\ria\application\views\bankinvoice.php 80
+ERROR - 2019-01-10 08:43:35 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 87
+ERROR - 2019-01-10 08:43:35 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:43:35 --> Severity: Notice --> Undefined variable: bankid C:\xampp\htdocs\ria\application\views\bankinvoice.php 82
+ERROR - 2019-01-10 08:43:35 --> Severity: Warning --> Invalid argument supplied for foreach() C:\xampp\htdocs\ria\application\views\bankstatement.php 2
+ERROR - 2019-01-10 08:43:35 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 137
+ERROR - 2019-01-10 08:43:35 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 85
+ERROR - 2019-01-10 08:43:35 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 85
+ERROR - 2019-01-10 08:43:35 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 86
+ERROR - 2019-01-10 08:43:35 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 137
+ERROR - 2019-01-10 08:43:35 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 138
+ERROR - 2019-01-10 08:43:35 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 137
+ERROR - 2019-01-10 08:43:35 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:43:35 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 86
+ERROR - 2019-01-10 08:43:35 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 85
+ERROR - 2019-01-10 08:43:36 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 86
+ERROR - 2019-01-10 08:43:36 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 87
+ERROR - 2019-01-10 08:43:36 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 138
+ERROR - 2019-01-10 08:43:36 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:43:36 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 87
+ERROR - 2019-01-10 08:43:36 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 138
+ERROR - 2019-01-10 08:43:36 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 138
+ERROR - 2019-01-10 08:43:36 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 139
+ERROR - 2019-01-10 08:43:36 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 139
+ERROR - 2019-01-10 08:43:36 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:43:36 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 137
+ERROR - 2019-01-10 08:43:36 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:43:36 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 86
+ERROR - 2019-01-10 08:43:36 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 139
+ERROR - 2019-01-10 08:43:36 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 87
+ERROR - 2019-01-10 08:43:37 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 139
+ERROR - 2019-01-10 08:43:37 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 87
+ERROR - 2019-01-10 08:43:37 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:43:37 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 137
+ERROR - 2019-01-10 08:43:37 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 137
+ERROR - 2019-01-10 08:43:37 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 137
+ERROR - 2019-01-10 08:43:37 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 138
+ERROR - 2019-01-10 08:43:37 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:43:37 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 138
+ERROR - 2019-01-10 08:43:37 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 138
+ERROR - 2019-01-10 08:43:37 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:43:37 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 139
+ERROR - 2019-01-10 08:43:37 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 138
+ERROR - 2019-01-10 08:43:37 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:43:37 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 139
+ERROR - 2019-01-10 08:43:37 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:43:37 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 139
+ERROR - 2019-01-10 08:43:37 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:43:37 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 139
+ERROR - 2019-01-10 08:43:37 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:43:37 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:43:37 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:43:38 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:43:38 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:43:38 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:43:38 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:43:38 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:43:38 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:43:38 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:43:38 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:43:38 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:43:39 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:43:39 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:43:39 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:43:39 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:43:40 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:43:40 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:43:40 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:43:40 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:43:40 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:43:40 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:43:41 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:43:41 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:43:41 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:43:41 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:43:41 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:43:42 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:43:42 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:43:42 --> Severity: Notice --> Undefined variable: financialyear C:\xampp\htdocs\ria\application\views\bankinvoice.php 2
+ERROR - 2019-01-10 08:43:42 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:43:42 --> Severity: Warning --> Invalid argument supplied for foreach() C:\xampp\htdocs\ria\application\views\bankinvoice.php 2
+ERROR - 2019-01-10 08:43:42 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:43:42 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:43:42 --> Severity: Notice --> Undefined variable: cash C:\xampp\htdocs\ria\application\views\bankinvoice.php 80
+ERROR - 2019-01-10 08:43:43 --> Severity: Notice --> Undefined variable: bankid C:\xampp\htdocs\ria\application\views\bankinvoice.php 82
+ERROR - 2019-01-10 08:43:43 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:43:43 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:43:43 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:43:44 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:43:44 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:43:44 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:43:44 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:43:45 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:43:45 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:43:45 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:43:45 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:43:45 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:43:46 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:43:46 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:43:46 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:43:46 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:43:46 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:43:47 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:43:47 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:43:47 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:43:47 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:43:47 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:43:47 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:43:47 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:43:48 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:43:48 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:43:48 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:43:48 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:43:48 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:43:49 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:43:49 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:43:49 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:43:49 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:43:49 --> Severity: Notice --> Undefined variable: financialyear C:\xampp\htdocs\ria\application\views\bankinvoice.php 2
+ERROR - 2019-01-10 08:43:49 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:43:50 --> Severity: Warning --> Invalid argument supplied for foreach() C:\xampp\htdocs\ria\application\views\bankinvoice.php 2
+ERROR - 2019-01-10 08:43:50 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:43:50 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:43:50 --> Severity: Notice --> Undefined variable: cash C:\xampp\htdocs\ria\application\views\bankinvoice.php 80
+ERROR - 2019-01-10 08:43:50 --> Severity: Notice --> Undefined variable: bankid C:\xampp\htdocs\ria\application\views\bankinvoice.php 82
+ERROR - 2019-01-10 08:43:50 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:43:50 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:43:50 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:43:50 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:43:50 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:43:50 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:43:50 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:43:51 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:43:51 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:43:51 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:43:51 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:43:51 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:43:51 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:43:51 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:43:51 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:43:51 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:43:51 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:43:52 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:43:52 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:43:52 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:43:52 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:43:52 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:43:52 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:43:52 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:43:52 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:43:52 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:43:52 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:43:52 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:43:53 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:43:53 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:43:53 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:43:53 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:43:53 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:43:53 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:43:53 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:43:53 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:43:53 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:43:53 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:43:53 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:43:53 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:43:54 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:43:54 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:43:54 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:43:54 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:43:54 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:43:54 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:43:54 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:43:54 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:43:54 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:43:54 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:43:55 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:43:55 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:43:55 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:43:55 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:43:55 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:43:55 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:43:55 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:43:55 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:43:55 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:43:55 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:43:55 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:43:55 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:43:56 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:43:56 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:43:56 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:43:56 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:43:56 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:43:56 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:43:56 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:43:56 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:43:56 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:43:56 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:43:57 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:43:57 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:43:57 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:43:57 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:43:57 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:43:57 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:43:57 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:43:57 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:43:57 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:43:57 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:43:57 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:43:57 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:43:58 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:43:58 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:43:58 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:43:58 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:43:58 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:43:58 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:43:58 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:43:58 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:43:58 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:43:58 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:43:59 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:43:59 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:43:59 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:43:59 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:43:59 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:43:59 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:43:59 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:43:59 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:43:59 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:43:59 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:43:59 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:43:59 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:44:00 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:44:00 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:44:00 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:44:00 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:44:00 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:44:00 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:44:00 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:44:00 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:44:00 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:44:00 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:44:01 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:44:01 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:44:01 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:44:01 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:44:01 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:44:01 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:44:01 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:44:01 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:44:01 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:44:01 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:44:01 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:44:01 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:44:02 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:44:02 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:44:02 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:44:02 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:44:02 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:44:02 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:44:02 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:44:02 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:44:02 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:44:02 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:44:03 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:44:03 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:44:03 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:44:03 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:44:03 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:44:03 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:44:03 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:44:03 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:44:03 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:44:03 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:44:03 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:44:03 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:44:04 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:44:04 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:44:04 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:44:04 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:44:04 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:44:04 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:44:04 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:44:04 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:44:04 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:44:04 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:44:04 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:44:04 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:44:05 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:44:05 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:44:05 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:44:05 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:44:05 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:44:05 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:44:05 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:44:05 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:44:05 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:44:05 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:44:06 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:44:06 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:44:06 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:44:06 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:44:06 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:44:06 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:44:06 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:44:06 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:44:06 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:44:06 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:44:06 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:44:06 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:44:07 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:44:07 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:44:07 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:44:07 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:44:07 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:44:07 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:44:07 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:44:07 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:44:08 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:44:08 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:44:08 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:44:08 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:44:08 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:44:08 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:44:08 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:44:08 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:44:08 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:44:08 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:44:09 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:44:09 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:44:09 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:44:09 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:44:09 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:44:09 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:44:09 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:44:09 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:44:09 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:44:09 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:44:09 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:44:09 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:44:10 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:44:10 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:44:10 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:44:10 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:44:10 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:44:10 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:44:10 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:44:10 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:44:10 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:44:10 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:44:11 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:44:11 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:44:11 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:44:11 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:44:11 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:44:11 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:44:11 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:44:11 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:44:11 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:44:11 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:44:11 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:44:11 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:44:12 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:44:12 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:44:12 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:44:12 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:44:12 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:44:12 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:44:12 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:44:12 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:44:12 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:44:12 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:44:13 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:44:13 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:44:13 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:44:13 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:44:13 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:44:13 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:44:13 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:44:13 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:44:13 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:44:13 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:44:13 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:44:13 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:44:14 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:44:14 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:44:14 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:44:14 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:44:14 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:44:14 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:44:14 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:44:14 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:44:14 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:44:14 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:44:14 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:44:14 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:44:15 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:44:15 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:44:15 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:44:15 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:44:15 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:44:15 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:44:15 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:44:15 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:44:15 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:44:15 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:44:16 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:44:16 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:44:16 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:44:16 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:44:16 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:44:16 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:44:16 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:44:16 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:44:16 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:44:16 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:44:17 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:44:17 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:44:17 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:44:17 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:44:17 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:44:17 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:44:17 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:44:17 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:44:17 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:44:17 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:44:18 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:44:18 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:44:18 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:44:18 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:44:18 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:44:18 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:44:18 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:44:18 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:44:18 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:44:18 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:44:19 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:44:19 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:44:19 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:44:19 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:44:19 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:44:19 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:44:19 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:44:19 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:44:19 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:44:19 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:44:19 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:44:19 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:44:20 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:44:20 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:44:20 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:44:20 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:44:20 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:44:20 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:44:20 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:44:20 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:44:20 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:44:20 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:44:21 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:44:21 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:44:21 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:44:21 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:44:21 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:44:21 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:44:21 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:44:21 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:44:21 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:44:21 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:44:21 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:44:21 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:44:22 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:44:22 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:44:22 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:44:22 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:44:22 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:44:22 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:44:22 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:44:22 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:44:22 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:44:22 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:44:23 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:44:23 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:44:23 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:44:23 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:44:23 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:44:23 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:44:23 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:44:23 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:44:23 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:44:23 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:44:23 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:44:23 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:44:24 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:44:24 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:44:24 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:44:24 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:44:24 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:44:24 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:44:24 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:44:24 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:44:24 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:44:25 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:44:25 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:44:25 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:44:25 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:44:25 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:44:25 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:44:25 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:44:25 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:44:25 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:44:25 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:44:25 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:44:25 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:44:26 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:44:26 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:44:26 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:44:26 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:44:26 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:44:26 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:44:26 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:44:26 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:44:26 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:44:26 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:44:27 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:44:27 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:44:27 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:44:27 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:44:27 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:44:27 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:44:27 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:44:27 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:44:27 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:44:27 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:44:27 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:44:27 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:44:28 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:44:28 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:44:28 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:44:28 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:44:28 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:44:28 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:44:28 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:44:28 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:44:28 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:44:28 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:44:29 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:44:29 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:44:29 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:44:29 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:44:29 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:44:29 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:44:29 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:44:29 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:44:29 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:44:29 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:44:29 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:44:29 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:44:30 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:44:30 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:44:30 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:44:30 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:44:30 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:44:30 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:44:30 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:44:30 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:44:30 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:44:30 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:44:31 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:44:31 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:44:31 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:44:31 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:44:31 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:44:31 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:44:31 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:44:31 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:44:31 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:44:31 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:44:31 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:44:31 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:44:32 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:44:32 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:44:32 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:44:32 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:44:32 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:44:32 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:44:32 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:44:32 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:44:32 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:44:32 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:44:33 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:44:33 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:44:33 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:44:33 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:44:33 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:44:33 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:44:34 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:44:34 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:44:34 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:44:34 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:44:34 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:44:35 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:44:35 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:44:35 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:44:35 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:44:35 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:44:35 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:44:36 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:44:36 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:44:36 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:44:36 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:44:36 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:44:36 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:44:37 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:44:37 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:44:37 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:44:37 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:44:37 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:44:37 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:44:37 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:44:37 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:44:37 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:44:37 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:44:38 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:44:38 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:44:38 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:44:38 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:44:38 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:44:38 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:44:38 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:44:38 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:44:38 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:44:38 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:44:39 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:44:39 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:44:39 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:44:39 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:44:39 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:44:39 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:44:39 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:44:39 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:44:39 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:44:39 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:44:40 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:44:40 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:44:40 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:44:40 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:44:40 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:44:40 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:44:40 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:44:40 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:44:40 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:44:40 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:44:41 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:44:41 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:44:41 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:44:41 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:44:41 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:44:41 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:44:41 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:44:41 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:44:41 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:44:41 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:44:42 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:44:42 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:44:42 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:44:42 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:44:42 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:44:42 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:44:43 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:44:43 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:44:43 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:44:43 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:44:43 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:44:43 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:44:43 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:44:43 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:44:44 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:44:44 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:44:44 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:44:44 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:44:44 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:44:44 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:44:44 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:44:44 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:44:44 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:44:44 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:44:44 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:44:44 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:44:45 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:44:45 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:44:45 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:44:45 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:44:45 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:44:45 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:44:45 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:44:45 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:44:46 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:44:46 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:44:46 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:44:46 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:44:46 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:44:46 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:44:46 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:44:46 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:44:46 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:44:46 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:44:46 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:44:47 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:44:47 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:44:47 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:44:47 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:44:47 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:44:47 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:44:47 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:44:47 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:44:48 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:44:48 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:44:48 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:44:48 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:44:48 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:44:48 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:44:48 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:44:48 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:44:48 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:44:48 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:44:49 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:44:49 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:44:49 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:44:49 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:44:49 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:44:49 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:44:49 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:44:49 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:44:50 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:44:50 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:44:50 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:44:50 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:44:50 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:44:50 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:44:50 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:44:51 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:44:51 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:44:51 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:44:51 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:44:51 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:44:51 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:44:51 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:44:51 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:44:52 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:44:52 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:44:52 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:44:52 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:44:52 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:44:52 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:44:52 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:44:52 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:44:52 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:44:52 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:44:53 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:44:53 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:44:53 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:44:53 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:44:53 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:44:53 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:44:53 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:44:53 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:44:53 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:44:53 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:44:54 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:44:54 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:44:54 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:44:54 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:44:54 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:44:54 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:44:54 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:44:54 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:44:54 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:44:54 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:44:54 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:44:54 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:44:55 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:44:55 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:44:55 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:44:55 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:44:55 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:44:55 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:44:55 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:44:55 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:44:56 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:44:56 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:44:56 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:44:56 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:44:56 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:44:56 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:44:56 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:44:56 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:44:56 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:44:56 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:44:56 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:44:56 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:44:57 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:44:57 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:44:57 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:44:57 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:44:57 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:44:57 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:44:57 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:44:57 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:44:58 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:44:58 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:44:58 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:44:58 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:44:58 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:44:58 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:44:58 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:44:58 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:44:58 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:44:58 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:44:59 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:44:59 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:44:59 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:44:59 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:44:59 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:44:59 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:44:59 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:44:59 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:44:59 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:45:00 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:45:00 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:45:00 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:45:00 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:45:00 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:45:00 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:45:00 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:45:00 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:45:00 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:45:00 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:45:01 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:45:01 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:45:01 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:45:01 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:45:01 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:45:01 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:45:01 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:45:01 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:45:01 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:45:01 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:45:02 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:45:02 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:45:02 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:45:02 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:45:02 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:45:02 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:45:02 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:45:02 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:45:02 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:45:03 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:45:03 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:45:03 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:45:03 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:45:03 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:45:03 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:45:03 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:45:03 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:45:04 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:45:04 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:45:04 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:45:04 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:45:04 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:45:04 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:45:04 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:45:04 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:45:05 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:45:05 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:45:05 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:45:05 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:45:05 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:45:05 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:45:05 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:45:05 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:45:05 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:45:05 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:45:06 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:45:06 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:45:06 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:45:06 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:45:06 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:45:06 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:45:06 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:45:06 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:45:06 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:45:06 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:45:06 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:45:06 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:45:07 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:45:07 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:45:07 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:45:07 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:45:07 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:45:07 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:45:07 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:45:07 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:45:08 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:45:08 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:45:08 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:45:08 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:45:08 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:45:08 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:45:09 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:45:09 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:45:09 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:45:09 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:45:09 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:45:09 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:45:09 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:45:10 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:45:10 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:45:10 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:45:10 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:45:10 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:45:11 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:45:11 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:45:11 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:45:11 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:45:11 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:45:11 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:45:11 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:45:12 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:45:12 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:45:12 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:45:12 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:45:12 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:45:12 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:45:12 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:45:13 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:45:13 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:45:13 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:45:14 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:45:14 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:45:14 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:45:14 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:45:14 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:45:14 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:45:14 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:45:14 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:45:15 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:45:15 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:45:15 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:45:15 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:45:15 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:45:15 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:45:16 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:45:16 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:45:16 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:45:16 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:45:17 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:45:17 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:45:17 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:45:17 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:45:17 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:45:17 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:45:17 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:45:17 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:45:17 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:45:17 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:45:18 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:45:18 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:45:18 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:45:18 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:45:18 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:45:18 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:45:18 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:45:18 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:45:19 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:45:19 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:45:19 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:45:19 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:45:19 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:45:19 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:45:19 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:45:19 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:45:19 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:45:19 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:45:20 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:45:20 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:45:20 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:45:20 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:45:20 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:45:21 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:45:21 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:45:21 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:45:21 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:45:21 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:45:21 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:45:21 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:45:21 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:45:21 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:45:22 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:45:22 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:45:22 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:45:22 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:45:22 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:45:22 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:45:22 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:45:22 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:45:22 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:45:22 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:45:23 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:45:23 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:45:23 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:45:23 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:45:23 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:45:23 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:45:23 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:45:23 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:45:23 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:45:23 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:45:24 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:45:24 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:45:24 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:45:24 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:45:24 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:45:24 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:45:24 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:45:24 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:45:25 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:45:25 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:45:25 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:45:25 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:45:25 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:45:25 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:45:25 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:45:26 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:45:26 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:45:26 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:45:26 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:45:26 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:45:26 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:45:26 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:45:26 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:45:26 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:45:26 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:45:26 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:45:26 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:45:27 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:45:27 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:45:27 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:45:27 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:45:27 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:45:27 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:45:27 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:45:27 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:45:27 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:45:27 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:45:28 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:45:28 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:45:28 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:45:28 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:45:28 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:45:28 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:45:28 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:45:28 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:45:28 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:45:28 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:45:29 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:45:29 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:45:29 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:45:29 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:45:29 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:45:29 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:45:29 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:45:29 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:45:29 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:45:29 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:45:30 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:45:30 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:45:30 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:45:30 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:45:30 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:45:30 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:45:30 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:45:30 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:45:30 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:45:30 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:45:30 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:45:30 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:45:31 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:45:31 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:45:31 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:45:31 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:45:31 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:45:31 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:45:31 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:45:31 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:45:31 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:45:31 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:45:32 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:45:32 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:45:32 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:45:32 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:45:32 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:45:32 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:45:32 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:45:32 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:45:32 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:45:32 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:45:32 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:45:32 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:45:33 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:45:33 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:45:33 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:45:33 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:45:33 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:45:33 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:45:33 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:45:33 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:45:33 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:45:33 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:45:34 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:45:34 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:45:34 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:45:34 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:45:34 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:45:34 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:45:34 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:45:34 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:45:34 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:45:34 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:45:35 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:45:35 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:45:35 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:45:35 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:45:35 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:45:35 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:45:35 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:45:35 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:45:35 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:45:35 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:45:35 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:45:35 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:45:36 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:45:36 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:45:36 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:45:36 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:45:36 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:45:36 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:45:36 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:45:36 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:45:36 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:45:36 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:45:37 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:45:37 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:45:37 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:45:37 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:45:37 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:45:37 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:45:37 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:45:37 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:45:37 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:45:37 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:45:38 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:45:38 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:45:38 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:45:38 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:45:38 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:45:38 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:45:38 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:45:38 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:45:38 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:45:38 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:45:39 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:45:39 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:45:39 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:45:39 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:45:39 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:45:39 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:45:39 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:45:39 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:45:39 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:45:39 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:45:39 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:45:39 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:45:40 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:45:40 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:45:40 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:45:40 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:45:40 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:45:40 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:45:40 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:45:40 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:45:40 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:45:40 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:45:41 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:45:41 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:45:41 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:45:41 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:45:41 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:45:41 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:45:41 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:45:41 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:45:41 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:45:41 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:45:42 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:45:42 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:45:42 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:45:42 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:45:42 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:45:42 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:45:42 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:45:42 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:45:42 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:45:42 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:45:42 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:45:42 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:45:43 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:45:43 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:45:43 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:45:43 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:45:43 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:45:43 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:45:43 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:45:43 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:45:43 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:45:43 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:45:44 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:45:44 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:45:44 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:45:44 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:45:44 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:45:44 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:45:44 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:45:44 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:45:44 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:45:44 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:45:45 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:45:45 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:45:45 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:45:45 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:45:45 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:45:45 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:45:45 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:45:45 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:45:45 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:45:45 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:45:45 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:45:45 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:45:46 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:45:46 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:45:46 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:45:46 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:45:46 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:45:46 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:45:46 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:45:46 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:45:46 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:45:46 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:45:47 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:45:47 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:45:47 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:45:47 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:45:47 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:45:47 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:45:47 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:45:47 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:45:47 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:45:47 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:45:48 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:45:48 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:45:48 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:45:48 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:45:48 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:45:48 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:45:48 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:45:48 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:45:48 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:45:48 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:45:49 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:45:49 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:45:49 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:45:49 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:45:49 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:45:49 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:45:49 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:45:49 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:45:49 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:45:49 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:45:49 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:45:49 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:45:50 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:45:50 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:45:50 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:45:50 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:45:50 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:45:50 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:45:50 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:45:50 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:45:50 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:45:51 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:45:51 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:45:51 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:45:51 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:45:51 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:45:51 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:45:51 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:45:51 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:45:51 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:45:51 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:45:52 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:45:52 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:45:52 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:45:52 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:45:52 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:45:52 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:45:52 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:45:52 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:45:52 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:45:52 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:45:52 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:45:52 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:45:53 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:45:53 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:45:53 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:45:53 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:45:53 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:45:53 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:45:53 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:45:53 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:45:53 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:45:53 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:45:54 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:45:54 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:45:54 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:45:54 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:45:54 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:45:54 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:45:54 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:45:54 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:45:54 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:45:54 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:45:55 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:45:55 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:45:55 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:45:55 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:45:55 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:45:55 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:45:55 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:45:55 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:45:55 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:45:55 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:45:56 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:45:56 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:45:56 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:45:56 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:45:56 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:45:56 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:45:56 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:45:56 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:45:56 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:45:56 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:45:56 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:45:56 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:45:57 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:45:57 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:45:57 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:45:57 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:45:57 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:45:57 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:45:57 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:45:57 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:45:57 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:45:57 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:45:58 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:45:58 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:45:58 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:45:58 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:45:58 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:45:58 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:45:58 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:45:58 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:45:58 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:45:58 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:45:59 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:45:59 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:45:59 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:45:59 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:45:59 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:45:59 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:45:59 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:45:59 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:45:59 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:45:59 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:46:00 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:46:00 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:46:00 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:46:00 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:46:00 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:46:00 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:46:00 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:46:00 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:46:00 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:46:00 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:46:00 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:46:01 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:46:01 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:46:01 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:46:01 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:46:01 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:46:01 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:46:01 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:46:01 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:46:01 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:46:01 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:46:02 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:46:02 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:46:02 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:46:02 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:46:02 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:46:02 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:46:02 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:46:02 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:46:02 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:46:02 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:46:03 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:46:03 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:46:03 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:46:03 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:46:03 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:46:03 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:46:03 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:46:03 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:46:03 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:46:03 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:46:04 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:46:04 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:46:04 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:46:04 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:46:04 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:46:04 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:46:04 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:46:04 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:46:04 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:46:04 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:46:04 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:46:04 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:46:05 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:46:05 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:46:05 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:46:05 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:46:05 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:46:05 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:46:05 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:46:05 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:46:05 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:46:05 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:46:06 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:46:06 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:46:06 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:46:06 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:46:06 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:46:06 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:46:06 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:46:06 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:46:06 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:46:06 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:46:07 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:46:07 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:46:07 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:46:07 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:46:07 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:46:07 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:46:07 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:46:07 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:46:07 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:46:07 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:46:07 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:46:07 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:46:08 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:46:08 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:46:08 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:46:08 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:46:08 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:46:08 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:46:08 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:46:08 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:46:08 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:46:08 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:46:09 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:46:09 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:46:09 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:46:09 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:46:09 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:46:09 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:46:09 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:46:09 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:46:09 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:46:09 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:46:10 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:46:10 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:46:10 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:46:10 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:46:10 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:46:10 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:46:10 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:46:10 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:46:10 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:46:10 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:46:11 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:46:11 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:46:11 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:46:11 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:46:11 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:46:11 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:46:11 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:46:11 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:46:11 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:46:11 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:46:11 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:46:11 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:46:12 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:46:12 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:46:12 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:46:12 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:46:12 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:46:12 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:46:12 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:46:12 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:46:12 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:46:12 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:46:13 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:46:13 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:46:13 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:46:13 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:46:13 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:46:13 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:46:13 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:46:13 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:46:13 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:46:13 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:46:14 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:46:14 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:46:14 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:46:14 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:46:14 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:46:14 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:46:14 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:46:14 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:46:14 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:46:14 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:46:15 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:46:15 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:46:15 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:46:15 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:46:15 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:46:15 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:46:15 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:46:15 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:46:15 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:46:15 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:46:15 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:46:15 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:46:16 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:46:16 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:46:16 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:46:16 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:46:16 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:46:16 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:46:16 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:46:16 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:46:16 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:46:16 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:46:17 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:46:17 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:46:17 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:46:17 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:46:17 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:46:17 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:46:17 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:46:17 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:46:17 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:46:17 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:46:18 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:46:18 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:46:18 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:46:18 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:46:18 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:46:18 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:46:18 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:46:18 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:46:18 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:46:18 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:46:19 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:46:19 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:46:19 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:46:19 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:46:19 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:46:19 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:46:20 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:46:20 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:46:20 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:46:20 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:46:20 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:46:20 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:46:20 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:46:20 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:46:20 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:46:20 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:46:20 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:46:20 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:46:21 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:46:21 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:46:21 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:46:21 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:46:21 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:46:21 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:46:21 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:46:21 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:46:21 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:46:21 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:46:22 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:46:22 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:46:22 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:46:22 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:46:22 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:46:22 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:46:22 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:46:22 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:46:22 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:46:22 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:46:23 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:46:23 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:46:23 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:46:23 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:46:23 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:46:23 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:46:23 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:46:23 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:46:23 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:46:23 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:46:24 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:46:24 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:46:24 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:46:24 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:46:24 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:46:24 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:46:24 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:46:24 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:46:24 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:46:24 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:46:24 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:46:24 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:46:25 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:46:25 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:46:25 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:46:25 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:46:25 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:46:25 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:46:25 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:46:25 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:46:25 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:46:26 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:46:26 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:46:26 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:46:26 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:46:26 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:46:26 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:46:26 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:46:26 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:46:26 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:46:26 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:46:27 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:46:27 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:46:27 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:46:27 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:46:27 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:46:27 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:46:27 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:46:27 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:46:27 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:46:27 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:46:27 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:46:27 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:46:28 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:46:28 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:46:28 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:46:28 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:46:28 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:46:28 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:46:28 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:46:28 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:46:28 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:46:29 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:46:29 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:46:29 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:46:29 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:46:29 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:46:29 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:46:29 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:46:29 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:46:29 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:46:29 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:46:30 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:46:30 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:46:30 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:46:30 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:46:30 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:46:30 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:46:30 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:46:30 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:46:30 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:46:30 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:46:31 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:46:31 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:46:31 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:46:31 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:46:31 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:46:31 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:46:31 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:46:31 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:46:31 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:46:31 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:46:32 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:46:32 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:46:32 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:46:32 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:46:32 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:46:32 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:46:32 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:46:32 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:46:32 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:46:32 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:46:32 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:46:32 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:46:33 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:46:33 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:46:33 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:46:33 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:46:33 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:46:33 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:46:33 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:46:33 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:46:33 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:46:33 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:46:34 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:46:34 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:46:34 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:46:34 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:46:34 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:46:34 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:46:35 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:46:35 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:46:35 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:46:35 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:46:36 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:46:36 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:46:36 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:46:36 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:46:36 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:46:36 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:46:36 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:46:37 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:46:37 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:46:37 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:46:37 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:46:37 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:46:37 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:46:38 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:46:38 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:46:38 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:46:38 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:46:38 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:46:39 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:46:39 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:46:39 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:46:39 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:46:39 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:46:40 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:46:40 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:46:40 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:46:40 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:46:41 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:46:41 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:46:41 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:46:41 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:46:41 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:46:42 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:46:42 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:46:42 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:46:42 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:46:42 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:46:42 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:46:42 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:46:42 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:46:43 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:46:43 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:46:43 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:46:43 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:46:43 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:46:43 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:46:43 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:46:43 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:46:43 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:46:44 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:46:44 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:46:44 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:46:44 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:46:44 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:46:44 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:46:44 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:46:44 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:46:45 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:46:45 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:46:45 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:46:45 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:46:45 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:46:45 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:46:45 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:46:45 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:46:45 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:46:45 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:46:46 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:46:46 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:46:46 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:46:46 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:46:46 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:46:46 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:46:46 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:46:46 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:46:46 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:46:46 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:46:47 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:46:47 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:46:47 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:46:47 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:46:47 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:46:47 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:46:47 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:46:47 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:46:47 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:46:47 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:46:48 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:46:48 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:46:48 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:46:48 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:46:48 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:46:48 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:46:48 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:46:48 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:46:48 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:46:48 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:46:49 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:46:49 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:46:49 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:46:49 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:46:49 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:46:49 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:46:49 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:46:49 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:46:49 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:46:49 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:46:50 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:46:50 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:46:50 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:46:50 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:46:50 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:46:50 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:46:50 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:46:50 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:46:51 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:46:51 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:46:51 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:46:51 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:46:51 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:46:51 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:46:51 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:46:51 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:46:51 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:46:51 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:46:52 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:46:52 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:46:52 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:46:52 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:46:52 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:46:52 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:46:52 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:46:52 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:46:52 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:46:52 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:46:52 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:46:52 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:46:53 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:46:53 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:46:53 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:46:53 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:46:53 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:46:53 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:46:53 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:46:53 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:46:53 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:46:53 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:46:54 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:46:54 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:46:54 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:46:54 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:46:54 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:46:54 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:46:54 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:46:54 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:46:54 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:46:54 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:46:55 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:46:55 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:46:55 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:46:55 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:46:55 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:46:55 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:46:55 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:46:55 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:46:55 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:46:55 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:46:56 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:46:56 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:46:56 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:46:56 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:46:56 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:46:57 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:46:57 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:46:57 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:46:57 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:46:57 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:46:57 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:46:58 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:46:58 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:46:58 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:46:58 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:46:58 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:46:58 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:46:58 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:46:59 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:46:59 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:46:59 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:46:59 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:46:59 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:46:59 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:46:59 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:46:59 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:46:59 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:47:00 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:47:00 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:47:00 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:47:00 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:47:00 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:47:01 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:47:01 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:47:01 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:47:01 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:47:02 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:47:02 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:47:02 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:47:02 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:47:02 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:47:02 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:47:02 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:47:03 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:47:03 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:47:03 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:47:03 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:47:04 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:47:04 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:47:04 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:47:04 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:47:04 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:47:04 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:47:04 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:47:04 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:47:04 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:47:04 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:47:04 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:47:04 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:47:05 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:47:05 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:47:05 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:47:05 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:47:05 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:47:05 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:47:05 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:47:05 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:47:05 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:47:05 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:47:06 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:47:06 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:47:06 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:47:06 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:47:06 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:47:06 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:47:06 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:47:06 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:47:06 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:47:06 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:47:07 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:47:07 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:47:07 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:47:07 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:47:07 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:47:07 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:47:07 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:47:07 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:47:07 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:47:07 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:47:08 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:47:08 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:47:08 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:47:08 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:47:08 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:47:08 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:47:08 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:47:08 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:47:08 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:47:08 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:47:09 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:47:09 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:47:09 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:47:09 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:47:09 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:47:09 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:47:09 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:47:09 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:47:09 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:47:09 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:47:10 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:47:10 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:47:10 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:47:10 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:47:10 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:47:10 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:47:10 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:47:10 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:47:10 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:47:10 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:47:11 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:47:11 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:47:11 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:47:11 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:47:11 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:47:11 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:47:11 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:47:11 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:47:11 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:47:11 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:47:12 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:47:12 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:47:12 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:47:12 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:47:12 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:47:12 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:47:12 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:47:12 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:47:12 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:47:12 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:47:13 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:47:13 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:47:13 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:47:13 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:47:13 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:47:13 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:47:13 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:47:13 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:47:13 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:47:13 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:47:14 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:47:14 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:47:14 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:47:14 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:47:14 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:47:14 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:47:14 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:47:14 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:47:14 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:47:14 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:47:15 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:47:15 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:47:15 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:47:15 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:47:15 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:47:15 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:47:15 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:47:15 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:47:15 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:47:15 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:47:16 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:47:16 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:47:16 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:47:16 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:47:16 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:47:16 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:47:16 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:47:16 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:47:16 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:47:16 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:47:17 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:47:17 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:47:17 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:47:17 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:47:17 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:47:17 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:47:18 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:47:18 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:47:18 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:47:18 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:47:18 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:47:19 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:47:19 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:47:19 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:47:19 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:47:19 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:47:20 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:47:20 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:47:20 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:47:20 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:47:20 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:47:20 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:47:20 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:47:20 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:47:20 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:47:21 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:47:21 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:47:21 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:47:21 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:47:21 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:47:21 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:47:21 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:47:21 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:47:21 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:47:21 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:47:22 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:47:22 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:47:22 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:47:22 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:47:22 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:47:22 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:47:22 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:47:22 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:47:22 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:47:22 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:47:22 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:47:22 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:47:23 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:47:23 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:47:23 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:47:23 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:47:23 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:47:24 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:47:24 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:47:24 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:47:24 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:47:25 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:47:25 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:47:25 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:47:25 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:47:25 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:47:26 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:47:26 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:47:26 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:47:26 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:47:26 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:47:27 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:47:27 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:47:27 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:47:27 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:47:27 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:47:28 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:47:28 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:47:28 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:47:28 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:47:28 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:47:29 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:47:29 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:47:29 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:47:30 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:47:30 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:47:31 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:47:31 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:47:31 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:47:32 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:47:32 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:47:32 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:47:32 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:47:32 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:47:33 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:47:33 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:47:33 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:47:33 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:47:33 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:47:34 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:47:34 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:47:34 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:47:34 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:47:34 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:47:34 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:47:35 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:47:35 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:47:35 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:47:35 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:47:35 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:47:35 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:47:36 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:47:36 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:47:36 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:47:36 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:47:36 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:47:36 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:47:36 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:47:37 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:47:37 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:47:37 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:47:37 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:47:37 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:47:37 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:47:37 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:47:38 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:47:38 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:47:38 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:47:39 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:47:39 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:47:40 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:47:40 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:47:40 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:47:40 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:47:41 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:47:41 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:47:41 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:47:41 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:47:41 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:47:42 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:47:42 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:47:42 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:47:42 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:47:43 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:47:43 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:47:43 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:47:43 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:47:44 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:47:44 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:47:44 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:47:44 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:47:44 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:47:45 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:47:45 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:47:45 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:47:46 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:47:46 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:47:46 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:47:46 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:47:47 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:47:47 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:47:47 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:47:47 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:47:47 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:47:48 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:47:48 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:47:48 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:47:48 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:47:48 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:47:49 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:47:49 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:47:49 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:47:49 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:47:50 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:47:50 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:47:50 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:47:50 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:47:50 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:47:51 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:47:51 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:47:51 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:47:51 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:47:52 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:47:52 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:47:52 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:47:52 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:47:53 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:47:53 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:47:53 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:47:54 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:47:54 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:47:54 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:47:54 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:47:54 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:47:55 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:47:55 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:47:55 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:47:55 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:47:55 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:47:56 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:47:56 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:47:56 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:47:56 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:47:57 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:47:57 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:47:57 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:47:57 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:47:58 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:47:58 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:47:58 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:47:58 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:47:58 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:47:59 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:47:59 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:47:59 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:47:59 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:48:00 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:48:00 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:48:00 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:48:00 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:48:00 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:48:01 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:48:01 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:48:01 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:48:02 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:48:02 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:48:02 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:48:02 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:48:03 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:48:03 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:48:03 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:48:03 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:48:03 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:48:04 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:48:04 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:48:04 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:48:04 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:48:04 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:48:05 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:48:05 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:48:05 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:48:06 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:48:06 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:48:06 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:48:06 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:48:07 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:48:07 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:48:07 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:48:07 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:48:08 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:48:08 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:48:08 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:48:08 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:48:09 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:48:09 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:48:09 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:48:09 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:48:09 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:48:10 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:48:10 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:48:10 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:48:10 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:48:11 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:48:11 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:48:11 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:48:11 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:48:11 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:48:12 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:48:12 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:48:12 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:48:12 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:48:12 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:48:13 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:48:13 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:48:13 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:48:13 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:48:13 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:48:14 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:48:14 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:48:14 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:48:14 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:48:14 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:48:15 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:48:15 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:48:15 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:48:15 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:48:16 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:48:16 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:48:16 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:48:16 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:48:17 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:48:17 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:48:17 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:48:17 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:48:17 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:48:18 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:48:18 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:48:18 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:48:18 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:48:19 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:48:19 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:48:19 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:48:19 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:48:20 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:48:20 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:48:20 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:48:20 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:48:21 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:48:21 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:48:21 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:48:22 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:48:22 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:48:22 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:48:23 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:48:23 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:48:23 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:48:23 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:48:24 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:48:24 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:48:24 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:48:24 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:48:25 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:48:25 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:48:25 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:48:25 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:48:25 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:48:26 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:48:26 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:48:26 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:48:26 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:48:26 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:48:27 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:48:27 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:48:27 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:48:27 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:48:28 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:48:28 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:48:28 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:48:28 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:48:29 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:48:29 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:48:29 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:48:30 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:48:30 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:48:30 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:48:31 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:48:31 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:48:31 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:48:31 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:48:31 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:48:32 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:48:32 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:48:32 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:48:32 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:48:33 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:48:33 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:48:33 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:48:34 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:48:34 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:48:34 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:48:34 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:48:35 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:48:35 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:48:35 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:48:35 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:48:35 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:48:36 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:48:36 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:48:36 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:48:36 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:48:37 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:48:37 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:48:37 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:48:37 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:48:37 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:48:38 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:48:38 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:48:38 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:48:38 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:48:39 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:48:39 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:48:39 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:48:39 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:48:40 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:48:40 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:48:40 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:48:40 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:48:40 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:48:41 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:48:41 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:48:41 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:48:41 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:48:41 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:48:42 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:48:42 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:48:42 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:48:42 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:48:43 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:48:43 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:48:43 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:48:43 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:48:44 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:48:44 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:48:44 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:48:45 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:48:45 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:48:45 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:48:46 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:48:46 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:48:46 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:48:46 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:48:47 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:48:47 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:48:47 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:48:47 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:48:47 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 08:48:48 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 08:48:48 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:06:26 --> Severity: Notice --> Undefined variable: fdate C:\xampp\htdocs\ria\application\controllers\cashbook.php 1172
+ERROR - 2019-01-10 11:06:26 --> Severity: Notice --> Undefined variable: tdate C:\xampp\htdocs\ria\application\controllers\cashbook.php 1172
+ERROR - 2019-01-10 11:06:26 --> Severity: Notice --> Undefined variable: fa C:\xampp\htdocs\ria\application\controllers\cashbook.php 1172
+ERROR - 2019-01-10 11:06:27 --> Severity: Notice --> Undefined variable: aa C:\xampp\htdocs\ria\application\controllers\cashbook.php 1172
+ERROR - 2019-01-10 11:06:27 --> Severity: Notice --> Undefined variable: financialyear C:\xampp\htdocs\ria\application\views\bankstatement.php 2
+ERROR - 2019-01-10 11:06:28 --> Severity: Warning --> Invalid argument supplied for foreach() C:\xampp\htdocs\ria\application\views\bankstatement.php 2
+ERROR - 2019-01-10 11:06:28 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 85
+ERROR - 2019-01-10 11:06:28 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 85
+ERROR - 2019-01-10 11:06:28 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 86
+ERROR - 2019-01-10 11:06:29 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 86
+ERROR - 2019-01-10 11:06:29 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 87
+ERROR - 2019-01-10 11:06:29 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 87
+ERROR - 2019-01-10 11:06:29 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 137
+ERROR - 2019-01-10 11:06:30 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 137
+ERROR - 2019-01-10 11:06:30 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 138
+ERROR - 2019-01-10 11:06:30 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 138
+ERROR - 2019-01-10 11:06:30 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 139
+ERROR - 2019-01-10 11:06:30 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 139
+ERROR - 2019-01-10 11:06:46 --> Severity: Notice --> Undefined variable: financialyear C:\xampp\htdocs\ria\application\views\bankinvoice.php 2
+ERROR - 2019-01-10 11:06:46 --> Severity: Warning --> Invalid argument supplied for foreach() C:\xampp\htdocs\ria\application\views\bankinvoice.php 2
+ERROR - 2019-01-10 11:06:46 --> Severity: Notice --> Undefined variable: cash C:\xampp\htdocs\ria\application\views\bankinvoice.php 80
+ERROR - 2019-01-10 11:06:47 --> Severity: Notice --> Undefined variable: bankid C:\xampp\htdocs\ria\application\views\bankinvoice.php 82
+ERROR - 2019-01-10 11:07:40 --> Severity: Notice --> Undefined variable: financialyear C:\xampp\htdocs\ria\application\views\bankinvoice.php 2
+ERROR - 2019-01-10 11:07:40 --> Severity: Warning --> Invalid argument supplied for foreach() C:\xampp\htdocs\ria\application\views\bankinvoice.php 2
+ERROR - 2019-01-10 11:07:41 --> Severity: Notice --> Undefined variable: cash C:\xampp\htdocs\ria\application\views\bankinvoice.php 80
+ERROR - 2019-01-10 11:07:41 --> Severity: Notice --> Undefined variable: bankid C:\xampp\htdocs\ria\application\views\bankinvoice.php 82
+ERROR - 2019-01-10 11:07:41 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:07:41 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:07:42 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:07:42 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:07:42 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:07:42 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:07:43 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:07:43 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:07:43 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:07:43 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:07:44 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:07:44 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:07:44 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:07:44 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:07:44 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:07:45 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:07:45 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:07:45 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:07:45 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:07:46 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:07:46 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:07:46 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:07:46 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:07:46 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:07:47 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:07:47 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:07:47 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:07:47 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:07:47 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:07:48 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:07:48 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:07:48 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:07:48 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:07:48 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:07:48 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:07:48 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:07:49 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:07:49 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:07:49 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:07:49 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:07:49 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:07:49 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:07:50 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:07:50 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:07:50 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:07:50 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:07:50 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:07:50 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:07:50 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:07:50 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:07:51 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:07:51 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:07:51 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:07:51 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:07:51 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:07:52 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:07:52 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:07:52 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:07:52 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:07:52 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:07:53 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:07:53 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:07:53 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:07:53 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:07:54 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:07:54 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:07:54 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:07:54 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:07:55 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:07:55 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:07:55 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:07:55 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:07:55 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:07:56 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:07:56 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:07:56 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:07:56 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:07:56 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:07:56 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:07:57 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:07:57 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:07:57 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:07:57 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:07:57 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:07:57 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:07:58 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:07:58 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:07:58 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:07:58 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:07:58 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:07:58 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:07:59 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:07:59 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:07:59 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:07:59 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:07:59 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:07:59 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:07:59 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:08:00 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:08:00 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:08:00 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:08:00 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:08:00 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:08:00 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:08:00 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:08:01 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:08:01 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:08:01 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:08:01 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:08:02 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:08:02 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:08:02 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:08:02 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:08:03 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:08:03 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:08:03 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:08:03 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:08:03 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:08:04 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:08:04 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:08:04 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:08:04 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:08:05 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:08:05 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:08:05 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:08:05 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:08:05 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:08:06 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:08:06 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:08:06 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:08:06 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:08:06 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:08:07 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:08:07 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:08:07 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:08:07 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:08:07 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:08:07 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:08:08 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:08:08 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:08:08 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:08:08 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:08:08 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:08:08 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:08:09 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:08:09 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:08:09 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:08:09 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:08:09 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:08:09 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:08:10 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:08:10 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:08:10 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:08:10 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:08:10 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:08:10 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:08:10 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:08:11 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:08:11 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:08:11 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:08:11 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:08:11 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:08:11 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:08:11 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:08:12 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:08:12 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:08:12 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:08:12 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:08:12 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:08:12 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:08:12 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:08:12 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:08:13 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:08:13 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:08:13 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:08:13 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:08:13 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:08:13 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:08:13 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:08:14 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:08:14 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:08:14 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:08:14 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:08:15 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:08:15 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:08:15 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:08:15 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:08:15 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:08:16 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:08:16 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:08:16 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:08:16 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:08:17 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:08:17 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:08:17 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:08:17 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:08:18 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:08:18 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:08:18 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:08:18 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:08:19 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:08:19 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:08:19 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:08:19 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:08:20 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:08:20 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:08:20 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:08:20 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:08:20 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:08:21 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:08:21 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:08:21 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:08:21 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:08:22 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:08:22 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:08:22 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:08:22 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:08:22 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:08:23 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:08:23 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:08:23 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:08:23 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:08:23 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:08:24 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:08:24 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:08:24 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:08:24 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:08:24 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:08:24 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:08:25 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:08:25 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:08:25 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:08:25 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:08:25 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:08:25 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:08:26 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:08:26 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:08:26 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:08:26 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:08:27 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:08:27 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:08:27 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:08:27 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:08:28 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:08:28 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:08:28 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:08:28 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:08:29 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:08:29 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:08:29 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:08:29 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:08:29 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:08:30 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:08:30 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:08:30 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:08:30 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:08:31 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:08:31 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:08:31 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:08:31 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:08:31 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:08:32 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:08:32 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:08:32 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:08:32 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:08:32 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:08:33 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:08:33 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:08:33 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:08:33 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:08:33 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:08:34 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:08:34 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:08:34 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:08:34 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:08:34 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:08:34 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:08:35 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:08:35 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:08:35 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:08:35 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:08:35 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:08:35 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:08:36 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:08:36 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:08:36 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:08:36 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:08:36 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:08:36 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:08:37 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:08:37 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:08:37 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:08:37 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:08:37 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:08:37 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:08:38 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:08:38 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:08:38 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:08:38 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:08:38 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:08:39 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:08:39 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:08:39 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:08:39 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:08:40 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:08:40 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:08:40 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:08:40 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:08:41 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:08:41 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:08:41 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:08:41 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:08:42 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:08:42 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:08:42 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:08:42 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:08:43 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:08:43 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:08:43 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:08:44 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:08:44 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:08:45 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:08:45 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:08:45 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:08:45 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:08:46 --> Severity: Notice --> Undefined variable: financialyear C:\xampp\htdocs\ria\application\views\bankinvoice.php 2
+ERROR - 2019-01-10 11:08:46 --> Severity: Notice --> Undefined variable: financialyear C:\xampp\htdocs\ria\application\views\bankinvoice.php 2
+ERROR - 2019-01-10 11:08:46 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:08:46 --> Severity: Warning --> Invalid argument supplied for foreach() C:\xampp\htdocs\ria\application\views\bankinvoice.php 2
+ERROR - 2019-01-10 11:08:46 --> Severity: Warning --> Invalid argument supplied for foreach() C:\xampp\htdocs\ria\application\views\bankinvoice.php 2
+ERROR - 2019-01-10 11:08:46 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:08:46 --> Severity: Notice --> Undefined variable: cash C:\xampp\htdocs\ria\application\views\bankinvoice.php 80
+ERROR - 2019-01-10 11:08:46 --> Severity: Notice --> Undefined variable: cash C:\xampp\htdocs\ria\application\views\bankinvoice.php 80
+ERROR - 2019-01-10 11:08:46 --> Severity: Notice --> Undefined variable: bankid C:\xampp\htdocs\ria\application\views\bankinvoice.php 82
+ERROR - 2019-01-10 11:08:46 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:08:46 --> Severity: Notice --> Undefined variable: bankid C:\xampp\htdocs\ria\application\views\bankinvoice.php 82
+ERROR - 2019-01-10 11:08:46 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:08:46 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:08:46 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:08:46 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:08:46 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:08:47 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:08:47 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:08:47 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:08:47 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:08:47 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:08:47 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:08:47 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:08:47 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:08:47 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:08:47 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:08:47 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:08:47 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:08:47 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:08:47 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:08:47 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:08:47 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:08:47 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:08:47 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:08:47 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:08:47 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:08:48 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:08:48 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:08:48 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:08:48 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:08:48 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:08:48 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:08:48 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:08:48 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:08:48 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:08:48 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:08:48 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:08:48 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:08:48 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:08:48 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:08:48 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:08:48 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:08:48 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:08:48 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:08:49 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:08:49 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:08:49 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:08:49 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:08:49 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:08:49 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:08:49 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:08:49 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:08:49 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:08:49 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:08:49 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:08:49 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:08:49 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:08:49 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:08:49 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:08:49 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:08:49 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:08:49 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:08:49 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:08:49 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:08:50 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:08:50 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:08:50 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:08:50 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:08:50 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:08:50 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:08:50 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:08:50 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:08:50 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:08:50 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:08:50 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:08:50 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:08:50 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:08:50 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:08:50 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:08:50 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:08:50 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:08:51 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:08:51 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:08:51 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:08:51 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:08:51 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:08:51 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:08:51 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:08:51 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:08:51 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:08:51 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:08:51 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:08:51 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:08:52 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:08:52 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:08:52 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:08:52 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:08:52 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:08:52 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:08:52 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:08:52 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:08:52 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:08:52 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:08:52 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:08:53 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:08:53 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:08:53 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:08:53 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:08:53 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:08:53 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:08:53 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:08:53 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:08:53 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:08:53 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:08:53 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:08:53 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:08:54 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:08:54 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:08:54 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:08:54 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:08:54 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:08:54 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:08:54 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:08:54 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:08:54 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:08:54 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:08:54 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:08:55 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:08:55 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:08:55 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:08:55 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:08:55 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:08:55 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:08:55 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:08:55 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:08:55 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:08:55 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:08:55 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:08:55 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:08:56 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:08:56 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:08:56 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:08:56 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:08:56 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:08:56 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:08:56 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:08:56 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:08:56 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:08:56 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:08:56 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:08:57 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:08:57 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:08:57 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:08:57 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:08:57 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:08:57 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:08:57 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:08:57 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:08:57 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:08:57 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:08:57 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:08:57 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:08:57 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:08:57 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:08:57 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:08:58 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:08:58 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:08:58 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:08:58 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:08:58 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:08:58 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:08:58 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:08:58 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:08:58 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:08:58 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:08:58 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:08:58 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:08:59 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:08:59 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:08:59 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:08:59 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:08:59 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:08:59 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:08:59 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:08:59 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:08:59 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:09:00 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:09:00 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:09:00 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:09:00 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:09:00 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:09:00 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:09:00 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:09:00 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:09:00 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:09:00 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:09:00 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:09:00 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:09:01 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:09:01 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:09:01 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:09:01 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:09:01 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:09:01 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:09:01 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:09:01 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:09:01 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:09:01 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:09:01 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:09:02 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:09:02 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:09:02 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:09:02 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:09:02 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:09:02 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:09:02 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:09:02 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:09:02 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:09:02 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:09:02 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:09:02 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:09:02 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:09:03 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:09:03 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:09:03 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:09:03 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:09:03 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:09:03 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:09:03 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:09:03 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:09:03 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:09:03 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:09:03 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:09:03 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:09:03 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:09:03 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:09:04 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:09:04 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:09:04 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:09:04 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:09:04 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:09:04 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:09:04 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:09:04 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:09:04 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:09:04 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:09:04 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:09:04 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:09:04 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:09:04 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:09:04 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:09:05 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:09:05 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:09:05 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:09:05 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:09:05 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:09:05 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:09:05 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:09:05 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:09:05 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:09:05 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:09:06 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:09:06 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:09:06 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:09:06 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:09:06 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:09:06 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:09:06 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:09:06 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:09:06 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:09:06 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:09:06 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:09:06 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:09:06 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:09:06 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:09:06 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:09:07 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:09:07 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:09:07 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:09:07 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:09:07 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:09:07 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:09:07 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:09:07 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:09:07 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:09:07 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:09:07 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:09:07 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:09:07 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:09:08 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:09:08 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:09:08 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:09:08 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:09:08 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:09:08 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:09:08 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:09:08 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:09:08 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:09:08 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:09:08 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:09:08 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:09:08 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:09:08 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:09:08 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:09:08 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:09:08 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:09:08 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:09:09 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:09:09 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:09:09 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:09:09 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:09:09 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:09:09 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:09:09 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:09:09 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:09:09 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:09:09 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:09:09 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:09:09 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:09:09 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:09:09 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:09:09 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:09:10 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:09:10 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:09:10 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:09:10 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:09:10 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:09:10 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:09:10 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:09:10 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:09:10 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:09:10 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:09:10 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:09:10 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:09:10 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:09:10 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:09:10 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:09:11 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:09:11 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:09:11 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:09:11 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:09:11 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:09:11 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:09:11 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:09:11 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:09:11 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:09:11 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:09:11 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:09:11 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:09:11 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:09:11 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:09:11 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:09:11 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:09:11 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:09:11 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:09:11 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:09:11 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:09:11 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:09:11 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:09:11 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:09:11 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:09:12 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:09:12 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:09:12 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:09:12 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:09:12 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:09:12 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:09:12 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:09:12 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:09:12 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:09:12 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:09:12 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:09:12 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:09:12 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:09:12 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:09:12 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:09:12 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:09:13 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:09:13 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:09:13 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:09:13 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:09:13 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:09:13 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:09:13 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:09:13 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:09:13 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:09:13 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:09:14 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:09:14 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:09:14 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:09:14 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:09:14 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:09:14 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:09:14 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:09:14 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:09:14 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:09:14 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:09:15 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:09:15 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:09:15 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:09:15 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:09:15 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:09:15 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:09:15 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:09:15 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:09:15 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:09:15 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:09:15 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:09:15 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:09:16 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:09:16 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:09:16 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:09:16 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:09:16 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:09:16 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:09:16 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:09:16 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:09:17 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:09:17 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:09:17 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:09:17 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:09:17 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:09:17 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:09:17 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:09:17 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:09:18 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:09:18 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:09:18 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:09:18 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:09:18 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:09:18 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:09:18 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:09:18 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:09:18 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:09:18 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:09:18 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:09:18 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:09:18 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:09:18 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:09:18 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:09:19 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:09:19 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:09:19 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:09:19 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:09:19 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:09:19 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:09:19 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:09:19 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:09:19 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:09:19 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:09:19 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:09:19 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:09:19 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:09:19 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:09:19 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:09:19 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:09:20 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:09:20 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:09:20 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:09:20 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:09:20 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:09:20 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:09:20 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:09:20 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:09:20 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:09:21 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:09:21 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:09:21 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:09:21 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:09:21 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:09:21 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:09:21 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:09:21 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:09:21 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:09:21 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:09:21 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:09:21 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:09:21 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:09:21 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:09:21 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:09:22 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:09:22 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:09:22 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:09:22 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:09:22 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:09:22 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:09:22 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:09:22 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:09:22 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:09:22 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:09:22 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:09:22 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:09:22 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:09:22 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:09:22 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:09:23 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:09:23 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:09:23 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:09:23 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:09:23 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:09:23 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:09:23 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:09:23 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:09:23 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:09:23 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:09:23 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:09:23 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:09:23 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:09:24 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:09:24 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:09:24 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:09:24 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:09:24 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:09:24 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:09:24 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:09:24 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:09:24 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:09:24 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:09:24 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:09:24 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:09:24 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:09:24 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:09:24 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:09:24 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:09:24 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:09:24 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:09:24 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:09:24 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:09:25 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:09:25 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:09:25 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:09:25 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:09:25 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:09:25 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:09:25 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:09:25 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:09:25 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:09:25 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:09:25 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:09:25 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:09:25 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:09:25 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:09:25 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:09:25 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:09:25 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:09:25 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:09:25 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:09:25 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:09:25 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:09:25 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:09:25 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:09:25 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:09:25 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:09:25 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:09:26 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:09:26 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:09:26 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:09:26 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:09:26 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:09:26 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:09:26 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:09:26 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:09:26 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:09:26 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:09:26 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:09:26 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:09:26 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:09:26 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:09:26 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:09:26 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:09:26 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:09:26 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:09:26 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:09:26 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:09:26 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:09:26 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:09:26 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:09:26 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:09:26 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:09:26 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:09:26 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:09:26 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:09:26 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:09:26 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:09:27 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:09:27 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:09:27 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:09:27 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:09:27 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:09:27 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:09:27 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:09:27 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:09:27 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:09:27 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:09:27 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:09:27 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:09:27 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:09:27 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:09:27 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:09:27 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:09:27 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:09:27 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:09:27 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:09:27 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:09:28 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:09:28 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:09:28 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:09:28 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:09:28 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:09:28 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:09:28 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:09:28 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:09:28 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:09:28 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:09:28 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:09:28 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:09:28 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:09:28 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:09:28 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:09:28 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:09:28 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:09:28 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:09:28 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:09:28 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:09:28 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:09:28 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:09:28 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:09:28 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:09:28 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:09:29 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:09:29 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:09:29 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:09:29 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:09:29 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:09:29 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:09:29 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:09:29 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:09:29 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:09:29 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:09:29 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:09:29 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:09:29 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:09:29 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:09:29 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:09:29 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:09:29 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:09:29 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:09:29 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:09:29 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:09:29 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:09:29 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:09:29 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:09:29 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:09:29 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:09:29 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:09:29 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:09:29 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:09:29 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:09:29 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:09:29 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:09:30 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:09:30 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:09:30 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:09:30 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:09:30 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:09:30 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:09:30 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:09:30 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:09:30 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:09:30 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:09:30 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:09:30 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:09:30 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:09:30 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:09:30 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:09:30 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:09:30 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:09:30 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:09:30 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:09:30 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:09:30 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:09:30 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:09:30 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:09:30 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:09:30 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:09:30 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:09:30 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:09:31 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:09:31 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:09:31 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:09:31 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:09:31 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:09:31 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:09:31 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:09:31 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:09:31 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:09:31 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:09:31 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:09:31 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:09:31 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:09:31 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:09:31 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:09:31 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:09:31 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:09:31 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:09:31 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:09:31 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:09:31 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:09:31 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:09:31 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:09:31 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:09:31 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:09:31 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:09:31 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:09:31 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:09:31 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:09:32 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:09:32 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:09:32 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:09:32 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:09:32 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:09:32 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:09:32 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:09:32 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:09:32 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:09:32 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:09:32 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:09:32 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:09:32 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:09:32 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:09:32 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:09:32 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:09:32 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:09:32 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:09:32 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:09:32 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:09:33 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:09:33 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:09:33 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:09:33 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:09:33 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:09:33 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:09:33 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:09:33 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:09:33 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:09:33 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:09:33 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:09:33 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:09:33 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:09:33 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:09:33 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:09:33 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:09:33 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:09:33 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:09:33 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:09:33 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:09:33 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:09:33 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:09:33 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:09:33 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:09:33 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:09:34 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:09:34 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:09:34 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:09:34 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:09:34 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:09:34 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:09:34 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:09:34 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:09:34 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:09:34 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:09:34 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:09:34 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:09:34 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:09:34 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:09:34 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:09:34 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:09:34 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:09:34 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:09:34 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:09:34 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:09:34 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:09:34 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:09:34 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:09:34 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:09:34 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:09:34 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:09:34 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:09:34 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:09:34 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:09:34 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:09:35 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:09:35 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:09:35 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:09:35 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:09:35 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:09:35 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:09:35 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:09:35 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:09:35 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:09:35 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:09:35 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:09:35 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:09:35 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:09:35 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:09:35 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:09:35 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:09:35 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:09:35 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:09:35 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:09:35 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:09:35 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:09:35 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:09:36 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:09:36 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:09:36 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:09:36 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:09:36 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:09:36 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:09:36 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:09:36 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:09:36 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:09:36 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:09:36 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:09:36 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:09:36 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:09:36 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:09:36 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:09:36 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:09:36 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:09:36 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:09:36 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:09:36 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:09:36 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:09:36 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:09:36 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:09:36 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:09:36 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:09:36 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:09:36 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:09:37 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:09:37 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:09:37 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:09:37 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:09:37 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:09:37 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:09:37 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:09:37 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:09:37 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:09:37 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:09:37 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:09:37 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:09:37 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:09:37 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:09:37 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:09:37 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:09:37 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:09:37 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:09:37 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:09:37 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:09:37 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:09:37 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:09:37 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:09:37 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:09:37 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:09:37 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:09:37 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:09:38 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:09:38 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:09:38 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:09:38 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:09:38 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:09:38 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:09:38 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:09:38 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:09:38 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:09:38 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:09:38 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:09:38 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:09:38 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:09:38 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:09:38 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:09:38 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:09:38 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:09:38 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:09:38 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:09:38 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:09:38 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:09:38 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:09:38 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:09:38 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:09:38 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:09:38 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:09:38 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:09:39 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:09:39 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:09:39 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:09:39 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:09:39 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:09:39 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:09:39 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:09:39 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:09:39 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:09:39 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:09:39 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:09:39 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:09:39 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:09:39 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:09:39 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:09:39 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:09:39 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:09:39 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:09:39 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:09:39 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:09:40 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:09:40 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:09:40 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:09:40 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:09:40 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:09:40 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:09:40 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:09:40 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:09:40 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:09:40 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:09:40 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:09:40 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:09:40 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:09:40 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:09:40 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:09:40 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:09:40 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:09:40 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:09:40 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:09:40 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:09:40 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:09:41 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:09:41 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:09:41 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:09:41 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:09:41 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:09:41 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:09:41 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:09:41 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:09:41 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:09:41 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:09:41 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:09:41 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:09:41 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:09:41 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:09:41 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:09:41 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:09:41 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:09:41 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:09:41 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:09:41 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:09:41 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:09:41 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:09:41 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:09:41 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:09:41 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:09:41 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:09:41 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:09:41 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:09:41 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:09:42 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:09:42 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:09:42 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:09:42 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:09:42 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:09:42 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:09:42 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:09:42 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:09:42 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:09:42 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:09:42 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:09:42 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:09:42 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:09:42 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:09:42 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:09:42 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:09:42 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:09:42 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:09:42 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:09:42 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:09:42 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:09:42 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:09:42 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:09:42 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:09:42 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:09:42 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:09:42 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:09:42 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:09:42 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:09:42 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:09:42 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:09:42 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:09:42 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:09:43 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:09:43 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:09:43 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:09:43 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:09:43 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:09:43 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:09:43 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:09:43 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:09:43 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:09:43 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:09:43 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:09:43 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:09:43 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:09:43 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:09:43 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:09:43 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:09:43 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:09:43 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:09:43 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:09:44 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:09:44 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:09:44 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:09:44 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:09:44 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:09:44 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:09:44 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:09:44 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:09:44 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:09:44 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:09:44 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:09:44 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:09:44 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:09:44 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:09:44 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:09:44 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:09:44 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:09:44 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:09:44 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:09:44 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:09:44 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:09:44 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:09:44 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:09:44 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:09:44 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:09:44 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:09:45 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:09:45 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:09:45 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:09:45 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:09:45 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:09:45 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:09:45 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:09:45 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:09:45 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:09:45 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:09:45 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:09:45 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:09:45 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:09:45 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:09:45 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:09:45 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:09:45 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:09:45 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:09:45 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:09:45 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:09:45 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:09:45 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:09:45 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:09:45 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:09:45 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:09:45 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:09:45 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:09:45 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:09:45 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:09:45 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:09:45 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:09:45 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:09:46 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:09:46 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:09:46 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:09:46 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:09:46 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:09:46 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:09:46 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:09:46 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:09:46 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:09:46 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:09:46 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:09:46 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:09:46 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:09:46 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:09:46 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:09:46 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:09:46 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:09:46 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:09:46 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:09:46 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:09:46 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:09:46 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:09:46 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:09:46 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:09:47 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:09:47 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:09:47 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:09:47 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:09:47 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:09:47 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:09:47 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:09:47 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:09:47 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:09:47 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:09:47 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:09:47 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:09:47 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:09:47 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:09:47 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:09:47 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:09:47 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:09:47 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:09:47 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:09:47 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:09:47 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:09:47 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:09:47 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:09:47 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:09:47 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:09:47 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:09:47 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:09:47 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:09:47 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:09:48 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:09:48 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:09:48 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:09:48 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:09:48 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:09:48 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:09:48 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:09:48 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:09:48 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:09:48 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:09:48 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:09:48 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:09:48 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:09:48 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:09:48 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:09:48 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:09:48 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:09:48 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:09:48 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:09:48 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:09:48 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:09:48 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:09:48 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:09:48 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:09:48 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:09:48 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:09:48 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:09:48 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:09:49 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:09:49 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:09:49 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:09:49 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:09:49 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:09:49 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:09:49 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:09:49 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:09:49 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:09:49 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:09:49 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:09:49 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:09:49 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:09:49 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:09:49 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:09:49 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:09:49 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:09:49 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:09:49 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:09:49 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:09:49 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:09:49 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:09:49 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:09:49 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:09:49 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:09:49 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:09:49 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:09:49 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:09:49 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:09:50 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:09:50 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:09:50 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:09:50 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:09:50 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:09:50 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:09:50 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:09:50 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:09:50 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:09:50 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:09:50 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:09:50 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:09:50 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:09:50 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:09:50 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:09:50 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:09:50 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:09:50 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:09:50 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:09:50 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:09:50 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:09:50 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:09:50 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:09:50 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:09:50 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:09:51 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:09:51 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:09:51 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:09:51 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:09:51 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:09:51 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:09:51 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:09:51 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:09:51 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:09:51 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:09:51 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:09:51 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:09:51 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:09:51 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:09:51 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:09:51 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:09:51 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:09:51 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:09:51 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:09:51 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:09:51 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:09:51 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:09:51 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:09:51 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:09:51 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:09:51 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:09:52 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:09:52 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:09:52 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:09:52 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:09:52 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:09:52 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:09:52 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:09:52 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:09:52 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:09:52 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:09:52 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:09:52 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:09:52 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:09:52 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:09:52 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:09:52 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:09:52 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:09:52 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:09:52 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:09:52 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:09:52 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:09:52 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:09:52 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:09:52 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:09:52 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:09:52 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:09:52 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:09:52 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:09:52 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:09:52 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:09:52 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:09:53 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:09:53 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:09:53 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:09:53 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:09:53 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:09:53 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:09:53 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:09:53 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:09:53 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:09:53 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:09:53 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:09:53 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:09:53 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:09:53 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:09:53 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:09:53 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:09:53 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:09:53 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:09:53 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:09:53 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:09:53 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:09:53 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:09:53 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:09:53 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:09:53 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:09:53 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:09:53 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:09:53 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:09:53 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:09:53 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:09:53 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:09:54 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:09:54 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:09:54 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:09:54 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:09:54 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:09:54 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:09:54 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:09:54 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:09:54 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:09:54 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:09:54 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:09:54 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:09:54 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:09:54 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:09:54 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:09:54 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:09:54 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:09:54 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:09:54 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:09:54 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:09:55 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:09:55 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:09:55 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:09:55 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:09:55 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:09:55 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:09:55 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:09:55 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:09:55 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:09:55 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:09:55 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:09:55 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:09:55 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:09:55 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:09:55 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:09:55 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:09:55 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:09:55 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:09:55 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:09:55 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:09:55 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:09:55 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:09:55 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:09:55 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:09:55 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:09:55 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:09:55 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:09:56 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:09:56 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:09:56 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:09:56 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:09:56 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:09:56 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:09:56 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:09:56 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:09:56 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:09:56 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:09:56 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:09:56 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:09:56 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:09:56 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:09:56 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:09:56 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:09:56 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:09:56 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:09:56 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:09:56 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:09:56 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:09:56 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:09:56 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:09:56 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:09:56 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:09:57 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:09:57 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:09:57 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:09:57 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:09:57 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:09:57 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:09:57 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:09:57 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:09:57 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:09:57 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:09:57 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:09:57 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:09:57 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:09:57 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:09:57 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:09:57 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:09:57 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:09:57 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:09:57 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:09:57 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:09:57 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:09:57 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:09:57 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:09:57 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:09:57 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:09:57 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:09:57 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:09:57 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:09:58 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:09:58 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:09:58 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:09:58 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:09:58 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:09:58 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:09:58 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:09:58 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:09:58 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:09:58 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:09:58 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:09:58 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:09:58 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:09:58 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:09:58 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:09:58 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:09:58 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:09:58 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:09:58 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:09:58 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:09:58 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:09:58 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:09:58 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:09:58 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:09:58 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:09:58 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:09:59 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:09:59 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:09:59 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:09:59 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:09:59 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:09:59 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:09:59 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:09:59 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:09:59 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:09:59 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:09:59 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:09:59 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:09:59 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:09:59 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:09:59 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:09:59 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:09:59 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:09:59 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:09:59 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:09:59 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:09:59 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:09:59 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:09:59 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:10:00 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:10:00 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:10:00 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:10:00 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:10:00 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:10:00 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:10:00 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:10:00 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:10:00 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:10:00 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:10:00 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:10:00 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:10:00 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:10:00 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:10:00 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:10:00 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:10:00 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:10:00 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:10:00 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:10:00 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:10:00 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:10:00 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:10:00 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:10:01 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:10:01 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:10:01 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:10:01 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:10:01 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:10:01 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:10:01 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:10:01 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:10:01 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:10:01 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:10:01 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:10:01 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:10:01 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:10:01 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:10:01 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:10:01 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:10:01 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:10:01 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:10:01 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:10:01 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:10:02 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:10:02 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:10:02 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:10:02 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:10:02 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:10:02 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:10:02 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:10:02 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:10:02 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:10:02 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:10:02 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:10:02 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:10:02 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:10:02 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:10:02 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:10:02 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:10:02 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:10:02 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:10:02 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:10:02 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:10:02 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:10:02 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:10:02 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:10:02 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:10:02 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:10:02 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:10:02 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:10:02 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:10:02 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:10:02 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:10:02 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:10:02 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:10:02 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:10:03 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:10:03 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:10:03 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:10:03 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:10:03 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:10:03 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:10:03 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:10:03 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:10:03 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:10:03 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:10:03 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:10:03 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:10:03 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:10:03 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:10:03 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:10:03 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:10:03 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:10:03 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:10:03 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:10:03 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:10:03 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:10:03 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:10:03 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:10:03 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:10:03 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:10:03 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:10:03 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:10:03 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:10:03 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:10:03 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:10:03 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:10:04 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:10:04 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:10:04 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:10:04 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:10:04 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:10:04 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:10:04 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:10:04 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:10:04 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:10:04 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:10:04 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:10:04 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:10:04 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:10:04 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:10:04 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:10:04 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:10:04 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:10:04 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:10:04 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:10:04 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:10:04 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:10:04 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:10:04 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:10:04 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:10:04 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:10:04 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:10:04 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:10:05 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:10:05 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:10:05 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:10:05 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:10:05 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:10:05 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:10:05 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:10:05 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:10:05 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:10:05 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:10:05 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:10:05 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:10:05 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:10:05 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:10:05 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:10:05 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:10:05 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:10:05 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:10:05 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:10:05 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:10:05 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:10:05 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:10:05 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:10:05 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:10:05 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:10:05 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:10:05 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:10:06 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:10:06 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:10:06 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:10:06 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:10:06 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:10:06 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:10:06 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:10:06 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:10:06 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:10:06 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:10:06 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:10:06 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:10:06 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:10:06 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:10:06 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:10:06 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:10:06 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:10:06 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:10:06 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:10:06 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:10:06 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:10:06 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:10:06 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:10:06 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:10:06 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:10:06 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:10:07 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:10:07 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:10:07 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:10:07 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:10:07 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:10:07 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:10:07 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:10:07 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:10:07 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:10:07 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:10:07 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:10:07 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:10:07 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:10:07 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:10:07 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:10:07 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:10:07 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:10:07 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:10:07 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:10:07 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:10:07 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:10:07 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:10:07 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:10:07 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:10:07 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:10:07 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:10:07 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:10:07 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:10:07 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:10:07 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:10:07 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:10:07 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:10:08 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:10:08 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:10:08 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:10:08 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:10:08 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:10:08 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:10:08 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:10:08 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:10:08 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:10:08 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:10:08 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:10:08 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:10:08 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:10:08 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:10:08 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:10:08 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:10:08 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:10:08 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:10:08 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:10:08 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:10:08 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:10:08 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:10:08 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:10:08 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:10:08 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:10:08 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:10:08 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:10:08 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:10:08 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:10:08 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:10:08 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:10:08 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:10:08 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:10:08 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:10:09 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:10:09 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:10:09 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:10:09 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:10:09 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:10:09 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:10:09 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:10:09 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:10:09 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:10:09 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:10:09 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:10:09 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:10:09 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:10:09 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:10:09 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:10:09 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:10:09 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:10:09 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:10:09 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:10:09 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:10:09 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:10:09 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:10:09 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:10:09 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:10:09 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:10:09 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:10:09 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:10:09 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:10:09 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:10:09 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:10:09 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:10:10 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:10:10 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:10:10 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:10:10 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:10:10 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:10:10 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:10:10 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:10:10 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:10:10 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:10:10 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:10:10 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:10:10 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:10:10 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:10:10 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:10:10 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:10:10 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:10:10 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:10:10 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:10:10 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:10:10 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:10:10 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:10:10 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:10:10 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:10:10 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:10:10 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:10:10 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:10:10 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:10:10 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:10:11 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:10:11 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:10:11 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:10:11 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:10:11 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:10:11 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:10:11 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:10:11 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:10:11 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:10:11 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:10:11 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:10:11 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:10:11 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:10:11 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:10:11 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:10:11 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:10:11 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:10:11 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:10:11 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:10:11 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:10:11 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:10:11 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:10:11 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:10:11 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:10:11 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:10:11 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:10:11 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:10:11 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:10:11 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:10:12 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:10:12 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:10:12 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:10:12 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:10:12 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:10:12 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:10:12 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:10:12 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:10:12 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:10:12 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:10:12 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:10:12 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:10:12 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:10:12 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:10:12 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:10:12 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:10:12 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:10:12 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:10:12 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:10:12 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:10:12 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:10:12 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:10:12 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:10:12 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:10:12 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:10:12 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:10:12 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:10:12 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:10:12 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:10:12 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:10:12 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:10:12 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:10:12 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:10:13 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:10:13 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:10:13 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:10:13 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:10:13 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:10:13 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:10:13 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:10:13 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:10:13 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:10:13 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:10:13 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:10:13 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:10:13 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:10:13 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:10:13 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:10:13 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:10:13 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:10:13 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:10:13 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:10:13 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:10:13 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:10:13 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:10:13 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:10:13 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:10:13 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:10:13 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:10:13 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:10:14 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:10:14 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:10:14 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:10:14 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:10:14 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:10:14 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:10:14 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:10:14 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:10:14 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:10:14 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:10:14 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:10:14 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:10:14 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:10:14 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:10:14 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:10:14 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:10:14 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:10:14 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:10:14 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:10:14 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:10:15 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:10:15 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:10:15 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:10:15 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:10:15 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:10:15 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:10:15 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:10:15 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:10:15 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:10:15 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:10:15 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:10:15 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:10:15 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:10:15 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:10:15 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:10:15 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:10:15 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:10:15 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:10:15 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:10:15 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:10:16 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:10:16 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:10:16 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:10:16 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:10:16 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:10:16 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:10:16 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:10:16 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:10:16 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:10:16 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:10:16 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:10:16 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:10:16 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:10:16 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:10:16 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:10:16 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:10:16 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:10:16 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:10:16 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:10:16 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:10:16 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:10:16 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:10:16 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:10:16 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:10:16 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:10:16 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:10:16 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:10:16 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:10:17 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:10:17 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:10:17 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:10:17 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:10:17 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:10:17 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:10:17 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:10:17 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:10:17 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:10:17 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:10:17 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:10:17 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:10:17 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:10:17 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:10:17 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:10:17 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:10:17 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:10:17 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:10:17 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:10:17 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:10:17 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:10:17 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:10:17 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:10:17 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:10:17 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:10:17 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:10:18 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:10:18 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:10:18 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:10:18 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:10:18 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:10:18 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:10:18 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:10:18 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:10:18 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:10:18 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:10:18 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:10:18 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:10:18 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:10:18 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:10:18 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:10:18 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:10:18 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:10:18 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:10:18 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:10:18 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:10:18 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:10:18 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:10:18 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:10:18 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:10:18 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:10:18 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:10:18 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:10:18 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:10:19 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:10:19 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:10:19 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:10:19 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:10:19 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:10:19 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:10:19 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:10:19 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:10:19 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:10:19 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:10:19 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:10:19 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:10:19 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:10:19 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:10:19 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:10:19 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:10:19 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:10:19 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:10:19 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:10:19 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:10:19 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:10:19 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:10:19 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:10:19 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:10:19 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:10:19 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:10:19 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:10:19 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:10:19 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:10:19 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:10:19 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:10:19 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:10:19 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:10:20 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:10:20 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:10:20 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:10:20 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:10:20 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:10:20 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:10:20 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:10:20 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:10:20 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:10:20 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:10:20 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:10:20 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:10:20 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:10:20 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:10:20 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:10:20 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:10:20 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:10:20 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:10:20 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:10:20 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:10:20 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:10:20 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:10:20 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:10:20 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:10:20 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:10:20 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:10:20 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:10:20 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:10:21 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:10:21 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:10:21 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:10:21 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:10:21 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:10:21 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:10:21 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:10:21 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:10:21 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:10:21 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:10:21 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:10:21 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:10:21 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:10:21 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:10:21 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:10:21 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:10:21 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:10:21 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:10:21 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:10:21 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:10:21 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:10:22 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:10:22 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:10:22 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:10:22 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:10:22 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:10:22 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:10:22 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:10:22 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:10:22 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:10:22 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:10:22 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:10:22 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:10:22 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:10:22 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:10:22 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:10:22 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:10:22 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:10:22 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:10:22 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:10:23 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:10:23 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:10:23 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:10:23 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:10:23 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:10:23 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:10:23 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:10:23 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:10:23 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:10:23 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:10:23 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:10:23 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:10:23 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:10:23 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:10:23 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:10:23 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:10:23 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:10:23 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:10:23 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:10:23 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:10:23 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:10:23 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:10:23 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:10:23 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:10:23 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:10:23 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:10:23 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:10:24 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:10:24 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:10:24 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:10:24 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:10:24 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:10:24 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:10:24 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:10:24 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:10:24 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:10:24 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:10:24 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:10:24 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:10:24 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:10:24 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:10:24 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:10:24 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:10:24 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:10:24 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:10:24 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:10:24 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:10:24 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:10:24 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:10:24 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:10:24 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:10:24 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:10:24 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:10:24 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:10:24 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:10:24 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:10:25 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:10:25 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:10:25 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:10:25 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:10:25 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:10:25 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:10:25 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:10:25 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:10:25 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:10:25 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:10:25 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:10:25 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:10:25 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:10:25 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:10:25 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:10:25 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:10:25 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:10:25 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:10:25 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:10:25 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:10:25 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:10:25 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:10:25 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:10:25 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:10:25 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:10:25 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:10:25 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:10:26 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:10:26 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:10:26 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:10:26 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:10:26 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:10:26 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:10:26 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:10:26 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:10:26 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:10:26 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:10:26 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:10:26 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:10:26 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:10:26 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:10:26 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:10:26 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:10:26 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:10:26 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:10:26 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:10:26 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:10:26 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:10:26 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:10:27 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:10:27 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:10:27 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:10:27 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:10:27 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:10:27 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:10:27 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:10:27 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:10:27 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:10:27 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:10:27 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:10:27 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:10:27 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:10:27 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:10:27 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:10:27 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:10:27 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:10:27 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:10:27 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:10:27 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:10:27 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:10:27 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:10:27 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:10:28 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:10:28 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:10:28 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:10:28 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:10:28 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:10:28 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:10:28 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:10:28 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:10:28 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:10:28 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:10:28 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:10:28 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:10:28 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:10:28 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:10:28 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:10:28 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:10:28 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:10:28 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:10:28 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:10:28 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:10:28 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:10:28 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:10:28 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:10:28 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:10:29 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:10:29 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:10:29 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:10:29 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:10:29 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:10:29 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:10:29 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:10:29 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:10:29 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:10:29 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:10:29 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:10:29 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:10:29 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:10:29 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:10:29 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:10:29 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:10:29 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:10:29 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:10:29 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:10:29 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:10:29 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:10:29 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:10:29 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:10:29 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:10:29 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:10:30 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:10:30 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:10:30 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:10:30 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:10:30 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:10:30 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:10:30 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:10:30 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:10:30 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:10:30 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:10:30 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:10:30 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:10:30 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:10:30 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:10:30 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:10:30 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:10:30 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:10:30 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:10:30 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:10:30 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:10:30 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:10:30 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:10:30 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:10:31 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:10:31 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:10:31 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:10:31 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:10:31 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:10:31 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:10:31 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:10:31 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:10:31 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:10:31 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:10:31 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:10:31 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:10:31 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:10:31 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:10:31 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:10:31 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:10:31 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:10:31 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:10:31 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:10:32 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:10:32 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:10:32 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:10:32 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:10:32 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:10:32 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:10:32 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:10:32 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:10:32 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:10:32 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:10:32 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:10:32 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:10:32 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:10:32 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:10:32 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:10:32 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:10:32 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:10:32 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:10:32 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:10:32 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:10:32 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:10:32 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:10:32 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:10:32 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:10:33 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:10:33 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:10:33 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:10:33 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:10:33 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:10:33 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:10:33 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:10:33 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:10:33 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:10:33 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:10:33 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:10:33 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:10:33 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:10:33 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:10:33 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:10:33 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:10:33 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:10:33 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:10:33 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:10:33 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:10:33 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:10:33 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:10:33 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:10:33 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:10:33 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:10:34 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:10:34 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:10:34 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:10:34 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:10:34 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:10:34 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:10:34 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:10:34 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:10:34 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:10:34 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:10:34 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:10:34 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:10:34 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:10:34 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:10:34 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:10:34 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:10:34 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:10:34 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:10:34 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:10:34 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:10:34 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:10:34 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:10:34 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:10:35 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:10:35 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:10:35 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:10:35 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:10:35 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:10:35 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:10:35 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:10:35 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:10:35 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:10:35 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:10:35 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:10:35 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:10:35 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:10:35 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:10:35 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:10:35 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:10:35 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:10:35 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:10:35 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:10:35 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:10:36 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:10:36 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:10:36 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:10:36 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:10:36 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:10:36 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:10:36 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:10:36 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:10:36 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:10:36 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:10:36 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:10:36 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:10:36 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:10:36 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:10:36 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:10:36 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:10:36 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:10:36 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:10:36 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:10:36 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:10:36 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:10:36 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:10:36 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:10:36 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:10:36 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:10:36 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:10:36 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:10:36 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:10:36 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:10:36 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:10:36 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:10:36 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:10:36 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:10:37 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:10:37 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:10:37 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:10:37 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:10:37 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:10:37 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:10:37 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:10:37 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:10:37 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:10:37 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:10:37 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:10:37 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:10:37 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:10:37 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:10:37 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:10:37 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:10:37 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:10:37 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:10:37 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:10:37 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:10:37 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:10:37 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:10:37 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:10:37 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:10:37 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:10:37 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:10:37 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:10:37 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:10:37 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:10:37 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:10:37 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:10:37 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:10:37 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:10:38 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:10:38 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:10:38 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:10:38 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:10:38 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:10:38 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:10:38 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:10:38 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:10:38 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:10:38 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:10:38 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:10:38 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:10:38 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:10:38 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:10:38 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:10:38 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:10:38 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:10:38 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:10:38 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:10:38 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:10:38 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:10:38 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:10:38 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:10:38 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:10:38 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:10:38 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:10:38 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:10:38 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:10:38 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:10:38 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:10:39 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:10:39 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:10:39 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:10:39 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:10:39 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:10:39 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:10:39 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:10:39 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:10:39 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:10:39 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:10:39 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:10:39 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:10:39 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:10:39 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:10:39 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:10:39 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:10:39 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:10:39 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:10:39 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:10:39 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:10:39 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:10:39 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:10:39 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:10:39 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:10:39 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:10:39 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:10:39 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:10:39 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:10:39 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:10:39 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:10:39 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:10:40 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:10:40 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:10:40 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:10:40 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:10:40 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:10:40 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:10:40 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:10:40 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:10:40 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:10:40 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:10:40 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:10:40 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:10:40 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:10:40 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:10:40 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:10:40 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:10:40 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:10:40 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:10:40 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:10:40 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:10:40 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:10:40 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:10:40 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:10:40 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:10:40 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:10:40 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:10:40 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:10:40 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:10:40 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:10:40 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:10:40 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:10:40 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:10:40 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:10:41 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:10:41 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:10:41 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:10:41 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:10:41 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:10:41 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:10:41 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:10:41 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:10:41 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:10:41 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:10:41 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:10:41 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:10:41 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:10:41 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:10:41 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:10:41 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:10:41 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:10:41 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:10:41 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:10:41 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:10:41 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:10:41 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:10:41 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:10:41 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:10:41 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:10:41 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:10:41 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:10:41 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:10:41 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:10:41 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:10:42 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:10:42 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:10:42 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:10:42 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:10:42 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:10:42 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:10:42 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:10:42 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:10:42 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:10:42 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:10:42 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:10:42 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:10:42 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:10:42 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:10:42 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:10:42 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:10:42 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:10:42 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:10:42 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:10:42 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:10:42 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:10:42 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:10:42 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:10:42 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:10:42 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:10:42 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:10:43 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:10:43 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:10:43 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:10:43 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:10:43 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:10:43 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:10:43 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:10:43 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:10:43 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:10:43 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:10:43 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:10:43 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:10:43 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:10:43 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:10:43 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:10:43 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:10:43 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:10:43 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:10:43 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:10:43 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:10:43 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:10:43 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:10:43 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:10:43 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:10:44 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:10:44 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:10:44 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:10:44 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:10:44 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:10:44 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:10:44 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:10:44 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:10:44 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:10:44 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:10:44 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:10:44 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:10:44 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:10:44 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:10:44 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:10:44 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:10:44 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:10:44 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:10:44 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:10:44 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:10:44 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:10:44 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:10:44 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:10:44 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:10:44 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:10:44 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:10:44 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:10:44 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:10:44 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:10:44 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:10:44 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:10:44 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:10:44 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:10:45 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:10:45 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:10:45 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:10:45 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:10:45 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:10:45 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:10:45 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:10:45 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:10:45 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:10:45 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:10:45 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:10:45 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:10:45 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:10:45 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:10:45 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:10:45 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:10:45 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:10:45 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:10:45 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:10:45 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:10:45 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:10:45 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:10:45 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:10:45 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:10:45 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:10:45 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:10:45 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:10:45 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:10:45 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:10:45 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:10:45 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:10:45 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:10:45 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:10:46 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:10:46 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:10:46 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:10:46 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:10:46 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:10:46 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:10:46 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:10:46 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:10:46 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:10:46 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:10:46 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:10:46 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:10:46 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:10:46 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:10:46 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:10:46 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:10:46 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:10:46 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:10:46 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:10:46 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:10:46 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:10:46 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:10:46 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:10:46 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:10:47 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:10:47 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:10:47 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:10:47 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:10:47 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:10:47 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:10:47 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:10:47 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:10:47 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:10:47 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:10:47 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:10:47 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:10:47 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:10:47 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:10:47 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:10:47 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:10:47 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:10:47 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:10:47 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:10:47 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:10:47 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:10:47 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:10:47 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:10:47 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:10:47 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:10:47 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:10:47 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:10:47 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:10:47 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:10:47 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:10:48 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:10:48 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:10:48 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:10:48 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:10:48 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:10:48 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:10:48 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:10:48 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:10:48 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:10:48 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:10:48 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:10:48 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:10:48 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:10:48 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:10:48 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:10:48 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:10:48 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:10:48 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:10:48 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:10:48 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:10:48 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:10:48 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:10:48 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:10:48 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:10:48 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:10:48 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:10:48 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:10:48 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:10:48 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:10:49 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:10:49 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:10:49 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:10:49 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:10:49 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:10:49 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:10:49 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:10:49 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:10:49 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:10:49 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:10:49 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:10:49 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:10:49 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:10:49 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:10:49 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:10:49 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:10:49 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:10:49 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:10:49 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:10:49 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:10:49 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:10:49 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:10:49 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:10:49 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:10:49 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:10:49 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:10:49 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:10:49 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:10:49 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:10:49 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:10:49 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:10:49 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:10:50 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:10:50 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:10:50 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:10:50 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:10:50 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:10:50 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:10:50 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:10:50 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:10:50 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:10:50 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:10:50 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:10:50 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:10:50 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:10:50 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:10:50 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:10:50 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:10:50 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:10:50 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:10:50 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:10:50 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:10:50 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:10:50 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:10:50 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:10:50 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:10:50 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:10:50 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:10:50 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:10:50 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:10:50 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:10:50 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:10:51 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:10:51 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:10:51 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:10:51 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:10:51 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:10:51 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:10:51 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:10:51 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:10:51 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:10:51 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:10:51 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:10:51 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:10:51 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:10:51 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:10:51 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:10:51 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:10:51 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:10:51 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:10:51 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:10:51 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:10:51 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:10:51 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:10:51 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:10:51 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:10:51 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:10:51 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:10:51 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:10:51 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:10:51 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:10:52 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:10:52 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:10:52 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:10:52 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:10:52 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:10:52 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:10:52 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:10:52 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:10:52 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:10:52 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:10:52 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:10:52 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:10:52 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:10:52 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:10:52 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:10:52 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:10:52 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:10:52 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:10:52 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:10:52 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:10:52 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:10:52 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:10:52 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:10:52 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:10:52 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:10:52 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:10:52 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:10:52 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:10:52 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:10:53 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:10:53 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:10:53 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:10:53 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:10:53 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:10:53 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:10:53 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:10:53 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:10:53 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:10:53 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:10:53 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:10:53 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:10:53 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:10:53 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:10:53 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:10:53 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:10:53 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:10:53 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:10:53 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:10:53 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:10:53 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:10:53 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:10:53 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:10:53 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:10:53 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:10:53 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:10:53 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:10:53 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:10:53 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:10:53 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:10:54 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:10:54 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:10:54 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:10:54 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:10:54 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:10:54 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:10:54 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:10:54 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:10:54 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:10:54 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:10:54 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:10:54 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:10:54 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:10:54 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:10:54 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:10:54 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:10:54 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:10:54 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:10:54 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:10:54 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:10:54 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:10:54 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:10:54 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:10:54 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:10:54 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:10:54 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:10:54 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:10:54 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:10:54 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:10:54 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:10:54 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:10:54 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:10:54 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:10:55 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:10:55 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:10:55 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:10:55 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:10:55 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:10:55 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:10:55 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:10:55 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:10:55 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:10:55 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:10:55 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:10:55 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:10:55 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:10:55 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:10:55 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:10:55 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:10:55 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:10:55 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:10:55 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:10:55 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:10:55 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:10:55 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:10:55 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:10:56 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:10:56 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:10:56 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:10:56 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:10:56 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:10:56 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:10:56 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:10:56 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:10:56 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:10:56 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:10:56 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:10:56 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:10:56 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:10:56 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:10:56 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:10:56 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:10:56 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:10:56 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:10:56 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:10:56 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:10:56 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:10:56 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:10:56 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:10:56 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:10:56 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:10:56 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:10:56 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:10:56 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:10:56 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:10:56 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:10:56 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:10:56 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:10:56 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:10:57 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:10:57 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:10:57 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:10:57 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:10:57 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:10:57 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:10:57 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:10:57 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:10:57 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:10:57 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:10:57 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:10:57 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:10:57 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:10:57 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:10:57 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:10:57 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:10:57 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:10:57 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:10:57 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:10:57 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:10:57 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:10:57 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:10:57 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:10:57 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:10:57 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:10:57 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:10:57 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:10:57 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:10:57 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:10:57 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:10:58 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:10:58 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:10:58 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:10:58 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:10:58 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:10:58 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:10:58 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:10:58 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:10:58 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:10:58 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:10:58 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:10:58 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:10:58 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:10:58 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:10:58 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:10:58 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:10:58 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:10:58 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:10:58 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:10:58 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:10:58 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:10:58 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:10:58 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:10:58 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:10:58 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:10:58 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:10:58 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:10:58 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:10:58 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:10:58 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:10:59 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:10:59 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:10:59 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:10:59 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:10:59 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:10:59 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:10:59 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:10:59 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:10:59 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:10:59 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:10:59 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:10:59 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:10:59 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:10:59 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:10:59 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:10:59 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:10:59 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:10:59 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:10:59 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:10:59 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:10:59 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:10:59 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:10:59 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:10:59 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:10:59 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:10:59 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:10:59 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:10:59 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:10:59 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:10:59 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:10:59 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:10:59 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:10:59 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:11:00 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:11:00 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:11:00 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:11:00 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:11:00 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:11:00 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:11:00 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:11:00 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:11:00 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:11:00 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:11:00 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:11:00 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:11:00 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:11:00 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:11:00 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:11:00 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:11:00 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:11:00 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:11:00 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:11:00 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:11:00 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:11:00 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:11:00 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:11:00 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:11:00 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:11:00 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:11:00 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:11:00 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:11:00 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:11:00 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:11:01 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:11:01 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:11:01 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:11:01 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:11:01 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:11:01 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:11:01 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:11:01 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:11:01 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:11:01 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:11:01 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:11:01 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:11:01 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:11:01 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:11:01 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:11:01 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:11:01 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:11:01 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:11:01 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:11:01 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:11:01 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:11:01 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:11:01 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:11:01 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:11:01 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:11:01 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:11:01 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:11:01 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:11:02 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:11:02 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:11:02 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:11:02 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:11:02 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:11:02 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:11:02 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:11:02 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:11:02 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:11:02 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:11:02 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:11:02 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:11:02 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:11:02 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:11:02 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:11:02 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:11:02 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:11:02 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:11:02 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:11:02 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:11:02 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:11:02 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:11:02 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:11:02 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:11:02 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:11:02 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:11:02 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:11:02 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:11:02 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:11:02 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:11:02 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:11:02 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:11:02 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:11:03 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:11:03 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:11:03 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:11:03 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:11:03 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:11:03 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:11:03 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:11:03 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:11:03 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:11:03 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:11:03 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:11:03 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:11:03 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:11:03 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:11:03 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:11:03 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:11:03 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:11:03 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:11:03 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:11:03 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:11:03 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:11:03 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:11:03 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:11:03 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:11:03 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:11:03 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:11:03 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:11:03 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:11:03 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:11:03 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:11:04 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:11:04 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:11:04 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:11:04 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:11:04 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:11:04 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:11:04 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:11:04 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:11:04 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:11:04 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:11:04 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:11:04 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:11:04 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:11:04 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:11:04 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:11:04 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:11:04 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:11:04 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:11:04 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:11:04 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:11:04 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:11:04 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:11:04 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:11:04 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:11:04 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:11:04 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:11:04 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:11:04 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:11:04 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:11:04 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:11:05 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:11:05 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:11:05 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:11:05 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:11:05 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:11:05 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:11:05 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:11:05 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:11:05 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:11:05 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:11:05 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:11:05 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:11:05 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:11:05 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:11:05 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:11:05 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:11:05 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:11:05 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:11:05 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:11:05 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:11:05 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:11:05 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:11:05 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:11:05 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:11:05 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:11:05 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:11:05 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:11:05 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:11:05 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:11:05 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:11:05 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:11:05 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:11:06 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:11:06 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:11:06 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:11:06 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:11:06 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:11:06 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:11:06 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:11:06 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:11:06 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:11:06 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:11:06 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:11:06 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:11:06 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:11:06 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:11:06 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:11:06 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:11:06 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:11:06 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:11:06 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:11:06 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:11:06 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:11:06 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:11:06 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:11:06 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:11:07 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:11:07 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:11:07 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:11:07 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:11:07 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:11:07 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:11:07 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:11:07 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:11:07 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:11:08 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:11:08 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:11:08 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:11:08 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:11:08 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:11:08 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:11:08 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:11:08 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:11:08 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:11:08 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:11:08 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:11:08 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:11:08 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:11:08 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:11:08 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:11:08 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:11:08 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:11:08 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:11:08 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:11:08 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:11:08 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:11:08 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:11:08 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:11:08 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:11:08 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:11:08 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:11:08 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:11:08 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:11:08 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:11:09 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:11:09 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:11:09 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:11:09 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:11:09 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:11:09 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:11:09 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:11:09 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:11:09 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:11:09 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:11:09 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:11:09 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:11:09 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:11:09 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:11:09 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:11:09 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:11:09 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:11:09 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:11:09 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:11:09 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:11:09 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:11:09 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:11:09 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:11:09 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:11:09 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:11:09 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:11:09 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:11:09 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:11:09 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:11:09 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:11:10 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:11:10 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:11:10 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:11:10 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:11:10 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:11:10 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:11:10 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:11:10 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:11:10 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:11:10 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:11:10 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:11:10 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:11:10 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:11:10 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:11:10 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:11:10 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:11:10 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:11:10 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:11:10 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:11:10 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:11:10 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:11:10 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:11:10 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:11:10 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:11:10 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:11:10 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:11:10 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:11:10 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:11:11 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:11:11 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:11:11 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:11:11 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:11:11 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:11:11 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:11:11 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:11:11 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:11:11 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:11:11 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:11:11 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:11:11 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:11:11 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:11:11 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:11:11 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:11:11 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:11:11 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:11:11 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:11:11 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:11:11 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:11:11 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:11:11 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:11:11 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:11:11 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:11:11 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:11:11 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:11:11 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:11:12 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:11:12 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:11:12 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:11:12 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:11:12 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:11:12 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:11:12 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:11:12 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:11:12 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:11:12 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:11:12 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:11:12 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:11:12 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:11:12 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:11:12 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:11:12 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:11:12 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:11:12 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:11:12 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:11:12 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:11:12 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:11:12 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:11:12 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:11:12 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:11:13 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:11:13 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:11:13 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:11:13 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:11:13 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:11:13 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:11:13 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:11:13 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:11:13 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:11:13 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:11:13 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:11:13 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:11:13 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:11:13 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:11:13 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:11:13 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:11:13 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:11:13 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:11:13 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:11:13 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:11:13 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:11:13 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:11:13 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:11:13 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:11:14 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:11:14 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:11:14 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:11:14 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:11:14 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:11:14 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:11:14 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:11:14 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:11:14 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:11:14 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:11:14 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:11:14 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:11:14 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:11:14 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:11:14 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:11:14 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:11:14 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:11:14 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:11:14 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:11:15 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:11:15 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:11:15 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:11:15 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:11:15 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:11:15 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:11:15 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:11:15 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:11:15 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:11:15 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:11:15 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:11:15 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:11:15 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:11:15 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:11:15 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:11:15 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:11:15 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:11:15 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:11:15 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:11:15 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:11:15 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:11:15 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:11:15 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:11:15 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:11:15 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:11:15 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:11:15 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:11:15 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:11:16 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:11:16 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:11:16 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:11:16 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:11:16 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:11:16 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:11:16 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:11:16 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:11:16 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:11:16 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:11:16 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:11:16 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:11:16 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:11:16 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:11:16 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:11:16 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:11:16 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:11:16 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:11:16 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:11:16 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:11:16 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:11:16 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:11:16 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:11:16 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:11:16 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:11:17 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:11:17 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:11:17 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:11:17 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:11:17 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:11:17 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:11:17 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:11:17 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:11:17 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:11:17 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:11:17 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:11:17 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:11:17 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:11:17 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:11:17 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:11:17 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:11:17 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:11:17 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:11:17 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:11:17 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:11:17 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:11:17 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:11:17 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:11:17 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:11:17 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:11:18 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:11:18 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:11:18 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:11:18 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:11:18 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:11:18 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:11:18 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:11:18 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:11:18 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:11:18 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:11:18 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:11:18 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:11:18 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:11:18 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:11:18 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:11:18 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:11:18 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:11:18 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:11:18 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:11:18 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:11:18 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:11:18 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:11:18 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:11:18 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:11:18 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:11:18 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:11:18 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:11:19 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:11:19 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:11:19 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:11:19 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:11:19 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:11:19 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:11:19 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:11:19 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:11:19 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:11:19 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:11:19 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:11:19 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:11:19 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:11:19 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:11:19 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:11:19 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:11:19 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:11:19 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:11:19 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:11:19 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:11:19 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:11:19 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:11:19 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:11:19 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:11:19 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:11:19 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:11:19 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:11:19 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:11:19 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:11:19 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:11:20 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:11:20 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:11:20 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:11:20 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:11:20 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:11:20 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:11:20 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:11:20 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:11:20 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:11:20 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:11:20 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:11:20 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:11:20 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:11:20 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:11:20 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:11:20 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:11:20 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:11:20 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:11:20 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:11:20 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:11:20 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:11:20 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:11:20 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:11:20 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:11:20 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:11:20 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:11:20 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:11:20 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:11:21 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:11:21 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:11:21 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:11:21 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:11:21 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:11:21 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:11:21 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:11:21 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:11:21 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:11:21 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:11:21 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:11:21 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:11:21 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:11:21 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:11:21 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:11:21 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:11:21 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:11:21 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:11:21 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:11:21 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:11:21 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:11:21 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:11:21 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:11:21 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:11:21 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:11:21 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:11:21 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:11:21 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:11:21 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:11:22 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:11:22 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:11:22 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:11:22 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:11:22 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:11:22 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:11:22 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:11:22 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:11:22 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:11:22 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:11:22 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:11:22 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:11:22 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:11:22 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:11:22 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:11:22 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:11:22 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:11:22 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:11:22 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:11:22 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:11:22 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:11:22 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:11:22 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:11:22 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:11:22 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:11:22 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:11:22 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:11:22 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:11:22 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:11:22 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:11:23 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:11:23 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:11:23 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:11:23 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:11:23 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:11:23 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:11:23 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:11:23 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:11:23 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:11:23 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:11:23 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:11:23 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:11:23 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:11:23 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:11:23 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:11:23 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:11:23 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:11:23 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:11:23 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:11:23 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:11:23 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:11:23 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:11:23 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:11:23 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:11:23 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:11:23 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:11:23 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:11:24 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:11:24 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:11:24 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:11:24 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:11:24 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:11:24 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:11:24 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:11:24 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:11:24 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:11:24 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:11:24 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:11:24 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:11:24 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:11:24 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:11:24 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:11:24 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:11:24 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:11:24 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:11:24 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:11:24 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:11:24 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:11:24 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:11:24 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:11:24 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:11:24 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:11:24 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:11:25 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:11:25 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:11:25 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:11:25 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:11:25 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:11:25 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:11:25 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:11:25 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:11:25 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:11:25 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:11:25 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:11:25 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:11:25 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:11:25 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:11:25 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:11:25 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:11:25 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:11:25 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:11:25 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:11:25 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:11:25 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:11:25 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:11:25 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:11:25 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:11:25 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:11:25 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:11:25 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:11:25 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:11:25 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:11:26 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:11:26 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:11:26 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:11:26 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:11:26 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:11:26 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:11:26 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:11:26 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:11:26 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:11:26 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:11:26 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:11:26 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:11:26 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:11:26 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:11:26 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:11:26 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:11:26 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:11:26 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:11:26 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:11:26 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:11:26 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:11:26 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:11:26 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:11:26 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:11:26 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:11:26 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:11:26 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:11:26 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:11:26 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:11:26 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:11:27 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:11:27 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:11:27 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:11:27 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:11:27 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:11:27 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:11:27 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:11:27 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:11:27 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:11:27 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:11:27 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:11:27 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:11:27 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:11:27 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:11:27 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:11:27 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:11:27 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:11:27 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:11:27 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:11:27 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:11:27 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:11:27 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:11:27 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:11:28 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:11:28 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:11:28 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:11:28 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:11:28 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:11:28 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:11:28 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:11:28 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:11:28 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:11:28 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:11:28 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:11:28 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:11:28 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:11:28 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:11:28 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:11:28 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:11:28 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:11:28 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:11:28 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:11:28 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:11:28 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:11:28 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:11:28 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:11:28 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:11:28 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:11:28 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:11:28 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:11:29 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:11:29 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:11:29 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:11:29 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:11:29 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:11:29 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:11:29 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:11:29 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:11:29 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:11:29 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:11:29 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:11:29 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:11:29 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:11:29 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:11:29 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:11:29 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:11:29 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:11:29 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:11:29 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:11:29 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:11:29 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:11:29 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:11:29 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:11:29 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:11:29 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:11:29 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:11:29 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:11:29 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:11:29 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:11:30 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:11:30 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:11:30 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:11:30 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:11:30 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:11:30 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:11:30 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:11:30 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:11:30 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:11:30 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:11:30 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:11:30 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:11:30 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:11:30 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:11:30 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:11:30 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:11:30 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:11:31 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:11:31 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:11:31 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:11:31 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:11:31 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:11:31 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:11:31 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:11:31 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:11:31 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:11:31 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:11:31 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:11:31 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:11:31 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:11:31 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:11:31 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:11:31 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:11:31 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:11:31 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:11:31 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:11:31 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:11:31 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:11:31 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:11:31 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:11:31 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:11:32 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:11:32 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:11:32 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:11:32 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:11:32 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:11:32 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:11:32 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:11:32 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:11:32 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:11:32 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:11:32 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:11:32 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:11:33 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:11:33 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:11:33 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:11:33 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:11:34 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:11:34 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:11:34 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:11:34 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:11:34 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:11:34 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:11:34 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:11:34 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:11:34 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:11:34 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:11:34 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:11:34 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:11:34 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:11:34 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:11:35 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:11:35 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:11:35 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:11:35 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:11:35 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:11:35 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:11:35 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:11:35 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:11:35 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:11:35 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:11:35 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:11:35 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:11:35 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:11:35 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:11:35 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:11:35 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:11:35 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:11:35 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:11:35 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:11:36 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:11:36 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:11:36 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:11:36 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:11:36 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:11:36 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:11:36 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:11:36 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:11:36 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:11:36 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:11:36 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:11:36 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:11:36 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:11:36 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:11:36 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:11:36 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:11:37 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:11:37 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:11:37 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:11:37 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:11:37 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:11:37 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:11:37 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:11:37 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:11:37 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:11:37 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:11:37 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:11:37 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:11:37 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:11:37 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:11:37 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:11:37 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:11:37 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:11:37 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:11:37 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:11:37 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:11:37 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:11:37 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:11:37 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:11:37 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:11:38 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:11:38 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:11:38 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:11:38 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:11:38 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:11:38 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:11:38 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:11:38 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:11:38 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:11:38 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:11:38 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:11:38 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:11:38 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:11:38 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:11:38 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:11:38 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:11:38 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:11:38 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:11:38 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:11:38 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:11:38 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:11:38 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:11:38 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:11:38 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:11:38 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:11:38 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:11:39 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:11:39 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:11:39 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:11:39 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:11:39 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:11:39 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:11:39 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:11:39 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:11:39 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:11:39 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:11:39 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:11:39 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:11:39 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:11:39 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:11:39 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:11:39 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:11:39 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:11:39 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:11:39 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:11:39 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:11:39 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:11:39 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:11:39 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:11:39 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:11:39 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:11:39 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:11:39 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:11:39 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:11:39 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:11:39 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:11:40 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:11:40 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:11:40 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:11:40 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:11:40 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:11:40 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:11:40 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:11:40 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:11:40 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:11:40 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:11:40 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:11:40 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:11:40 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:11:40 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:11:40 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:11:40 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:11:40 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:11:40 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:11:40 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:11:40 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:11:40 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:11:40 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:11:41 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:11:41 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:11:41 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:11:41 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:11:41 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:11:41 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:11:41 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:11:41 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:11:41 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:11:41 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:11:42 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:11:43 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:11:43 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:11:43 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:11:43 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:11:44 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:11:44 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:11:44 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:11:45 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:11:45 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:11:45 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:11:45 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:11:45 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:11:45 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:11:45 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:11:45 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:11:46 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:11:46 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:11:46 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:11:46 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:11:46 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:11:46 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:11:46 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:11:46 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:11:46 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:11:47 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:11:47 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:11:47 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:11:47 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:11:47 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:11:47 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:11:47 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:11:47 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:11:47 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:11:47 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:11:47 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:11:47 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:11:47 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:11:48 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:11:48 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:11:48 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:11:48 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:11:48 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:11:48 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:11:48 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:11:48 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:11:48 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:11:48 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:11:48 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:11:48 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:11:48 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:11:48 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:11:48 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:11:48 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:11:48 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:11:49 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:11:49 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:11:49 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:11:49 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:11:49 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:11:49 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:11:50 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:11:50 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:11:50 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:11:50 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:11:50 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:11:50 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:11:50 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:11:50 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:11:50 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:11:51 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:11:51 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:11:51 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:11:51 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:11:51 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:11:51 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:11:51 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:11:52 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:11:52 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:11:52 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:11:52 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:11:52 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:11:52 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:11:52 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:11:53 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:11:53 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:11:53 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:11:53 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:11:53 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:11:53 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:11:54 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:11:54 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:11:54 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:11:54 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:11:54 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:11:54 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:11:54 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:11:54 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:11:54 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:11:55 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:11:55 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:11:55 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:11:55 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:11:55 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:11:55 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:11:55 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:11:55 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:11:55 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:11:56 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:11:56 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:11:56 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:11:56 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:11:56 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:11:56 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:11:56 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:11:56 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:11:56 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:11:56 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:11:56 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:11:56 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:11:56 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:11:56 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:11:57 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:11:57 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:11:57 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:11:57 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:11:57 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:11:57 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:11:57 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:11:57 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:11:57 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:11:57 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:11:57 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:11:57 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:11:57 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:11:57 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:11:57 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:11:57 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:11:58 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:11:58 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:11:58 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:11:58 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:11:58 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:11:58 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:11:58 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:11:58 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:11:58 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:11:58 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:11:58 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:11:58 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:11:58 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:11:58 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:11:58 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:11:58 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:11:58 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:11:59 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:11:59 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:11:59 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:11:59 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:11:59 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:11:59 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:11:59 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:11:59 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:11:59 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:11:59 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:12:00 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:12:00 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:12:00 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:12:00 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:12:00 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:12:00 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:12:00 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:12:00 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:12:00 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:12:00 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:12:00 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:12:00 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:12:00 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:12:00 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:12:00 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:12:00 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:12:01 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:12:01 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:12:01 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:12:01 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:12:01 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:12:01 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:12:01 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:12:01 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:12:01 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:12:01 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:12:01 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:12:01 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:12:01 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:12:01 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:12:01 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:12:01 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:12:01 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:12:01 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:12:02 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:12:02 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:12:02 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:12:02 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:12:02 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:12:02 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:12:02 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:12:02 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:12:02 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:12:02 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:12:02 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:12:02 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:12:02 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:12:02 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:12:02 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:12:02 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:12:02 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:12:03 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:12:03 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:12:03 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:12:03 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:12:03 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:12:03 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:12:03 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:12:03 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:12:03 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:12:03 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:12:03 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:12:03 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:12:03 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:12:03 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:12:04 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:12:04 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:12:04 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:12:04 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:12:04 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:12:04 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:12:04 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:12:04 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:12:04 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:12:04 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:12:04 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:12:04 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:12:04 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:12:04 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:12:05 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:12:05 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:12:05 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:12:05 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:12:05 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:12:05 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:12:05 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:12:05 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:12:05 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:12:05 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:12:05 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:12:05 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:12:05 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:12:05 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:12:06 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:12:06 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:12:06 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:12:06 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:12:06 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:12:06 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:12:06 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:12:06 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:12:06 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:12:06 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:12:06 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:12:06 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:12:06 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:12:06 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:12:06 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:12:06 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:12:06 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:12:06 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:12:06 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:12:06 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:12:06 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:12:06 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:12:06 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:12:07 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:12:07 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:12:07 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:12:07 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:12:07 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:12:07 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:12:07 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:12:07 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:12:07 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:12:07 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:12:07 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:12:07 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:12:07 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:12:07 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:12:07 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:12:07 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:12:07 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:12:07 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:12:07 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:12:07 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:12:07 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:12:07 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:12:07 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:12:07 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:12:07 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:12:07 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:12:08 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:12:08 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:12:08 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:12:08 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:12:08 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:12:08 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:12:08 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:12:08 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:12:08 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:12:08 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:12:08 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:12:08 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:12:08 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:12:08 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:12:08 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:12:08 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:12:08 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:12:08 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:12:08 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:12:08 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:12:08 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:12:09 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:12:09 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:12:09 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:12:09 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:12:09 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:12:09 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:12:09 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:12:09 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:12:09 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:12:09 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:12:09 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:12:09 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:12:10 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:12:10 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:12:10 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:12:10 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:12:10 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:12:10 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:12:10 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:12:10 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:12:10 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:12:11 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:12:11 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:12:11 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:12:11 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:12:11 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:12:11 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:12:11 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:12:11 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:12:11 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:12:12 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:12:12 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:12:12 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:12:12 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:12:12 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:12:12 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:12:13 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:12:13 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:12:13 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:12:13 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:12:13 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:12:13 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:12:13 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:12:14 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:12:14 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:12:14 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:12:14 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:12:14 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:12:14 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:12:14 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:12:14 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:12:14 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:12:14 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:12:15 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:12:15 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:12:15 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:12:15 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:12:15 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:12:15 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:12:15 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:12:15 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:12:15 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:12:15 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:12:15 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:12:15 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:12:15 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:12:15 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:12:15 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:12:15 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:12:15 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:12:15 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:12:16 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:12:16 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:12:16 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:12:16 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:12:16 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:12:16 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:12:16 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:12:16 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:12:16 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:12:16 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:12:16 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:12:16 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:12:16 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:12:17 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:12:17 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:12:17 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:12:17 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:12:17 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:12:17 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:12:17 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:12:17 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:12:17 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:12:17 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:12:18 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:12:18 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:12:18 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:12:18 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:12:18 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:12:18 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:12:18 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:12:18 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:12:18 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:12:18 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:12:18 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:12:18 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:12:18 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:12:18 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:12:18 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:12:18 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:12:18 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:12:18 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:12:18 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:12:18 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:12:19 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:12:19 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:12:19 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:12:19 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:12:19 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:12:19 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:12:19 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:12:19 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:12:19 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:12:19 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:12:19 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:12:19 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:12:19 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:12:20 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:12:20 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:12:20 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:12:20 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:12:20 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:12:20 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:12:20 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:12:20 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:12:20 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:12:20 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:12:20 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:12:20 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:12:20 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:12:20 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:12:20 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:12:20 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:12:20 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:12:20 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:12:20 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:12:20 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:12:21 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:12:21 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:12:21 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:12:21 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:12:21 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:12:21 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:12:21 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:12:21 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:12:21 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:12:21 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:12:21 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:12:21 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:12:21 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:12:21 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:12:22 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:12:22 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:12:22 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:12:22 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:12:22 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:12:22 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:12:22 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:12:22 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:12:22 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:12:23 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:12:23 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:12:23 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:12:23 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:12:23 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:12:23 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:12:23 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:12:24 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:12:24 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:12:24 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:12:24 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:12:24 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:12:24 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:12:24 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:12:24 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:12:24 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:12:24 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:12:24 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:12:24 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:12:25 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:12:25 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:12:25 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:12:25 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:12:25 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:12:25 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:12:26 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:12:26 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:12:26 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:12:26 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:12:26 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:12:26 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:12:26 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:12:26 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:12:26 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:12:26 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:12:26 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:12:27 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:12:27 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:12:27 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:12:27 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:12:27 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:12:27 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:12:27 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:12:27 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:12:27 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:12:27 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:12:27 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:12:27 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:12:28 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:12:28 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:12:28 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:12:28 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:12:28 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:12:28 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:12:28 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:12:28 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:12:28 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:12:28 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:12:28 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:12:28 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:12:28 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:12:28 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:12:28 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:12:28 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:12:28 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:12:28 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:12:29 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:12:29 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:12:29 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:12:29 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:12:29 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:12:29 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:12:29 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:12:29 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:12:29 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:12:29 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:12:29 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:12:29 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:12:29 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:12:29 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:12:29 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:12:30 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:12:30 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:12:30 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:12:30 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:12:30 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:12:30 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:12:30 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:12:30 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:12:30 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:12:30 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:12:30 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:12:30 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:12:30 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:12:30 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:12:30 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:12:31 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:12:31 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:12:31 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:12:31 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:12:31 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:12:31 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:12:31 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:12:31 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:12:32 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:12:32 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:12:32 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:12:32 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:12:32 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:12:32 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:12:32 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:12:32 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:12:32 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:12:33 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:12:33 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:12:33 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:12:33 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:12:33 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:12:33 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:12:33 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:12:33 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:12:33 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:12:33 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:12:33 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:12:33 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:12:33 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:12:33 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:12:33 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:12:33 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:12:33 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:12:34 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:12:34 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:12:34 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:12:34 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:12:34 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:12:34 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:12:34 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:12:34 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:12:34 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:12:34 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:12:34 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:12:35 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:12:35 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:12:35 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:12:35 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:12:35 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:12:35 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:12:35 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:12:35 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:12:35 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:12:35 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:12:35 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:12:35 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:12:36 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:12:36 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:12:36 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:12:36 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:12:36 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:12:36 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:12:36 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:12:36 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:12:36 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:12:36 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:12:36 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:12:36 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:12:36 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:12:36 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:12:36 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:12:37 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:12:37 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:12:37 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:12:37 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:12:37 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:12:37 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:12:37 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:12:37 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:12:37 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:12:37 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:12:37 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:12:37 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:12:38 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:12:38 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:12:38 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:12:38 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:12:38 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:12:38 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:12:38 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:12:38 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:12:38 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:12:38 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:12:39 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:12:39 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:12:39 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:12:39 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:12:39 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:12:39 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:12:39 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:12:39 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:12:40 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:12:40 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:12:40 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:12:40 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:12:40 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:12:40 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:12:40 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:12:40 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:12:41 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:12:41 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:12:41 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:12:41 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:12:41 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:12:41 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:12:42 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:12:42 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:12:42 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:12:42 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:12:42 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:12:43 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:12:43 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:12:43 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:12:43 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:12:43 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:12:44 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:12:44 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:12:44 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:12:44 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:12:44 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:12:44 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:12:44 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:12:44 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:12:45 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:12:45 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:12:45 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:12:45 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:12:45 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:12:45 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:12:45 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:12:45 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:12:46 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:12:46 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:12:46 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:12:46 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:12:46 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:12:46 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:12:46 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:12:46 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:12:46 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:12:46 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:12:47 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:12:47 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:12:47 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:12:47 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:12:47 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:12:47 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:12:47 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:12:47 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:12:48 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:12:48 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:12:48 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:12:48 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:12:48 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:12:48 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:12:48 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:12:49 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:12:49 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:12:49 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:12:49 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:12:49 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:12:49 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:12:49 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:12:49 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:12:49 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:12:49 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:12:50 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:12:50 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:12:50 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:12:50 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:12:50 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:12:50 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:12:50 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:12:50 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:12:50 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:12:50 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:12:50 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:12:50 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:12:50 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:12:50 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:12:50 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:12:51 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:12:51 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:12:51 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:12:51 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:12:51 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:12:51 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:12:51 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:12:51 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:12:51 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:12:51 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:12:51 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:12:51 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:12:51 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:12:51 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:12:51 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:12:51 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:12:52 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:12:52 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:12:52 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:12:52 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:12:52 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:12:52 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:12:52 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:12:52 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:12:52 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:12:52 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:12:52 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:12:52 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:12:53 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:12:53 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:12:53 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:12:53 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:12:53 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:12:53 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:12:54 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:12:54 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:12:54 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:12:54 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:12:54 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:12:54 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:12:54 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:12:54 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:12:55 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:12:55 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:12:55 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:12:55 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:12:55 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:12:55 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:12:56 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:12:56 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:12:56 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:12:56 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:12:56 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:12:56 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:12:56 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:12:57 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:12:57 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:12:57 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:12:57 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:12:57 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:12:57 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:12:57 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:12:57 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:12:58 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:12:58 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:12:58 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:12:58 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:12:58 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:12:58 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:12:58 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:12:58 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:12:58 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:12:58 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:12:59 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:12:59 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:12:59 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:12:59 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:12:59 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:12:59 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:12:59 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:13:00 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:13:00 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:13:00 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:13:00 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:13:00 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:13:00 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:13:00 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:13:00 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:13:01 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:13:01 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:13:01 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:13:01 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:13:01 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:13:01 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:13:01 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:13:01 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:13:01 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:13:01 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:13:02 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:13:02 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:13:02 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:13:02 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:13:02 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:13:02 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:13:02 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:13:02 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:13:02 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:13:03 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:13:03 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:13:03 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:13:03 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:13:03 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:13:03 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:13:03 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:13:04 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:13:04 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:13:04 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:13:04 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:13:04 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:13:04 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:13:04 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:13:04 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:13:04 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:13:05 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:13:05 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:13:05 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:13:05 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:13:05 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:13:05 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:13:05 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:13:05 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:13:05 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:13:05 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:13:06 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:13:06 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:13:06 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:13:06 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:13:06 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:13:06 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:13:06 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:13:06 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:13:06 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:13:07 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:13:07 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:13:07 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:13:07 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:13:07 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:13:07 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:13:07 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:13:07 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:13:07 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:13:07 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:13:08 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:13:08 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:13:08 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:13:08 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:13:08 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:13:08 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:13:08 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:13:08 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:13:08 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:13:08 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:13:09 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:13:09 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:13:09 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:13:09 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:13:09 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:13:09 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:13:09 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:13:09 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:13:09 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:13:09 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:13:09 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:13:09 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:13:10 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:13:10 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:13:10 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:13:10 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:13:10 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:13:10 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:13:10 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:13:10 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:13:10 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:13:10 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:13:11 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:13:11 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:13:11 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:13:11 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:13:11 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:13:11 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:13:11 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:13:11 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:13:11 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:13:11 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:13:11 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:13:11 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:13:11 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:13:12 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:13:12 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:13:12 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:13:12 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:13:12 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:13:12 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:13:12 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:13:12 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:13:12 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:13:12 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:13:12 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:13:12 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:13:12 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:13:12 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:13:12 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:13:12 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:13:13 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:13:13 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:13:13 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:13:13 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:13:13 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:13:13 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:13:13 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:13:13 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:13:13 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:13:13 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:13:13 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:13:13 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:13:14 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:13:14 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:13:14 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:13:14 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:13:14 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:13:14 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:13:14 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:13:14 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:13:14 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:13:14 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:13:14 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:13:14 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:13:14 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:13:14 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:13:14 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:13:14 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:13:15 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:13:15 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:13:15 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:13:15 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:13:15 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:13:15 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:13:15 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:13:15 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:13:15 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:13:15 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:13:15 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:13:15 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:13:15 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:13:15 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:13:15 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:13:16 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:13:16 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:13:16 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:13:16 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:13:16 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:13:16 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:13:17 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:13:17 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:13:17 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:13:17 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:13:17 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:13:17 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:13:17 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:13:17 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:13:18 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:13:18 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:13:18 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:13:18 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:13:19 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:13:19 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:13:19 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:13:19 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:13:19 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:13:19 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:13:20 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:13:20 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:13:20 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:13:21 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:13:21 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:13:21 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:13:21 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:13:21 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:13:21 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:13:21 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:13:22 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:13:22 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:13:22 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:13:22 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:13:22 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:13:22 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:13:22 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:13:22 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:13:22 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:13:22 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:13:23 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:13:23 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:13:23 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:13:23 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:13:23 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:13:23 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:13:23 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:13:23 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:13:23 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:13:23 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:13:23 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:13:24 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:13:24 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:13:24 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:13:24 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:13:24 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:13:24 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:13:24 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:13:24 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:13:24 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:13:24 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:13:24 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:13:24 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:13:24 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:13:25 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:13:25 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:13:25 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:13:25 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:13:25 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:13:25 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:13:25 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:13:25 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:13:25 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:13:26 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:13:26 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:13:26 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:13:26 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:13:26 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:13:27 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:13:27 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:13:27 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:13:27 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:13:27 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:13:27 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:13:27 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:13:27 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:13:27 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:13:27 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:13:27 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:13:27 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:13:27 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:13:27 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:13:28 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:13:28 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:13:28 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:13:28 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:13:28 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:13:28 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:13:28 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:13:28 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:13:28 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:13:28 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:13:29 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:13:29 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:13:29 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:13:29 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:13:29 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:13:29 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:13:29 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:13:29 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:13:29 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:13:29 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:13:29 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:13:29 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:13:30 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:13:30 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:13:30 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:13:30 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:13:30 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:13:30 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:13:30 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:13:30 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:13:30 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:13:30 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:13:30 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:13:30 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:13:30 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:13:30 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:13:30 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:13:30 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:13:31 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:13:31 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:13:31 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:13:31 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:13:31 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:13:31 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:13:31 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:13:31 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:13:31 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:13:31 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:13:31 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:13:31 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:13:31 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:13:32 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:13:32 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:13:32 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:13:32 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:13:32 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:13:32 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:13:32 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:13:32 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:13:32 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:13:32 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:13:32 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:13:32 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:13:33 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:13:33 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:13:33 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:13:33 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:13:33 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:13:33 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:13:33 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:13:33 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:13:33 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:13:33 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:13:33 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:13:33 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:13:33 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:13:33 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:13:33 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:13:33 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:13:33 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:13:33 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:13:34 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:13:34 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:13:34 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:13:34 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:13:34 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:13:34 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:13:34 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:13:34 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:13:34 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:13:34 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:13:34 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:13:34 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:13:34 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:13:34 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:13:35 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:13:35 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:13:35 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:13:35 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:13:35 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:13:35 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:13:35 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:13:35 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:13:35 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:13:35 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:13:35 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:13:35 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:13:36 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:13:36 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:13:36 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:13:36 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:13:36 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:13:36 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:13:36 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:13:36 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:13:36 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:13:36 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:13:36 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:13:36 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:13:36 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:13:37 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:13:37 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:13:37 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:13:37 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:13:37 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:13:37 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:13:37 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:13:37 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:13:37 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:13:37 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:13:37 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:13:37 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:13:37 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:13:37 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:13:37 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:13:38 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:13:38 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:13:38 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:13:38 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:13:38 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:13:38 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:13:38 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:13:38 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:13:38 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:13:38 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:13:38 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:13:38 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:13:38 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:13:38 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:13:38 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:13:38 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:13:38 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:13:38 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:13:39 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:13:39 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:13:39 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:13:39 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:13:39 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:13:39 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:13:39 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:13:39 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:13:39 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:13:39 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:13:39 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:13:40 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:13:40 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:13:40 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:13:40 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:13:40 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:13:40 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:13:40 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:13:40 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:13:41 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:13:41 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:13:41 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:13:41 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:13:41 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:13:41 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:13:42 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:13:42 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:13:42 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:13:42 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:13:42 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:13:42 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:13:43 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:13:43 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:13:43 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:13:43 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:13:43 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:13:43 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:13:43 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 11:13:43 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:13:43 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 11:13:44 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 12:16:11 --> Severity: Notice --> Undefined variable: financialyear C:\xampp\htdocs\ria\application\views\bankinvoice.php 2
+ERROR - 2019-01-10 12:16:11 --> Severity: Notice --> Undefined variable: fdate C:\xampp\htdocs\ria\application\controllers\cashbook.php 1172
+ERROR - 2019-01-10 12:16:12 --> Severity: Notice --> Undefined variable: fdate C:\xampp\htdocs\ria\application\controllers\cashbook.php 1172
+ERROR - 2019-01-10 12:16:12 --> Severity: Notice --> Undefined variable: fdate C:\xampp\htdocs\ria\application\controllers\cashbook.php 1172
+ERROR - 2019-01-10 12:16:12 --> Severity: Warning --> Invalid argument supplied for foreach() C:\xampp\htdocs\ria\application\views\bankinvoice.php 2
+ERROR - 2019-01-10 12:16:12 --> Severity: Notice --> Undefined variable: tdate C:\xampp\htdocs\ria\application\controllers\cashbook.php 1172
+ERROR - 2019-01-10 12:16:13 --> Severity: Notice --> Undefined variable: fdate C:\xampp\htdocs\ria\application\controllers\cashbook.php 1172
+ERROR - 2019-01-10 12:16:13 --> Severity: Notice --> Undefined variable: fdate C:\xampp\htdocs\ria\application\controllers\cashbook.php 1172
+ERROR - 2019-01-10 12:16:13 --> Severity: Notice --> Undefined variable: tdate C:\xampp\htdocs\ria\application\controllers\cashbook.php 1172
+ERROR - 2019-01-10 12:16:13 --> Severity: Notice --> Undefined variable: fa C:\xampp\htdocs\ria\application\controllers\cashbook.php 1172
+ERROR - 2019-01-10 12:16:13 --> Severity: Notice --> Undefined variable: tdate C:\xampp\htdocs\ria\application\controllers\cashbook.php 1172
+ERROR - 2019-01-10 12:16:13 --> Severity: Notice --> Undefined variable: cash C:\xampp\htdocs\ria\application\views\bankinvoice.php 80
+ERROR - 2019-01-10 12:16:14 --> Severity: Notice --> Undefined variable: fdate C:\xampp\htdocs\ria\application\controllers\cashbook.php 1172
+ERROR - 2019-01-10 12:16:14 --> Severity: Notice --> Undefined variable: fdate C:\xampp\htdocs\ria\application\controllers\cashbook.php 1172
+ERROR - 2019-01-10 12:16:14 --> Severity: Notice --> Undefined variable: fdate C:\xampp\htdocs\ria\application\controllers\cashbook.php 1172
+ERROR - 2019-01-10 12:16:14 --> Severity: Notice --> Undefined variable: fdate C:\xampp\htdocs\ria\application\controllers\cashbook.php 1172
+ERROR - 2019-01-10 12:16:14 --> Severity: Notice --> Undefined variable: tdate C:\xampp\htdocs\ria\application\controllers\cashbook.php 1172
+ERROR - 2019-01-10 12:16:14 --> Severity: Notice --> Undefined variable: fa C:\xampp\htdocs\ria\application\controllers\cashbook.php 1172
+ERROR - 2019-01-10 12:16:14 --> Severity: Notice --> Undefined variable: fa C:\xampp\htdocs\ria\application\controllers\cashbook.php 1172
+ERROR - 2019-01-10 12:16:14 --> Severity: Notice --> Undefined variable: bankid C:\xampp\htdocs\ria\application\views\bankinvoice.php 82
+ERROR - 2019-01-10 12:16:14 --> Severity: Notice --> Undefined variable: tdate C:\xampp\htdocs\ria\application\controllers\cashbook.php 1172
+ERROR - 2019-01-10 12:16:14 --> Severity: Notice --> Undefined variable: aa C:\xampp\htdocs\ria\application\controllers\cashbook.php 1172
+ERROR - 2019-01-10 12:16:14 --> Severity: Notice --> Undefined variable: tdate C:\xampp\htdocs\ria\application\controllers\cashbook.php 1172
+ERROR - 2019-01-10 12:16:14 --> Severity: Notice --> Undefined variable: tdate C:\xampp\htdocs\ria\application\controllers\cashbook.php 1172
+ERROR - 2019-01-10 12:16:15 --> Severity: Notice --> Undefined variable: aa C:\xampp\htdocs\ria\application\controllers\cashbook.php 1172
+ERROR - 2019-01-10 12:16:15 --> Severity: Notice --> Undefined variable: tdate C:\xampp\htdocs\ria\application\controllers\cashbook.php 1172
+ERROR - 2019-01-10 12:16:15 --> Severity: Notice --> Undefined variable: fa C:\xampp\htdocs\ria\application\controllers\cashbook.php 1172
+ERROR - 2019-01-10 12:16:15 --> Severity: Notice --> Undefined variable: tdate C:\xampp\htdocs\ria\application\controllers\cashbook.php 1172
+ERROR - 2019-01-10 12:16:15 --> Severity: Notice --> Undefined variable: aa C:\xampp\htdocs\ria\application\controllers\cashbook.php 1172
+ERROR - 2019-01-10 12:16:15 --> Severity: Notice --> Undefined variable: aa C:\xampp\htdocs\ria\application\controllers\cashbook.php 1172
+ERROR - 2019-01-10 12:16:15 --> Severity: Notice --> Undefined variable: fa C:\xampp\htdocs\ria\application\controllers\cashbook.php 1172
+ERROR - 2019-01-10 12:16:15 --> Severity: Notice --> Undefined variable: fa C:\xampp\htdocs\ria\application\controllers\cashbook.php 1172
+ERROR - 2019-01-10 12:16:15 --> Severity: Notice --> Undefined variable: fa C:\xampp\htdocs\ria\application\controllers\cashbook.php 1172
+ERROR - 2019-01-10 12:16:15 --> Severity: Notice --> Undefined variable: fa C:\xampp\htdocs\ria\application\controllers\cashbook.php 1172
+ERROR - 2019-01-10 12:16:15 --> Severity: Notice --> Undefined variable: aa C:\xampp\htdocs\ria\application\controllers\cashbook.php 1172
+ERROR - 2019-01-10 12:16:15 --> Severity: Notice --> Undefined variable: fa C:\xampp\htdocs\ria\application\controllers\cashbook.php 1172
+ERROR - 2019-01-10 12:16:15 --> Severity: Notice --> Undefined variable: aa C:\xampp\htdocs\ria\application\controllers\cashbook.php 1172
+ERROR - 2019-01-10 12:16:16 --> Severity: Notice --> Undefined variable: financialyear C:\xampp\htdocs\ria\application\views\bankstatement.php 2
+ERROR - 2019-01-10 12:16:16 --> Severity: Notice --> Undefined variable: financialyear C:\xampp\htdocs\ria\application\views\bankstatement.php 2
+ERROR - 2019-01-10 12:16:16 --> Severity: Notice --> Undefined variable: aa C:\xampp\htdocs\ria\application\controllers\cashbook.php 1172
+ERROR - 2019-01-10 12:16:16 --> Severity: Notice --> Undefined variable: aa C:\xampp\htdocs\ria\application\controllers\cashbook.php 1172
+ERROR - 2019-01-10 12:16:16 --> Severity: Notice --> Undefined variable: financialyear C:\xampp\htdocs\ria\application\views\bankstatement.php 2
+ERROR - 2019-01-10 12:16:16 --> Severity: Notice --> Undefined variable: financialyear C:\xampp\htdocs\ria\application\views\bankstatement.php 2
+ERROR - 2019-01-10 12:16:16 --> Severity: Notice --> Undefined variable: aa C:\xampp\htdocs\ria\application\controllers\cashbook.php 1172
+ERROR - 2019-01-10 12:16:16 --> Severity: Notice --> Undefined variable: financialyear C:\xampp\htdocs\ria\application\views\bankstatement.php 2
+ERROR - 2019-01-10 12:16:16 --> Severity: Warning --> Invalid argument supplied for foreach() C:\xampp\htdocs\ria\application\views\bankstatement.php 2
+ERROR - 2019-01-10 12:16:16 --> Severity: Notice --> Undefined variable: financialyear C:\xampp\htdocs\ria\application\views\bankstatement.php 2
+ERROR - 2019-01-10 12:16:16 --> Severity: Notice --> Undefined variable: financialyear C:\xampp\htdocs\ria\application\views\bankstatement.php 2
+ERROR - 2019-01-10 12:16:16 --> Severity: Notice --> Undefined variable: financialyear C:\xampp\htdocs\ria\application\views\bankstatement.php 2
+ERROR - 2019-01-10 12:16:16 --> Severity: Warning --> Invalid argument supplied for foreach() C:\xampp\htdocs\ria\application\views\bankstatement.php 2
+ERROR - 2019-01-10 12:16:16 --> Severity: Warning --> Invalid argument supplied for foreach() C:\xampp\htdocs\ria\application\views\bankstatement.php 2
+ERROR - 2019-01-10 12:16:16 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 85
+ERROR - 2019-01-10 12:16:17 --> Severity: Notice --> Undefined variable: financialyear C:\xampp\htdocs\ria\application\views\bankstatement.php 2
+ERROR - 2019-01-10 12:16:17 --> Severity: Warning --> Invalid argument supplied for foreach() C:\xampp\htdocs\ria\application\views\bankstatement.php 2
+ERROR - 2019-01-10 12:16:17 --> Severity: Warning --> Invalid argument supplied for foreach() C:\xampp\htdocs\ria\application\views\bankstatement.php 2
+ERROR - 2019-01-10 12:16:17 --> Severity: Warning --> Invalid argument supplied for foreach() C:\xampp\htdocs\ria\application\views\bankstatement.php 2
+ERROR - 2019-01-10 12:16:17 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 85
+ERROR - 2019-01-10 12:16:17 --> Severity: Warning --> Invalid argument supplied for foreach() C:\xampp\htdocs\ria\application\views\bankstatement.php 2
+ERROR - 2019-01-10 12:16:17 --> Severity: Warning --> Invalid argument supplied for foreach() C:\xampp\htdocs\ria\application\views\bankstatement.php 2
+ERROR - 2019-01-10 12:16:17 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 85
+ERROR - 2019-01-10 12:16:17 --> Severity: Warning --> Invalid argument supplied for foreach() C:\xampp\htdocs\ria\application\views\bankstatement.php 2
+ERROR - 2019-01-10 12:16:17 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 85
+ERROR - 2019-01-10 12:16:17 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 85
+ERROR - 2019-01-10 12:16:17 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 85
+ERROR - 2019-01-10 12:16:17 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 85
+ERROR - 2019-01-10 12:16:17 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 85
+ERROR - 2019-01-10 12:16:17 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 85
+ERROR - 2019-01-10 12:16:17 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 86
+ERROR - 2019-01-10 12:16:18 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 85
+ERROR - 2019-01-10 12:16:18 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 86
+ERROR - 2019-01-10 12:16:18 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 85
+ERROR - 2019-01-10 12:16:18 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 85
+ERROR - 2019-01-10 12:16:18 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 85
+ERROR - 2019-01-10 12:16:18 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 85
+ERROR - 2019-01-10 12:16:18 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 86
+ERROR - 2019-01-10 12:16:18 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 85
+ERROR - 2019-01-10 12:16:18 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 85
+ERROR - 2019-01-10 12:16:18 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 86
+ERROR - 2019-01-10 12:16:18 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 86
+ERROR - 2019-01-10 12:16:18 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 85
+ERROR - 2019-01-10 12:16:18 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 86
+ERROR - 2019-01-10 12:16:18 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 85
+ERROR - 2019-01-10 12:16:18 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 86
+ERROR - 2019-01-10 12:16:18 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 86
+ERROR - 2019-01-10 12:16:18 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 86
+ERROR - 2019-01-10 12:16:19 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 86
+ERROR - 2019-01-10 12:16:19 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 87
+ERROR - 2019-01-10 12:16:19 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 86
+ERROR - 2019-01-10 12:16:19 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 86
+ERROR - 2019-01-10 12:16:19 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 86
+ERROR - 2019-01-10 12:16:19 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 86
+ERROR - 2019-01-10 12:16:19 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 86
+ERROR - 2019-01-10 12:16:19 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 87
+ERROR - 2019-01-10 12:16:19 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 87
+ERROR - 2019-01-10 12:16:19 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 86
+ERROR - 2019-01-10 12:16:19 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 86
+ERROR - 2019-01-10 12:16:19 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 87
+ERROR - 2019-01-10 12:16:19 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 87
+ERROR - 2019-01-10 12:16:19 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 87
+ERROR - 2019-01-10 12:16:19 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 86
+ERROR - 2019-01-10 12:16:19 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 87
+ERROR - 2019-01-10 12:16:19 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 87
+ERROR - 2019-01-10 12:16:19 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 137
+ERROR - 2019-01-10 12:16:19 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 87
+ERROR - 2019-01-10 12:16:19 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 87
+ERROR - 2019-01-10 12:16:19 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 87
+ERROR - 2019-01-10 12:16:19 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 87
+ERROR - 2019-01-10 12:16:19 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 137
+ERROR - 2019-01-10 12:16:19 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 87
+ERROR - 2019-01-10 12:16:20 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 87
+ERROR - 2019-01-10 12:16:20 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 137
+ERROR - 2019-01-10 12:16:20 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 87
+ERROR - 2019-01-10 12:16:20 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 137
+ERROR - 2019-01-10 12:16:20 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 87
+ERROR - 2019-01-10 12:16:20 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 87
+ERROR - 2019-01-10 12:16:20 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 137
+ERROR - 2019-01-10 12:16:20 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 137
+ERROR - 2019-01-10 12:16:20 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 137
+ERROR - 2019-01-10 12:16:20 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 87
+ERROR - 2019-01-10 12:16:20 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 138
+ERROR - 2019-01-10 12:16:20 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 137
+ERROR - 2019-01-10 12:16:20 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 137
+ERROR - 2019-01-10 12:16:20 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 137
+ERROR - 2019-01-10 12:16:20 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 137
+ERROR - 2019-01-10 12:16:20 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 138
+ERROR - 2019-01-10 12:16:20 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 137
+ERROR - 2019-01-10 12:16:21 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 137
+ERROR - 2019-01-10 12:16:21 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 138
+ERROR - 2019-01-10 12:16:21 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 138
+ERROR - 2019-01-10 12:16:21 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 137
+ERROR - 2019-01-10 12:16:21 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 137
+ERROR - 2019-01-10 12:16:21 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 137
+ERROR - 2019-01-10 12:16:21 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 137
+ERROR - 2019-01-10 12:16:21 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 138
+ERROR - 2019-01-10 12:16:21 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 139
+ERROR - 2019-01-10 12:16:21 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 138
+ERROR - 2019-01-10 12:16:21 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 138
+ERROR - 2019-01-10 12:16:21 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 138
+ERROR - 2019-01-10 12:16:21 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 137
+ERROR - 2019-01-10 12:16:21 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 139
+ERROR - 2019-01-10 12:16:21 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 138
+ERROR - 2019-01-10 12:16:22 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 138
+ERROR - 2019-01-10 12:16:22 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 138
+ERROR - 2019-01-10 12:16:22 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 139
+ERROR - 2019-01-10 12:16:22 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 138
+ERROR - 2019-01-10 12:16:22 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 138
+ERROR - 2019-01-10 12:16:22 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 139
+ERROR - 2019-01-10 12:16:22 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 138
+ERROR - 2019-01-10 12:16:22 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 139
+ERROR - 2019-01-10 12:16:22 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 139
+ERROR - 2019-01-10 12:16:22 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 138
+ERROR - 2019-01-10 12:16:22 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 138
+ERROR - 2019-01-10 12:16:22 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 139
+ERROR - 2019-01-10 12:16:23 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 139
+ERROR - 2019-01-10 12:16:23 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 138
+ERROR - 2019-01-10 12:16:23 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 139
+ERROR - 2019-01-10 12:16:23 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 138
+ERROR - 2019-01-10 12:16:23 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 139
+ERROR - 2019-01-10 12:16:23 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 139
+ERROR - 2019-01-10 12:16:23 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 139
+ERROR - 2019-01-10 12:16:23 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 139
+ERROR - 2019-01-10 12:16:23 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 139
+ERROR - 2019-01-10 12:16:23 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 139
+ERROR - 2019-01-10 12:16:23 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 139
+ERROR - 2019-01-10 12:16:23 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 139
+ERROR - 2019-01-10 12:16:23 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 139
+ERROR - 2019-01-10 12:16:51 --> Severity: Notice --> Undefined variable: fdate C:\xampp\htdocs\ria\application\controllers\cashbook.php 1172
+ERROR - 2019-01-10 12:16:52 --> Severity: Notice --> Undefined variable: fdate C:\xampp\htdocs\ria\application\controllers\cashbook.php 1172
+ERROR - 2019-01-10 12:16:52 --> Severity: Notice --> Undefined variable: fdate C:\xampp\htdocs\ria\application\controllers\cashbook.php 1172
+ERROR - 2019-01-10 12:16:52 --> Severity: Notice --> Undefined variable: tdate C:\xampp\htdocs\ria\application\controllers\cashbook.php 1172
+ERROR - 2019-01-10 12:16:52 --> Severity: Notice --> Undefined variable: tdate C:\xampp\htdocs\ria\application\controllers\cashbook.php 1172
+ERROR - 2019-01-10 12:16:52 --> Severity: Notice --> Undefined variable: tdate C:\xampp\htdocs\ria\application\controllers\cashbook.php 1172
+ERROR - 2019-01-10 12:16:52 --> Severity: Notice --> Undefined variable: fa C:\xampp\htdocs\ria\application\controllers\cashbook.php 1172
+ERROR - 2019-01-10 12:16:52 --> Severity: Notice --> Undefined variable: fa C:\xampp\htdocs\ria\application\controllers\cashbook.php 1172
+ERROR - 2019-01-10 12:16:53 --> Severity: Notice --> Undefined variable: fa C:\xampp\htdocs\ria\application\controllers\cashbook.php 1172
+ERROR - 2019-01-10 12:16:53 --> Severity: Notice --> Undefined variable: aa C:\xampp\htdocs\ria\application\controllers\cashbook.php 1172
+ERROR - 2019-01-10 12:16:53 --> Severity: Notice --> Undefined variable: aa C:\xampp\htdocs\ria\application\controllers\cashbook.php 1172
+ERROR - 2019-01-10 12:16:53 --> Severity: Notice --> Undefined variable: aa C:\xampp\htdocs\ria\application\controllers\cashbook.php 1172
+ERROR - 2019-01-10 12:16:53 --> Severity: Notice --> Undefined variable: financialyear C:\xampp\htdocs\ria\application\views\bankstatement.php 2
+ERROR - 2019-01-10 12:16:53 --> Severity: Notice --> Undefined variable: financialyear C:\xampp\htdocs\ria\application\views\bankstatement.php 2
+ERROR - 2019-01-10 12:16:53 --> Severity: Notice --> Undefined variable: financialyear C:\xampp\htdocs\ria\application\views\bankstatement.php 2
+ERROR - 2019-01-10 12:16:53 --> Severity: Warning --> Invalid argument supplied for foreach() C:\xampp\htdocs\ria\application\views\bankstatement.php 2
+ERROR - 2019-01-10 12:16:54 --> Severity: Warning --> Invalid argument supplied for foreach() C:\xampp\htdocs\ria\application\views\bankstatement.php 2
+ERROR - 2019-01-10 12:16:54 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 85
+ERROR - 2019-01-10 12:16:54 --> Severity: Warning --> Invalid argument supplied for foreach() C:\xampp\htdocs\ria\application\views\bankstatement.php 2
+ERROR - 2019-01-10 12:16:55 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 85
+ERROR - 2019-01-10 12:16:55 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 85
+ERROR - 2019-01-10 12:16:55 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 85
+ERROR - 2019-01-10 12:16:55 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 85
+ERROR - 2019-01-10 12:16:55 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 86
+ERROR - 2019-01-10 12:16:55 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 85
+ERROR - 2019-01-10 12:16:55 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 86
+ERROR - 2019-01-10 12:16:55 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 86
+ERROR - 2019-01-10 12:16:55 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 86
+ERROR - 2019-01-10 12:16:55 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 86
+ERROR - 2019-01-10 12:16:55 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 87
+ERROR - 2019-01-10 12:16:55 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 86
+ERROR - 2019-01-10 12:16:56 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 87
+ERROR - 2019-01-10 12:16:56 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 87
+ERROR - 2019-01-10 12:16:56 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 87
+ERROR - 2019-01-10 12:16:56 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 87
+ERROR - 2019-01-10 12:16:56 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 87
+ERROR - 2019-01-10 12:16:56 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 137
+ERROR - 2019-01-10 12:16:56 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 137
+ERROR - 2019-01-10 12:16:56 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 137
+ERROR - 2019-01-10 12:16:56 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 137
+ERROR - 2019-01-10 12:16:57 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 137
+ERROR - 2019-01-10 12:16:57 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 138
+ERROR - 2019-01-10 12:16:57 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 137
+ERROR - 2019-01-10 12:16:57 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 138
+ERROR - 2019-01-10 12:16:57 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 138
+ERROR - 2019-01-10 12:16:57 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 138
+ERROR - 2019-01-10 12:16:57 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 139
+ERROR - 2019-01-10 12:16:57 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 138
+ERROR - 2019-01-10 12:16:57 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 138
+ERROR - 2019-01-10 12:16:57 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 139
+ERROR - 2019-01-10 12:16:57 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 139
+ERROR - 2019-01-10 12:16:57 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 139
+ERROR - 2019-01-10 12:16:58 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 139
+ERROR - 2019-01-10 12:16:58 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 139
+ERROR - 2019-01-10 12:17:40 --> Severity: Notice --> Undefined variable: financialyear C:\xampp\htdocs\ria\application\views\bankinvoice.php 2
+ERROR - 2019-01-10 12:17:41 --> Severity: Warning --> Invalid argument supplied for foreach() C:\xampp\htdocs\ria\application\views\bankinvoice.php 2
+ERROR - 2019-01-10 12:17:41 --> Severity: Notice --> Undefined variable: cash C:\xampp\htdocs\ria\application\views\bankinvoice.php 80
+ERROR - 2019-01-10 12:17:41 --> Severity: Notice --> Undefined variable: bankid C:\xampp\htdocs\ria\application\views\bankinvoice.php 82
+ERROR - 2019-01-10 12:18:02 --> Severity: Notice --> Undefined variable: financialyear C:\xampp\htdocs\ria\application\views\bankinvoice.php 2
+ERROR - 2019-01-10 12:18:03 --> Severity: Warning --> Invalid argument supplied for foreach() C:\xampp\htdocs\ria\application\views\bankinvoice.php 2
+ERROR - 2019-01-10 12:18:03 --> Severity: Notice --> Undefined variable: cash C:\xampp\htdocs\ria\application\views\bankinvoice.php 80
+ERROR - 2019-01-10 12:18:04 --> Severity: Notice --> Undefined variable: bankid C:\xampp\htdocs\ria\application\views\bankinvoice.php 82
+ERROR - 2019-01-10 12:18:04 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 12:18:04 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 12:18:04 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 12:18:05 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 12:18:05 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 12:18:05 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 12:18:05 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 12:18:06 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 12:18:06 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 12:18:06 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 12:18:06 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 12:18:07 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 12:18:07 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 12:18:07 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 12:18:08 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 12:18:08 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 12:18:08 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 12:18:08 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 12:18:09 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 12:18:09 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 12:18:09 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 12:18:09 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 12:18:10 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 12:18:10 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 12:18:10 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 12:18:10 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 12:18:11 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 12:18:11 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 12:18:11 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 12:18:11 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 12:18:12 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 12:18:12 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 12:18:12 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 12:18:12 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 12:18:13 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 12:18:13 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 12:18:13 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 12:18:13 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 12:18:14 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 12:18:14 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 12:18:14 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 12:18:15 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 12:18:15 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 12:18:15 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 12:18:15 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 12:18:16 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 12:18:16 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 12:18:16 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 12:18:16 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 12:18:17 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 12:18:17 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 12:18:17 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 12:18:17 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 12:18:18 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 12:18:18 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 12:18:18 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 12:18:18 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 12:18:19 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 12:18:19 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 12:18:19 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 12:18:20 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 12:18:20 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 12:18:20 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 12:18:20 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 12:18:21 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 12:18:21 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 12:18:21 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 12:18:21 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 12:18:22 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 12:18:22 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 12:18:22 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 12:18:22 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 12:18:23 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 12:18:23 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 12:18:23 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 12:18:23 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 12:18:24 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 12:18:24 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 12:18:24 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 12:18:24 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 12:18:25 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 12:18:25 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 12:18:25 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 12:18:25 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 12:18:26 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 12:18:26 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 12:18:26 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 12:18:26 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 12:18:27 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 12:18:27 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 12:18:27 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 12:18:27 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 12:18:28 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 12:18:28 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 12:18:28 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 12:18:28 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 12:18:29 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 12:18:29 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 12:18:29 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 12:18:30 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 12:18:30 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 12:18:30 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 12:18:30 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 12:18:31 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 12:18:31 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 12:18:31 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 12:18:31 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 12:18:32 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 12:18:32 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 12:18:32 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 12:18:32 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 12:18:33 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 12:18:33 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 12:18:33 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 12:18:33 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 12:18:34 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 12:18:34 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 12:18:34 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 12:18:34 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 12:18:35 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 12:18:35 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 12:18:35 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 12:18:35 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 12:18:36 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 12:18:36 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 12:18:36 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 12:18:36 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 12:18:37 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 12:18:37 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 12:18:37 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 12:18:37 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 12:18:38 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 12:18:38 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 12:18:38 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 12:18:38 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 12:18:39 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 12:18:39 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 12:18:39 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 12:18:40 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 12:18:40 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 12:18:40 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 12:18:41 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 12:18:41 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 12:18:41 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 12:18:41 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 12:18:42 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 12:18:42 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 12:18:42 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 12:18:42 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 12:18:43 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 12:18:43 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 12:18:43 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 12:18:43 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 12:18:44 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 12:18:44 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 12:18:44 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 12:18:45 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 12:18:45 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 12:18:45 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 12:18:45 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 12:18:46 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 12:18:46 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 12:18:46 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 12:18:46 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 12:18:47 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 12:18:47 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 12:18:47 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 12:18:47 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 12:18:48 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 12:18:48 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 12:18:48 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 12:18:48 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 12:18:49 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 12:18:49 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 12:18:49 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 12:18:49 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 12:18:50 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 12:18:50 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 12:18:50 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 12:18:50 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 12:18:51 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 12:18:51 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 12:18:51 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 12:18:52 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 12:18:52 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 12:18:52 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 12:18:52 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 12:18:53 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 12:18:53 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 12:18:53 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 12:18:53 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 12:18:54 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 12:18:54 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 12:18:54 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 12:18:54 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 12:18:55 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 12:18:55 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 12:18:55 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 12:18:55 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 12:18:56 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 12:18:56 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 12:18:56 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 12:18:56 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 12:18:57 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 12:18:58 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 12:18:58 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 12:18:59 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 12:18:59 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 12:18:59 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 12:19:00 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 12:19:00 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 12:19:01 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 12:19:01 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 12:19:01 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 12:19:01 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 12:19:02 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 12:19:02 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 12:19:02 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 12:19:02 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 12:19:03 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 12:19:03 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 12:19:03 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 12:19:04 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 12:19:04 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 12:19:04 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 12:19:04 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 12:19:05 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 12:19:05 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 12:19:05 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 12:19:05 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 12:19:06 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 12:19:06 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 12:19:06 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 12:19:06 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 12:19:07 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 12:19:07 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 12:19:07 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 12:19:07 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 12:19:08 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 12:19:08 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 12:19:08 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 12:19:08 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 12:19:09 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 12:19:09 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 12:19:09 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 12:19:09 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 12:19:10 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 12:19:10 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 12:19:10 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 12:19:11 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 12:19:11 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 12:19:11 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 12:19:11 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 12:19:12 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 12:19:12 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 12:19:12 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 12:19:13 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 12:19:13 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 12:19:13 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 12:19:13 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 12:19:14 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 12:19:14 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 12:19:14 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 12:19:14 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 12:19:15 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 12:19:15 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 12:19:15 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 12:19:15 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 12:19:16 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 12:19:16 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 12:19:16 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 12:19:17 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 12:19:17 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 12:19:17 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 12:19:17 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 12:19:18 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 12:19:18 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 12:19:18 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 12:19:18 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 12:19:19 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 12:19:19 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 12:19:19 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 12:19:19 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 12:19:20 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 12:19:20 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 12:19:20 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 12:19:20 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 12:19:21 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 12:19:21 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 12:19:21 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 12:19:22 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 12:19:22 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 12:19:22 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 12:19:22 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 12:19:23 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 12:19:23 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 12:19:23 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 12:19:23 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 12:19:24 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 12:19:24 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 12:19:24 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 12:19:24 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 12:19:25 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 12:19:25 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 12:19:25 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 12:19:26 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 12:19:27 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 12:19:28 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 12:19:28 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 12:19:28 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 12:19:29 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 12:19:30 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 12:19:30 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 12:19:31 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 12:19:32 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 12:19:32 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 12:19:32 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 12:19:32 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 12:19:32 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 12:19:32 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 12:19:33 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 12:19:33 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 12:19:33 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 12:19:34 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 12:19:34 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 12:19:34 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 12:19:34 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 12:19:35 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 12:19:35 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 12:19:35 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 12:19:36 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 12:19:36 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 12:19:36 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 12:19:37 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 12:19:37 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 12:19:38 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 12:19:38 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 12:19:38 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 12:19:39 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 12:19:39 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 12:19:40 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 12:19:40 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 12:19:40 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 12:19:40 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 12:19:41 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 12:19:41 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 12:19:41 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 12:19:42 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 12:19:42 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 12:19:42 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 12:19:42 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 12:19:42 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 12:19:43 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 12:19:43 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 12:19:44 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 12:19:44 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 12:19:44 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 12:19:45 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 12:19:46 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 12:19:46 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 12:19:47 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 12:19:47 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 12:19:47 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 12:19:47 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 12:19:48 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 12:19:48 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 12:19:48 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 12:19:49 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 12:19:49 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 12:19:49 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 12:19:49 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 12:19:49 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 12:19:50 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 12:19:50 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 12:19:50 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 12:19:50 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 12:19:50 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 12:19:50 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 12:19:51 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 12:19:51 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 12:19:51 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 12:19:51 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 12:19:51 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 12:19:51 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 12:19:52 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 12:19:52 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 12:19:52 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 12:19:52 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 12:19:52 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 12:19:53 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 12:19:53 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 12:19:53 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 12:19:53 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 12:19:54 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 12:19:54 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 12:19:54 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 12:19:54 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 12:19:55 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 12:19:55 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 12:19:55 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 12:19:56 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 12:19:56 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 12:19:57 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 12:19:57 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 12:19:58 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 12:19:58 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 12:19:59 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 12:19:59 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 12:19:59 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 12:20:00 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 12:20:00 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 12:20:00 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 12:20:00 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 12:20:01 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 12:20:01 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 12:20:01 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 12:20:01 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 12:20:02 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 12:20:02 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 12:20:02 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 12:20:02 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 12:20:02 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 12:20:03 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 12:20:03 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 12:20:03 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 12:20:03 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 12:20:04 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 12:20:04 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 12:20:04 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 12:20:04 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 12:20:05 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 12:20:05 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 12:20:05 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 12:20:05 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 12:20:05 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 12:20:05 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 12:20:06 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 12:20:06 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 12:20:06 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 12:20:06 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 12:20:06 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 12:20:06 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 12:20:07 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 12:20:07 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 12:20:07 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 12:20:07 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 12:20:07 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 12:20:08 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 12:20:08 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 12:20:08 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 12:20:08 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 12:20:08 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 12:20:08 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 12:20:09 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 12:20:09 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 12:20:09 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 12:20:09 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 12:20:09 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 12:20:09 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 12:20:09 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 12:20:10 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 12:20:10 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 12:20:10 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 12:20:10 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 12:20:10 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 12:20:11 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 12:20:11 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 12:20:11 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 12:20:11 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 12:20:11 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 12:20:11 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 12:20:11 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 12:20:12 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 12:20:12 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 12:20:12 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 12:20:12 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 12:20:12 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 12:20:12 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 12:20:13 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 12:20:13 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 12:20:13 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 12:20:13 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 12:20:13 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 12:20:13 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 12:20:13 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 12:20:14 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 12:20:14 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 12:20:14 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 12:20:14 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 12:20:14 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 12:20:14 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 12:20:14 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 12:20:15 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 12:20:15 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 12:20:15 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 12:20:15 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 12:20:15 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 12:20:15 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 12:20:16 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 12:20:16 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 12:20:16 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 12:20:16 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 12:20:16 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 12:20:16 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 12:20:16 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 12:20:17 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 12:20:17 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 12:20:17 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 12:20:17 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 12:20:17 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 12:20:17 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 12:20:17 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 12:20:17 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 12:20:18 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 12:20:18 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 12:20:18 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 12:20:18 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 12:20:18 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 12:20:18 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 12:20:18 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 12:20:18 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 12:20:19 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 12:20:19 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 12:20:19 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 12:20:19 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 12:20:19 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 12:20:19 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 12:20:19 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 12:20:19 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 12:20:20 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 12:20:20 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 12:20:20 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 12:20:20 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 12:20:20 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 12:20:20 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 12:20:20 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 12:20:21 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 12:20:21 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 12:20:21 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 12:20:21 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 12:20:21 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 12:20:21 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 12:20:21 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 12:20:22 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 12:20:22 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 12:20:22 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 12:20:22 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 12:20:22 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 12:20:22 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 12:20:23 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 12:20:23 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 12:20:23 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 12:20:24 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 12:20:24 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 12:20:24 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 12:20:25 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 12:20:25 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 12:20:25 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 12:20:26 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 12:20:26 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 12:20:26 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 12:20:26 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 12:20:27 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 12:20:27 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 12:20:27 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 12:20:27 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 12:20:28 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 12:20:28 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 12:20:28 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 12:20:28 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 12:20:29 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 12:20:29 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 12:20:29 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 12:20:30 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 12:20:30 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 12:20:30 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 12:20:30 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 12:20:31 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 12:20:31 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 12:20:31 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 12:20:31 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 12:20:32 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 12:20:32 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 12:20:32 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 12:20:32 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 12:20:33 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 12:20:33 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 12:20:33 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 12:20:33 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 12:20:34 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 12:20:34 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 12:20:34 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 12:20:35 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 12:20:35 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 12:20:35 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 12:20:35 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 12:20:36 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 12:20:36 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 12:20:36 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 12:20:36 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 12:20:37 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 12:20:37 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 12:20:37 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 12:20:38 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 12:20:38 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 12:20:38 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 12:20:38 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 12:20:39 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 12:20:39 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 12:20:39 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 12:20:40 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 12:20:40 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 12:20:40 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 12:20:41 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 12:20:41 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 12:20:41 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 12:20:42 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 12:20:42 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 12:20:42 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 12:20:42 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 12:20:43 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 12:20:43 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 12:20:43 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 12:20:43 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 12:20:44 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 12:20:44 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 12:20:44 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 12:20:45 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 12:20:45 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 12:20:45 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 12:20:45 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 12:20:46 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 12:20:46 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 12:20:46 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 12:20:46 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 12:20:47 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 12:20:47 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 12:20:47 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 12:20:47 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 12:20:48 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 12:20:48 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 12:20:48 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 12:20:49 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 12:20:49 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 12:20:49 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 12:20:49 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 12:20:50 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 12:20:50 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 12:20:50 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 12:20:50 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 12:20:51 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 12:20:51 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 12:20:51 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 12:20:51 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 12:20:52 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 12:20:52 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 12:20:52 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 12:20:52 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 12:20:53 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 12:20:53 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 12:20:53 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 12:20:54 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 12:20:54 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 12:20:54 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 12:20:54 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 12:20:55 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 12:20:55 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 12:20:55 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 12:20:55 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 12:20:56 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 12:20:56 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 12:20:56 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 12:20:56 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 12:20:57 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 12:20:57 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 12:20:57 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 12:20:58 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 12:20:58 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 12:20:58 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 12:20:58 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 12:20:59 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 12:20:59 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 12:20:59 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 12:20:59 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 12:21:00 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 12:21:00 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 12:21:00 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 12:21:01 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 12:21:01 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 12:21:01 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 12:21:02 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 12:21:02 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 12:21:02 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 12:21:02 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 12:21:03 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 12:21:03 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 12:21:03 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 12:21:03 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 12:21:04 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 12:21:04 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 12:21:05 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 12:21:05 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 12:21:05 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 12:21:05 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 12:21:06 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 12:21:06 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 12:21:06 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 12:21:07 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 12:21:08 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 12:21:08 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 12:21:08 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 12:21:08 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 12:21:09 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 12:21:09 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 12:21:09 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 12:21:10 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 12:21:10 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 12:21:10 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 12:21:10 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 12:21:11 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 12:21:11 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 12:21:11 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 12:21:12 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 12:21:12 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 12:21:12 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 12:21:13 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 12:21:13 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 12:21:13 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 12:21:14 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 12:21:14 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 12:21:14 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 12:21:14 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 12:21:15 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 12:21:15 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 12:21:15 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 12:21:16 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 12:21:16 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 12:21:17 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 12:21:17 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 12:21:17 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 12:21:18 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 12:21:18 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 12:21:18 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 12:21:18 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 12:21:19 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 12:21:19 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 12:21:19 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 12:21:19 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 12:21:20 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 12:21:20 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 12:21:20 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 12:21:20 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 12:21:21 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 12:21:21 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 12:21:21 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 12:21:21 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 12:21:22 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 12:21:22 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 12:21:22 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 12:21:23 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 12:21:23 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 12:21:23 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 12:21:23 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 12:21:24 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 12:21:24 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 12:21:24 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 12:21:24 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 12:21:25 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 12:21:25 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 12:21:25 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 12:21:26 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 12:21:26 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 12:21:26 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 12:21:26 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 12:21:27 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 12:21:27 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 12:21:27 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 12:21:28 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 12:21:28 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 12:21:28 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 12:21:29 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 12:21:29 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 12:21:29 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 12:21:30 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 12:21:30 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 12:21:30 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 12:21:31 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 12:21:31 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 12:21:31 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 12:21:31 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 12:21:32 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 12:21:32 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 12:21:32 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 12:21:33 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 12:21:33 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 12:21:33 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 12:21:34 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 12:21:34 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 12:21:34 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 12:21:35 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 12:21:35 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 12:21:36 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 12:21:36 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 12:21:36 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 12:21:37 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 12:21:37 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 12:21:37 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 12:21:37 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 12:21:38 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 12:21:38 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 12:21:38 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 12:21:39 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 12:21:39 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 12:21:39 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 12:21:40 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 12:21:40 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 12:21:40 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 12:21:41 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 12:21:41 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 12:21:41 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 12:21:42 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 12:21:42 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 12:21:42 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 12:21:42 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 12:21:43 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 12:21:43 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 12:21:43 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 12:21:44 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 12:21:44 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 12:21:44 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 12:21:45 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 12:21:45 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 12:21:45 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 12:21:46 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 12:21:46 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 12:21:46 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 12:21:47 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 12:21:47 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 12:21:48 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 12:21:48 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 12:21:48 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 12:21:49 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 12:21:49 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 12:21:50 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 12:21:50 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 12:21:50 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 12:21:51 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 12:21:51 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 12:21:52 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 12:21:52 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 12:21:52 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 12:21:53 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 12:21:53 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 12:21:54 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 12:21:54 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 12:21:54 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 12:21:55 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 12:21:55 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 12:21:56 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 12:21:56 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 12:21:56 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 12:21:57 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 12:21:57 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 12:21:58 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 12:21:58 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 12:21:59 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 12:21:59 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 12:21:59 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 12:22:00 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 12:22:00 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 12:22:01 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 12:22:01 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 12:22:01 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 12:22:02 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 12:22:02 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 12:22:03 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 12:22:03 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 12:22:03 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 12:22:04 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 12:22:04 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 12:22:05 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 12:22:05 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 12:22:05 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 12:22:06 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 12:22:06 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 12:22:07 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 12:22:07 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 12:22:07 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 12:22:07 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 12:22:08 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 12:22:08 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 12:22:08 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 12:22:09 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 12:22:09 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 12:22:09 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 12:22:09 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 12:22:10 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 12:22:10 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 12:22:10 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 12:22:11 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 12:22:11 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 12:22:11 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 12:22:11 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 12:22:12 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 12:22:12 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 12:22:12 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 12:22:13 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 12:22:13 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 12:22:13 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 12:22:14 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 12:22:14 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 12:22:14 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 12:22:15 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 12:22:15 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 12:22:15 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 12:22:16 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 12:22:16 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 12:22:17 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 12:22:17 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 12:22:17 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 12:22:18 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 12:22:18 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 12:22:18 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 12:22:19 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 12:22:19 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 12:22:19 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 12:22:20 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 12:22:20 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 12:22:20 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 12:22:21 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 12:22:21 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 12:22:21 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 12:22:22 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 12:22:22 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 12:22:22 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 12:22:22 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 12:22:23 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 12:22:23 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 12:22:23 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 12:22:24 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 12:22:24 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 12:22:25 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 12:22:25 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 12:22:25 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 12:22:26 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 12:22:26 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 12:22:26 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 12:22:26 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 12:22:27 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 12:22:27 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 12:22:27 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 12:22:28 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 12:22:28 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 12:22:28 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 12:22:29 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 12:22:29 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 12:22:29 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 12:22:30 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 12:22:30 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 12:22:30 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 12:22:30 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 12:22:31 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 12:22:31 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 12:22:31 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 12:22:32 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 12:22:32 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 12:22:32 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 12:22:33 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 12:22:33 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 12:22:33 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 12:22:33 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 12:22:34 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 12:22:34 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 12:22:34 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 12:22:35 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 12:22:35 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 12:22:35 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 12:22:36 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 12:22:36 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 12:22:36 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 12:22:37 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 12:22:37 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 12:22:37 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 12:22:37 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 12:22:38 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 12:22:38 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 12:22:38 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 12:22:38 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 12:22:39 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 12:22:39 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 12:22:40 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 12:22:40 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 12:22:40 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 12:22:40 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 12:22:41 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 12:22:41 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 12:22:41 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 12:22:42 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 12:22:42 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 12:22:42 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 12:22:42 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 12:22:43 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 12:22:43 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 12:22:44 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 12:22:44 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 12:22:44 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 12:22:45 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 12:22:45 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 12:22:45 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 12:22:46 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 12:22:46 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 12:22:46 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 12:22:47 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 12:22:47 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 12:22:47 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 12:22:48 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 12:22:48 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 12:22:49 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 12:22:49 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 12:22:49 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 12:22:49 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 12:22:50 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 12:22:50 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 12:22:51 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 12:22:51 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 12:22:51 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 12:22:52 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 12:22:52 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 12:22:52 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 12:22:52 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 12:22:53 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 12:22:53 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 12:22:54 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 12:22:54 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 12:22:54 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 12:22:55 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 12:22:55 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 12:22:55 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 12:22:56 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 12:22:56 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 12:22:57 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 12:22:57 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 12:22:57 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 12:22:58 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 12:22:58 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 12:22:59 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 12:22:59 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 12:22:59 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 12:23:00 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 12:23:00 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 12:23:01 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 12:23:01 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 12:29:08 --> Severity: Notice --> Undefined variable: fdate C:\xampp\htdocs\ria\application\controllers\cashbook.php 1172
+ERROR - 2019-01-10 12:29:09 --> Severity: Notice --> Undefined variable: tdate C:\xampp\htdocs\ria\application\controllers\cashbook.php 1172
+ERROR - 2019-01-10 12:29:10 --> Severity: Notice --> Undefined variable: fa C:\xampp\htdocs\ria\application\controllers\cashbook.php 1172
+ERROR - 2019-01-10 12:29:11 --> Severity: Notice --> Undefined variable: aa C:\xampp\htdocs\ria\application\controllers\cashbook.php 1172
+ERROR - 2019-01-10 12:29:11 --> Severity: Notice --> Undefined variable: financialyear C:\xampp\htdocs\ria\application\views\bankstatement.php 2
+ERROR - 2019-01-10 12:29:12 --> Severity: Warning --> Invalid argument supplied for foreach() C:\xampp\htdocs\ria\application\views\bankstatement.php 2
+ERROR - 2019-01-10 12:29:13 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 85
+ERROR - 2019-01-10 12:29:13 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 85
+ERROR - 2019-01-10 12:29:14 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 86
+ERROR - 2019-01-10 12:29:15 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 86
+ERROR - 2019-01-10 12:29:15 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 87
+ERROR - 2019-01-10 12:29:16 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 87
+ERROR - 2019-01-10 12:29:16 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 137
+ERROR - 2019-01-10 12:29:17 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 137
+ERROR - 2019-01-10 12:29:17 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 138
+ERROR - 2019-01-10 12:29:17 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 138
+ERROR - 2019-01-10 12:29:18 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 139
+ERROR - 2019-01-10 12:29:18 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 139
+ERROR - 2019-01-10 12:29:52 --> Severity: Notice --> Undefined variable: financialyear C:\xampp\htdocs\ria\application\views\bankinvoice.php 2
+ERROR - 2019-01-10 12:29:53 --> Severity: Warning --> Invalid argument supplied for foreach() C:\xampp\htdocs\ria\application\views\bankinvoice.php 2
+ERROR - 2019-01-10 12:29:53 --> Severity: Notice --> Undefined variable: cash C:\xampp\htdocs\ria\application\views\bankinvoice.php 80
+ERROR - 2019-01-10 12:29:53 --> Severity: Notice --> Undefined variable: bankid C:\xampp\htdocs\ria\application\views\bankinvoice.php 82
+ERROR - 2019-01-10 12:30:00 --> Severity: Notice --> Undefined variable: financialyear C:\xampp\htdocs\ria\application\views\bankinvoice.php 2
+ERROR - 2019-01-10 12:30:01 --> Severity: Warning --> Invalid argument supplied for foreach() C:\xampp\htdocs\ria\application\views\bankinvoice.php 2
+ERROR - 2019-01-10 12:30:01 --> Severity: Notice --> Undefined variable: cash C:\xampp\htdocs\ria\application\views\bankinvoice.php 80
+ERROR - 2019-01-10 12:30:02 --> Severity: Notice --> Undefined variable: bankid C:\xampp\htdocs\ria\application\views\bankinvoice.php 82
+ERROR - 2019-01-10 12:30:02 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 12:30:03 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 12:30:03 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 12:30:04 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 12:30:04 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 12:30:04 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 12:30:04 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 12:30:05 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 12:30:05 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 12:30:05 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 12:30:05 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 12:30:06 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 12:30:06 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 12:30:06 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 12:30:06 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 12:30:07 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 12:30:07 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 12:30:07 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 12:30:08 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 12:30:08 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 12:30:08 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 12:30:08 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 12:30:09 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 12:30:09 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 12:30:09 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 12:30:09 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 12:30:10 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 12:30:10 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 12:30:10 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 12:30:10 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 12:30:11 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 12:30:11 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 12:30:11 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 12:30:12 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 12:30:12 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 12:30:12 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 12:30:12 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 12:30:13 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 12:30:13 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 12:30:13 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 12:30:14 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 12:30:14 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 12:30:14 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 12:30:14 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 12:30:15 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 12:30:15 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 12:30:15 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 12:30:15 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 12:30:16 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 12:30:16 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 12:30:16 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 12:30:16 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 12:30:17 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 12:30:17 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 12:30:17 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 12:30:17 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 12:30:18 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 12:30:18 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 12:30:18 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 12:30:19 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 12:30:19 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 12:30:19 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 12:30:19 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 12:30:20 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 12:30:20 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 12:30:20 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 12:30:20 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 12:30:21 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 12:30:21 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 12:30:21 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 12:30:21 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 12:30:22 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 12:30:22 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 12:30:22 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 12:30:23 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 12:30:23 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 12:30:23 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 12:30:23 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 12:30:24 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 12:30:24 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 12:30:24 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 12:30:24 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 12:30:25 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 12:30:25 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 12:30:25 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 12:30:25 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 12:31:08 --> Severity: Notice --> Undefined variable: balancetoreceived C:\xampp\htdocs\ria\application\controllers\cashbook.php 1514
+ERROR - 2019-01-10 12:31:08 --> Severity: Notice --> Undefined variable: clearedblnce C:\xampp\htdocs\ria\application\controllers\cashbook.php 1525
+ERROR - 2019-01-10 12:31:08 --> Severity: Notice --> Undefined variable: balancetoreceived C:\xampp\htdocs\ria\application\controllers\cashbook.php 1525
+ERROR - 2019-01-10 12:31:09 --> Severity: Notice --> Undefined variable: fdate C:\xampp\htdocs\ria\application\controllers\cashbook.php 1172
+ERROR - 2019-01-10 12:31:10 --> Severity: Notice --> Undefined variable: tdate C:\xampp\htdocs\ria\application\controllers\cashbook.php 1172
+ERROR - 2019-01-10 12:31:10 --> Severity: Notice --> Undefined variable: fa C:\xampp\htdocs\ria\application\controllers\cashbook.php 1172
+ERROR - 2019-01-10 12:31:10 --> Severity: Notice --> Undefined variable: aa C:\xampp\htdocs\ria\application\controllers\cashbook.php 1172
+ERROR - 2019-01-10 12:31:11 --> Severity: Notice --> Undefined variable: fdate C:\xampp\htdocs\ria\application\controllers\cashbook.php 1172
+ERROR - 2019-01-10 12:31:11 --> Severity: Notice --> Undefined variable: tdate C:\xampp\htdocs\ria\application\controllers\cashbook.php 1172
+ERROR - 2019-01-10 12:31:11 --> Severity: Notice --> Undefined variable: financialyear C:\xampp\htdocs\ria\application\views\bankstatement.php 2
+ERROR - 2019-01-10 12:31:12 --> Severity: Notice --> Undefined variable: fa C:\xampp\htdocs\ria\application\controllers\cashbook.php 1172
+ERROR - 2019-01-10 12:31:12 --> Severity: Warning --> Invalid argument supplied for foreach() C:\xampp\htdocs\ria\application\views\bankstatement.php 2
+ERROR - 2019-01-10 12:31:12 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 85
+ERROR - 2019-01-10 12:31:12 --> Severity: Notice --> Undefined variable: aa C:\xampp\htdocs\ria\application\controllers\cashbook.php 1172
+ERROR - 2019-01-10 12:31:12 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 85
+ERROR - 2019-01-10 12:31:12 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 86
+ERROR - 2019-01-10 12:31:13 --> Severity: Notice --> Undefined variable: financialyear C:\xampp\htdocs\ria\application\views\bankstatement.php 2
+ERROR - 2019-01-10 12:31:13 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 86
+ERROR - 2019-01-10 12:31:13 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 87
+ERROR - 2019-01-10 12:31:13 --> Severity: Warning --> Invalid argument supplied for foreach() C:\xampp\htdocs\ria\application\views\bankstatement.php 2
+ERROR - 2019-01-10 12:31:13 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 87
+ERROR - 2019-01-10 12:31:13 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 85
+ERROR - 2019-01-10 12:31:14 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 85
+ERROR - 2019-01-10 12:31:14 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 137
+ERROR - 2019-01-10 12:31:14 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 137
+ERROR - 2019-01-10 12:31:14 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 86
+ERROR - 2019-01-10 12:31:14 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 86
+ERROR - 2019-01-10 12:31:14 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 138
+ERROR - 2019-01-10 12:31:14 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 87
+ERROR - 2019-01-10 12:31:14 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 138
+ERROR - 2019-01-10 12:31:15 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 139
+ERROR - 2019-01-10 12:31:15 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 87
+ERROR - 2019-01-10 12:31:15 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 137
+ERROR - 2019-01-10 12:31:15 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 139
+ERROR - 2019-01-10 12:31:15 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 137
+ERROR - 2019-01-10 12:31:15 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 138
+ERROR - 2019-01-10 12:31:16 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 138
+ERROR - 2019-01-10 12:31:16 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 139
+ERROR - 2019-01-10 12:31:16 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 139
+ERROR - 2019-01-10 12:31:25 --> Severity: Notice --> Undefined variable: financialyear C:\xampp\htdocs\ria\application\views\bankinvoicesettlement.php 12
+ERROR - 2019-01-10 12:31:26 --> Severity: Warning --> Invalid argument supplied for foreach() C:\xampp\htdocs\ria\application\views\bankinvoicesettlement.php 12
+ERROR - 2019-01-10 12:31:26 --> Severity: Notice --> Undefined variable: record C:\xampp\htdocs\ria\application\views\bankinvoicesettlement.php 186
+ERROR - 2019-01-10 12:31:26 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoicesettlement.php 186
+ERROR - 2019-01-10 12:31:27 --> Severity: Notice --> Undefined variable: record C:\xampp\htdocs\ria\application\views\bankinvoicesettlement.php 186
+ERROR - 2019-01-10 12:31:27 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoicesettlement.php 186
+ERROR - 2019-01-10 12:37:36 --> Severity: Notice --> Undefined variable: financialyear C:\xampp\htdocs\ria\application\views\bankinvoicesettlement.php 12
+ERROR - 2019-01-10 12:37:37 --> Severity: Warning --> Invalid argument supplied for foreach() C:\xampp\htdocs\ria\application\views\bankinvoicesettlement.php 12
+ERROR - 2019-01-10 12:37:37 --> Severity: Notice --> Undefined variable: record C:\xampp\htdocs\ria\application\views\bankinvoicesettlement.php 186
+ERROR - 2019-01-10 12:37:37 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoicesettlement.php 186
+ERROR - 2019-01-10 12:37:37 --> Severity: Notice --> Undefined variable: record C:\xampp\htdocs\ria\application\views\bankinvoicesettlement.php 186
+ERROR - 2019-01-10 12:37:38 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoicesettlement.php 186
+ERROR - 2019-01-10 13:11:53 --> Severity: Notice --> Undefined variable: fdate C:\xampp\htdocs\ria\application\controllers\cashbook.php 1172
+ERROR - 2019-01-10 13:11:54 --> Severity: Notice --> Undefined variable: tdate C:\xampp\htdocs\ria\application\controllers\cashbook.php 1172
+ERROR - 2019-01-10 13:11:54 --> Severity: Notice --> Undefined variable: fa C:\xampp\htdocs\ria\application\controllers\cashbook.php 1172
+ERROR - 2019-01-10 13:11:54 --> Severity: Notice --> Undefined variable: aa C:\xampp\htdocs\ria\application\controllers\cashbook.php 1172
+ERROR - 2019-01-10 13:11:56 --> Severity: Notice --> Undefined variable: financialyear C:\xampp\htdocs\ria\application\views\bankstatement.php 2
+ERROR - 2019-01-10 13:11:56 --> Severity: Warning --> Invalid argument supplied for foreach() C:\xampp\htdocs\ria\application\views\bankstatement.php 2
+ERROR - 2019-01-10 13:11:56 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 85
+ERROR - 2019-01-10 13:11:57 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 85
+ERROR - 2019-01-10 13:11:57 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 86
+ERROR - 2019-01-10 13:11:57 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 86
+ERROR - 2019-01-10 13:11:58 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 87
+ERROR - 2019-01-10 13:11:58 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 87
+ERROR - 2019-01-10 13:11:58 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 137
+ERROR - 2019-01-10 13:11:58 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 137
+ERROR - 2019-01-10 13:11:59 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 138
+ERROR - 2019-01-10 13:11:59 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 138
+ERROR - 2019-01-10 13:11:59 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 139
+ERROR - 2019-01-10 13:12:00 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 139
+ERROR - 2019-01-10 13:12:00 --> Severity: Notice --> Undefined variable: fdate C:\xampp\htdocs\ria\application\controllers\cashbook.php 1172
+ERROR - 2019-01-10 13:12:01 --> Severity: Notice --> Undefined variable: tdate C:\xampp\htdocs\ria\application\controllers\cashbook.php 1172
+ERROR - 2019-01-10 13:12:01 --> Severity: Notice --> Undefined variable: fa C:\xampp\htdocs\ria\application\controllers\cashbook.php 1172
+ERROR - 2019-01-10 13:12:01 --> Severity: Notice --> Undefined variable: aa C:\xampp\htdocs\ria\application\controllers\cashbook.php 1172
+ERROR - 2019-01-10 13:12:02 --> Severity: Notice --> Undefined variable: financialyear C:\xampp\htdocs\ria\application\views\bankstatement.php 2
+ERROR - 2019-01-10 13:12:02 --> Severity: Warning --> Invalid argument supplied for foreach() C:\xampp\htdocs\ria\application\views\bankstatement.php 2
+ERROR - 2019-01-10 13:12:02 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 85
+ERROR - 2019-01-10 13:12:03 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 85
+ERROR - 2019-01-10 13:12:03 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 86
+ERROR - 2019-01-10 13:12:03 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 86
+ERROR - 2019-01-10 13:12:03 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 87
+ERROR - 2019-01-10 13:12:04 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 87
+ERROR - 2019-01-10 13:12:04 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 137
+ERROR - 2019-01-10 13:12:04 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 137
+ERROR - 2019-01-10 13:12:04 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 138
+ERROR - 2019-01-10 13:12:05 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 138
+ERROR - 2019-01-10 13:12:05 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 139
+ERROR - 2019-01-10 13:12:05 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 139
+ERROR - 2019-01-10 13:12:25 --> Severity: Notice --> Undefined variable: financialyear C:\xampp\htdocs\ria\application\views\bankinvoice.php 2
+ERROR - 2019-01-10 13:12:26 --> Severity: Warning --> Invalid argument supplied for foreach() C:\xampp\htdocs\ria\application\views\bankinvoice.php 2
+ERROR - 2019-01-10 13:12:26 --> Severity: Notice --> Undefined variable: cash C:\xampp\htdocs\ria\application\views\bankinvoice.php 80
+ERROR - 2019-01-10 13:12:27 --> Severity: Notice --> Undefined variable: bankid C:\xampp\htdocs\ria\application\views\bankinvoice.php 82
+ERROR - 2019-01-10 13:12:35 --> Severity: Notice --> Undefined variable: financialyear C:\xampp\htdocs\ria\application\views\bankinvoice.php 2
+ERROR - 2019-01-10 13:12:35 --> Severity: Warning --> Invalid argument supplied for foreach() C:\xampp\htdocs\ria\application\views\bankinvoice.php 2
+ERROR - 2019-01-10 13:12:35 --> Severity: Notice --> Undefined variable: cash C:\xampp\htdocs\ria\application\views\bankinvoice.php 80
+ERROR - 2019-01-10 13:12:36 --> Severity: Notice --> Undefined variable: bankid C:\xampp\htdocs\ria\application\views\bankinvoice.php 82
+ERROR - 2019-01-10 13:12:36 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 13:12:36 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 13:12:36 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 13:12:37 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 13:12:37 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 13:12:37 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 13:12:37 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 13:12:38 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 13:12:38 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 13:12:38 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 13:12:38 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 13:12:39 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 13:12:39 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 13:12:39 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 13:12:40 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 13:12:40 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 13:12:40 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 13:12:40 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 13:12:41 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 13:12:41 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 13:12:41 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 13:12:41 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 13:12:42 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 13:12:42 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 13:12:42 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 13:12:43 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 13:12:43 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 13:12:43 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 13:12:43 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 13:12:44 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 13:12:44 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 13:12:44 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 13:12:44 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 13:12:45 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 13:12:45 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 13:12:45 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 13:12:45 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 13:12:46 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 13:12:46 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 13:12:46 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 13:12:47 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 13:12:47 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 13:12:47 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 13:12:47 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 13:12:48 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 13:12:48 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 13:12:48 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 13:12:48 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 13:12:49 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 13:12:49 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 13:12:49 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 13:12:49 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 13:12:50 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 13:12:50 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 13:12:50 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 13:12:51 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 13:12:51 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 13:12:51 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 13:12:51 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 13:12:52 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 13:12:52 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 13:12:52 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 13:12:52 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 13:12:53 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 13:12:53 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 13:12:53 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 13:12:54 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 13:12:54 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 13:12:54 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 13:12:54 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 13:12:55 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 13:12:55 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 13:12:55 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 13:12:56 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 13:12:56 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 13:12:56 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 13:12:56 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 13:12:57 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 13:12:57 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 13:12:57 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 13:12:57 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 13:12:58 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 13:12:58 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 13:12:58 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 13:12:58 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 13:12:59 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 13:13:25 --> Severity: Notice --> Undefined variable: balancetoreceived C:\xampp\htdocs\ria\application\controllers\cashbook.php 1514
+ERROR - 2019-01-10 13:13:25 --> Severity: Notice --> Undefined variable: clearedblnce C:\xampp\htdocs\ria\application\controllers\cashbook.php 1525
+ERROR - 2019-01-10 13:13:26 --> Severity: Notice --> Undefined variable: balancetoreceived C:\xampp\htdocs\ria\application\controllers\cashbook.php 1525
+ERROR - 2019-01-10 13:13:26 --> Severity: Notice --> Undefined variable: fdate C:\xampp\htdocs\ria\application\controllers\cashbook.php 1172
+ERROR - 2019-01-10 13:13:26 --> Severity: Notice --> Undefined variable: tdate C:\xampp\htdocs\ria\application\controllers\cashbook.php 1172
+ERROR - 2019-01-10 13:13:27 --> Severity: Notice --> Undefined variable: fa C:\xampp\htdocs\ria\application\controllers\cashbook.php 1172
+ERROR - 2019-01-10 13:13:27 --> Severity: Notice --> Undefined variable: fdate C:\xampp\htdocs\ria\application\controllers\cashbook.php 1172
+ERROR - 2019-01-10 13:13:27 --> Severity: Notice --> Undefined variable: aa C:\xampp\htdocs\ria\application\controllers\cashbook.php 1172
+ERROR - 2019-01-10 13:13:27 --> Severity: Notice --> Undefined variable: tdate C:\xampp\htdocs\ria\application\controllers\cashbook.php 1172
+ERROR - 2019-01-10 13:13:27 --> Severity: Notice --> Undefined variable: financialyear C:\xampp\htdocs\ria\application\views\bankstatement.php 2
+ERROR - 2019-01-10 13:13:27 --> Severity: Notice --> Undefined variable: fa C:\xampp\htdocs\ria\application\controllers\cashbook.php 1172
+ERROR - 2019-01-10 13:13:28 --> Severity: Warning --> Invalid argument supplied for foreach() C:\xampp\htdocs\ria\application\views\bankstatement.php 2
+ERROR - 2019-01-10 13:13:28 --> Severity: Notice --> Undefined variable: aa C:\xampp\htdocs\ria\application\controllers\cashbook.php 1172
+ERROR - 2019-01-10 13:13:28 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 85
+ERROR - 2019-01-10 13:13:28 --> Severity: Notice --> Undefined variable: financialyear C:\xampp\htdocs\ria\application\views\bankstatement.php 2
+ERROR - 2019-01-10 13:13:29 --> Severity: Warning --> Invalid argument supplied for foreach() C:\xampp\htdocs\ria\application\views\bankstatement.php 2
+ERROR - 2019-01-10 13:13:29 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 85
+ERROR - 2019-01-10 13:13:29 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 86
+ERROR - 2019-01-10 13:13:29 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 85
+ERROR - 2019-01-10 13:13:29 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 85
+ERROR - 2019-01-10 13:13:29 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 86
+ERROR - 2019-01-10 13:13:30 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 87
+ERROR - 2019-01-10 13:13:30 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 86
+ERROR - 2019-01-10 13:13:30 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 86
+ERROR - 2019-01-10 13:13:30 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 87
+ERROR - 2019-01-10 13:13:30 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 137
+ERROR - 2019-01-10 13:13:30 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 87
+ERROR - 2019-01-10 13:13:30 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 87
+ERROR - 2019-01-10 13:13:30 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 137
+ERROR - 2019-01-10 13:13:31 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 138
+ERROR - 2019-01-10 13:13:31 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 137
+ERROR - 2019-01-10 13:13:31 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 138
+ERROR - 2019-01-10 13:13:31 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 137
+ERROR - 2019-01-10 13:13:31 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 139
+ERROR - 2019-01-10 13:13:31 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 138
+ERROR - 2019-01-10 13:13:31 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 139
+ERROR - 2019-01-10 13:13:31 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 138
+ERROR - 2019-01-10 13:13:32 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 139
+ERROR - 2019-01-10 13:13:32 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 139
+ERROR - 2019-01-10 13:13:42 --> Severity: Notice --> Undefined variable: financialyear C:\xampp\htdocs\ria\application\views\bankinvoicesettlement.php 12
+ERROR - 2019-01-10 13:13:42 --> Severity: Warning --> Invalid argument supplied for foreach() C:\xampp\htdocs\ria\application\views\bankinvoicesettlement.php 12
+ERROR - 2019-01-10 13:13:43 --> Severity: Notice --> Undefined variable: record C:\xampp\htdocs\ria\application\views\bankinvoicesettlement.php 186
+ERROR - 2019-01-10 13:13:43 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoicesettlement.php 186
+ERROR - 2019-01-10 13:13:43 --> Severity: Notice --> Undefined variable: record C:\xampp\htdocs\ria\application\views\bankinvoicesettlement.php 186
+ERROR - 2019-01-10 13:13:43 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoicesettlement.php 186
+ERROR - 2019-01-10 13:15:21 --> Severity: Notice --> Use of undefined constant OPEN - assumed 'OPEN' C:\xampp\htdocs\ria\application\controllers\cashbook.php 2335
+ERROR - 2019-01-10 13:15:22 --> Severity: Notice --> Undefined variable: financialyear C:\xampp\htdocs\ria\application\views\bankstatement.php 2
+ERROR - 2019-01-10 13:15:23 --> Severity: Warning --> Invalid argument supplied for foreach() C:\xampp\htdocs\ria\application\views\bankstatement.php 2
+ERROR - 2019-01-10 13:15:23 --> Severity: Notice --> Undefined variable: bankreport C:\xampp\htdocs\ria\application\views\bankstatement.php 8
+ERROR - 2019-01-10 13:15:23 --> Severity: Warning --> Invalid argument supplied for foreach() C:\xampp\htdocs\ria\application\views\bankstatement.php 8
+ERROR - 2019-01-10 13:15:23 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 85
+ERROR - 2019-01-10 13:15:24 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 85
+ERROR - 2019-01-10 13:15:24 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 86
+ERROR - 2019-01-10 13:15:24 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 86
+ERROR - 2019-01-10 13:15:25 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 87
+ERROR - 2019-01-10 13:15:25 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 87
+ERROR - 2019-01-10 13:15:25 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 137
+ERROR - 2019-01-10 13:15:25 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 137
+ERROR - 2019-01-10 13:15:26 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 138
+ERROR - 2019-01-10 13:15:26 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 138
+ERROR - 2019-01-10 13:15:26 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 139
+ERROR - 2019-01-10 13:15:26 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 139
+ERROR - 2019-01-10 13:15:27 --> Severity: Notice --> Undefined variable: finyear C:\xampp\htdocs\ria\application\views\bankstatement.php 197
+ERROR - 2019-01-10 13:15:27 --> Severity: Warning --> Invalid argument supplied for foreach() C:\xampp\htdocs\ria\application\views\bankstatement.php 197
+ERROR - 2019-01-10 13:15:27 --> Severity: Notice --> Undefined variable: Bankname C:\xampp\htdocs\ria\application\views\bankstatement.php 235
+ERROR - 2019-01-10 13:15:28 --> Severity: Notice --> Undefined variable: fdate C:\xampp\htdocs\ria\application\controllers\cashbook.php 1172
+ERROR - 2019-01-10 13:15:29 --> Severity: Notice --> Undefined variable: tdate C:\xampp\htdocs\ria\application\controllers\cashbook.php 1172
+ERROR - 2019-01-10 13:15:29 --> Severity: Notice --> Undefined variable: fa C:\xampp\htdocs\ria\application\controllers\cashbook.php 1172
+ERROR - 2019-01-10 13:15:29 --> Severity: Notice --> Undefined variable: aa C:\xampp\htdocs\ria\application\controllers\cashbook.php 1172
+ERROR - 2019-01-10 13:15:30 --> Severity: Notice --> Undefined variable: financialyear C:\xampp\htdocs\ria\application\views\bankstatement.php 2
+ERROR - 2019-01-10 13:15:30 --> Severity: Warning --> Invalid argument supplied for foreach() C:\xampp\htdocs\ria\application\views\bankstatement.php 2
+ERROR - 2019-01-10 13:15:30 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 85
+ERROR - 2019-01-10 13:15:30 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 85
+ERROR - 2019-01-10 13:15:31 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 86
+ERROR - 2019-01-10 13:15:31 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 86
+ERROR - 2019-01-10 13:15:31 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 87
+ERROR - 2019-01-10 13:15:32 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 87
+ERROR - 2019-01-10 13:15:32 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 137
+ERROR - 2019-01-10 13:15:32 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 137
+ERROR - 2019-01-10 13:15:32 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 138
+ERROR - 2019-01-10 13:15:33 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 138
+ERROR - 2019-01-10 13:15:33 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 139
+ERROR - 2019-01-10 13:15:33 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 139
+ERROR - 2019-01-10 13:15:48 --> Severity: Notice --> Undefined variable: financialyear C:\xampp\htdocs\ria\application\views\bankinvoicesettlement.php 12
+ERROR - 2019-01-10 13:15:48 --> Severity: Warning --> Invalid argument supplied for foreach() C:\xampp\htdocs\ria\application\views\bankinvoicesettlement.php 12
+ERROR - 2019-01-10 13:15:49 --> Severity: Notice --> Undefined variable: record C:\xampp\htdocs\ria\application\views\bankinvoicesettlement.php 186
+ERROR - 2019-01-10 13:15:49 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoicesettlement.php 186
+ERROR - 2019-01-10 13:16:10 --> Severity: Notice --> Undefined variable: financialyear C:\xampp\htdocs\ria\application\views\bankinvoice.php 2
+ERROR - 2019-01-10 13:16:11 --> Severity: Warning --> Invalid argument supplied for foreach() C:\xampp\htdocs\ria\application\views\bankinvoice.php 2
+ERROR - 2019-01-10 13:16:11 --> Severity: Notice --> Undefined variable: cash C:\xampp\htdocs\ria\application\views\bankinvoice.php 80
+ERROR - 2019-01-10 13:16:11 --> Severity: Notice --> Undefined variable: bankid C:\xampp\htdocs\ria\application\views\bankinvoice.php 82
+ERROR - 2019-01-10 13:16:18 --> Severity: Notice --> Undefined variable: financialyear C:\xampp\htdocs\ria\application\views\bankinvoice.php 2
+ERROR - 2019-01-10 13:16:19 --> Severity: Warning --> Invalid argument supplied for foreach() C:\xampp\htdocs\ria\application\views\bankinvoice.php 2
+ERROR - 2019-01-10 13:16:19 --> Severity: Notice --> Undefined variable: cash C:\xampp\htdocs\ria\application\views\bankinvoice.php 80
+ERROR - 2019-01-10 13:16:19 --> Severity: Notice --> Undefined variable: bankid C:\xampp\htdocs\ria\application\views\bankinvoice.php 82
+ERROR - 2019-01-10 13:16:20 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 13:16:20 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 13:16:20 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 13:16:21 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 13:16:21 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 13:16:21 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 13:16:21 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 13:16:22 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 13:16:22 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 13:16:22 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 13:16:22 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 13:16:23 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 13:16:23 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 13:16:23 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 13:16:23 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 13:16:24 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 13:16:24 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 13:16:24 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 13:16:25 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 13:16:25 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 13:16:25 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 13:16:25 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 13:16:26 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 13:16:26 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 13:16:26 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 13:16:26 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 13:16:27 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 13:16:27 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 13:16:27 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 13:16:27 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 13:16:28 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 13:16:28 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 13:16:28 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 13:16:28 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 13:16:29 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 13:16:29 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 13:16:29 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 13:16:30 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 13:16:30 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 13:16:30 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 13:16:30 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 13:16:31 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 13:16:31 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 13:16:31 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 13:16:31 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 13:16:32 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 13:16:32 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 13:16:32 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 13:16:33 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 13:16:33 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 13:16:33 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 13:16:33 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 13:16:34 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 13:16:34 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 13:16:34 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 13:16:34 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 13:16:35 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 13:16:35 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 13:16:35 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 13:16:35 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 13:16:36 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 13:16:36 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 13:16:36 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 13:16:37 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 13:16:37 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 13:16:37 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 13:16:37 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 13:16:38 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 13:16:38 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 13:16:38 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 13:16:38 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 13:16:39 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 13:16:39 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 13:16:39 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 13:16:40 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 13:16:40 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 13:16:40 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 13:16:40 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 13:16:41 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 13:16:41 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 13:16:41 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 13:16:42 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 13:16:42 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 13:16:42 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
+ERROR - 2019-01-10 13:16:42 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 177
+ERROR - 2019-01-10 13:16:43 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 178
diff --git a/application/models/cashbook_model.php b/application/models/cashbook_model.php
index 51ff693e..3d283661 100755
--- a/application/models/cashbook_model.php
+++ b/application/models/cashbook_model.php
@@ -10,83 +10,49 @@ class cashbook_model extends CI_Model
return $r->result();
}
- /**
- * To Save Recepit and Payment datas
- * array $data - Recepit/Payment array datas
- * return $last_id - last inserted id
- */
- function saveIncomeExpense($data)
+ function getAccountpay()
{
- $this->db->insert('t_income_expense',$data);
- //$r = $this->db->affected_rows();
- //return $r;
- $last_id = $this->db->insert_id();
- return $last_id;
+ $this->db->where('type',PAYMENT);
+ $r = $this->db->get('t_accountcode');
+ return $r->result();
+
+ }
+ function getAccounTypes1()
+ {
+ $this->db->select('name,type');
+ $r = $this->db->get('t_accountcode');
+ return $r->result();
+
}
- function getIncomeExpenseList($i="")
+ function saveIncomeExpense($data)
{
- $this->db->select('t_accountcode.name,cashtype,T_Employee_Details.FirstName,T_Employee_Details.LastName,t_income_expense.*');
- $this->db->from('t_income_expense');
- $this->db->join('t_accountcode','t_income_expense.account_code=t_accountcode.code','left');
- $this->db->join('tbl_users','t_income_expense.Created_By=tbl_users.userId','left');
- $this->db->join('T_Employee_Details','tbl_users.EmpID=T_Employee_Details.EmpID','left');
- $this->db->where('t_income_expense.IsActive',1);
- $this->db->where('t_income_expense.account_code !=','ADV001');
- $this->db->order_by("date","desc");
- if(!empty($i))
- {
- $this->db->where('t_income_expense.id',$i);
- }
- $r = $this->db->get();
- return $r->result();
+ $this->db->insert('t_income_expense',$data);
+ $r = $this->db->affected_rows();
+ return $r;
}
-
-
- /**
- * To Get Recepit and Payment datas for list
- * string $aid - Recepit/Payment id
- * return $query->result() - Recepit/Payment datas based on id
- */
- function getreceiptpaymentlist($aid = '')
- {
- $sql="SELECT `t_accountcode`.`name`, `T_Employee_Details`.`FirstName`,`T_Employee_Details`.`LastName`, `t_income_expense`.*
- FROM (`t_income_expense`)
- JOIN `t_accountcode` ON `t_income_expense`.`account_code`=`t_accountcode`.`code` or `t_income_expense`.`account_code` = '999'
- JOIN `tbl_users` ON `t_income_expense`.`Created_By`=`tbl_users`.`userId`
- JOIN `T_Employee_Details` ON `tbl_users`.`EmpID`=`T_Employee_Details`.`EmpID`
- group by t_income_expense.id";
- $query = $this->db->query($sql);
- return $query->result();
- }
- function getIncomeExpense($firstyear,$secondyear,$frmdt,$todt)
- {
- $this->db->select('t_accountcode.name,cashtype,T_Employee_Details.FirstName,T_Employee_Details.LastName,t_income_expense.*');
- $this->db->from('t_income_expense');
- $this->db->join('t_accountcode','t_income_expense.account_code=t_accountcode.code','left');
- $this->db->join('tbl_users','t_income_expense.Created_By=tbl_users.userId','left');
- $this->db->join('T_Employee_Details','tbl_users.EmpID=T_Employee_Details.EmpID','left');
- $this->db->where('t_income_expense.IsActive',1);
- $this->db->where('t_income_expense.account_code !=','ADV001');
- $this->db->where('t_income_expense.account_code !=','ADV002');
- if ($firstyear and $secondyear != '')
- {
- $finyear = "t_income_expense.date >= '".$firstyear."-04-01' and t_income_expense.date <= '".$secondyear."-03-31'";
- $this->db->where($finyear);
- }
- if ($frmdt and $todt != ''){
- $fromdate= date("Y-m-d",strtotime($frmdt));
- $todate=date("Y-m-d",strtotime($todt));
- $date = "date(t_income_expense.date) >= '".$fromdate."'
- and date(t_income_expense.date) <= '".$todate."'";
- $this->db->where($date);
- }
- $this->db->order_by("date","desc");
- $r = $this->db->get();
- return $r->result();
- }
-
- function getAdvanceList($i="")
+ // function addcashbook($bankcash1)
+ // {
+ // $this->db->insert('T_Bankmappingcashbook',$bankcash1);
+ // $r = $this->db->affected_rows();
+ // return $r;
+ // }
+ // function amountpaidcashbook()
+ // {
+ // $this->db->select('t_accountcode.namea,total,cashtype,T_Employee_Details.FirstName,T_Employee_Details.LastName,t_income_expense.*');
+ // $this->db->from('t_income_expense');
+ // $this->db->join('t_accountcode','t_income_expense.account_code=t_accountcode.code','left');
+ // $this->db->join('tbl_users','t_income_expense.Created_By=tbl_users.userId','left');
+ // $this->db->join('T_Employee_Details','tbl_users.EmpID=T_Employee_Details.EmpID','left');
+ // $this->db->where('t_income_expense.IsActive',1);
+ // $this->db->where('t_income_expense.account_code !=','ADV001');
+ // $this->db->group_by('t_income_expense.account_code');
+ // // $this->db->order_by("date","desc");
+ // $r = $this->db->get();
+ // return $r->result();
+
+ // }
+ function getIncomeExpenseList($i="")
{
// echo $i;
$this->db->select('t_accountcode.name,cashtype,T_Employee_Details.FirstName,T_Employee_Details.LastName,t_income_expense.*');
@@ -95,8 +61,55 @@ class cashbook_model extends CI_Model
$this->db->join('tbl_users','t_income_expense.Created_By=tbl_users.userId','left');
$this->db->join('T_Employee_Details','tbl_users.EmpID=T_Employee_Details.EmpID','left');
$this->db->where('t_income_expense.IsActive',1);
- $this->db->where('t_income_expense.account_code','ADV001');
- $this->db->or_where('t_income_expense.account_code','ADV002');
+ $this->db->where('t_income_expense.account_code !=','ADV001');
+ $this->db->order_by("date","desc");
+ if(!empty($i))
+ {
+ $this->db->where('t_income_expense.id',$i);
+
+ }
+ $r = $this->db->get();
+ return $r->result();
+ }
+
+ function getIncomeExpense($firstyear,$secondyear,$frmdt,$todt)
+ {
+ $this->db->select('t_accountcode.name,cashtype,T_Employee_Details.FirstName,T_Employee_Details.LastName,t_income_expense.*');
+ $this->db->from('t_income_expense');
+ $this->db->join('t_accountcode','t_income_expense.account_code=t_accountcode.code','left');
+ $this->db->join('tbl_users','t_income_expense.Created_By=tbl_users.userId','left');
+ $this->db->join('T_Employee_Details','tbl_users.EmpID=T_Employee_Details.EmpID','left');
+ $this->db->where('t_income_expense.IsActive',1);
+ $this->db->where('t_income_expense.account_code !=','ADV001');
+ $this->db->where('t_income_expense.account_code !=','0013');
+ if ($firstyear and $secondyear != '')
+ {
+ $finyear = "t_income_expense.date >= '".$firstyear."-04-01' and t_income_expense.date <= '".$secondyear."-03-31'";
+ $this->db->where($finyear);
+ }
+ if ($frmdt and $todt != ''){
+ $fromdate= date("Y-m-d",strtotime($frmdt));
+ $todate=date("Y-m-d",strtotime($todt));
+ $date = "date(t_income_expense.date) >= '".$fromdate."'
+ and date(t_income_expense.date) <= '".$todate."'";
+ $this->db->where($date);
+ }
+ $this->db->order_by("date","desc");
+ $r = $this->db->get();
+ return $r->result();
+ }
+
+ function getAdvanceList($i="")
+ {
+ // echo $i;
+ $this->db->select('t_accountcode.name,cashtype,T_Employee_Details.FirstName,T_Employee_Details.LastName,t_income_expense.*');
+ $this->db->from('t_income_expense');
+ $this->db->join('t_accountcode','t_income_expense.account_code=t_accountcode.code','left');
+ $this->db->join('tbl_users','t_income_expense.Created_By=tbl_users.userId','left');
+ $this->db->join('T_Employee_Details','tbl_users.EmpID=T_Employee_Details.EmpID','left');
+ $this->db->where('t_income_expense.IsActive',1);
+ $this->db->where('t_income_expense.account_code','ADV001');
+ $this->db->or_where('t_income_expense.account_code','0013');
$this->db->order_by("date","desc");
if(!empty($i))
{
@@ -116,44 +129,42 @@ class cashbook_model extends CI_Model
$this->db->join('T_Employee_Details','tbl_users.EmpID=T_Employee_Details.EmpID','left');
$this->db->where('t_income_expense.IsActive',1);
$this->db->where('t_income_expense.account_code','ADV001');
- $this->db->or_where('t_income_expense.account_code','ADV002');
- if ($firstyear and $secondyear != '')
- {
- $finyear = "t_income_expense.date >= '".$firstyear."-04-01' and t_income_expense.date <= '".$secondyear."-03-31'";
- $this->db->where($finyear);
+ $this->db->or_where('t_income_expense.account_code','0013');
+ if ($firstyear and $secondyear != ''){
+ $finyear = "t_income_expense.date >= '".$firstyear."-04-01' and t_income_expense.date <= '".$secondyear."-03-31'";
+ $this->db->where($finyear);
}
- if ($frmdt and $todt != '')
- {
- $fromdate= date("Y-m-d",strtotime($frmdt));
- $todate=date("Y-m-d",strtotime($todt));
- $date = "date(t_income_expense.date) >= '".$fromdate."'
- and date(t_income_expense.date) <= '".$todate."'";
- $this->db->where($date);
+ if ($frmdt and $todt != ''){
+ $fromdate= date("Y-m-d",strtotime($frmdt));
+ $todate=date("Y-m-d",strtotime($todt));
+ $date = "date(t_income_expense.date) >= '".$fromdate."'
+ and date(t_income_expense.date) <= '".$todate."'";
+ $this->db->where($date);
}
$this->db->order_by("date","desc");
$r = $this->db->get();
return $r->result();
}
-
- function finyear()
- {
+
+function finyear(){
+
$sql="SELECT
- CASE WHEN MONTH(date)>=4 THEN
- concat(YEAR(date), '-',YEAR(date)+1)
- ELSE concat(YEAR(date)-1,'-', YEAR(date)) END AS financial_year
- FROM t_income_expense
- GROUP BY financial_year";
- $query = $this->db->query($sql);
- return $query->result();
-
- }
-
+ CASE WHEN MONTH(date)>=4 THEN
+ concat(YEAR(date), '-',YEAR(date)+1)
+ ELSE concat(YEAR(date)-1,'-', YEAR(date)) END AS financial_year
+ FROM t_income_expense
+ GROUP BY financial_year";
+ $query = $this->db->query($sql);
+ return $query->result();
+
+ }
function getCompany()
{
$r = $this->db->get('T_Company_Details');
return $r->result();
-
+
+
}
function getAccounutInfo($i)
@@ -176,8 +187,9 @@ class cashbook_model extends CI_Model
$result = $query->result();
return $result;
- }
+ }
+
function Selectadvance($i="")
{
// echo $i;
@@ -198,7 +210,6 @@ class cashbook_model extends CI_Model
return $r->result();
}
-
function viewdepartment($sid='')
{
@@ -211,7 +222,6 @@ class cashbook_model extends CI_Model
//echo $sql;
return $query->result();
}
-
function deletefile($cashid)
{
@@ -225,7 +235,6 @@ class cashbook_model extends CI_Model
return $r;
}
-
function updatedepartment($updateaccount,$id1)
{
@@ -235,149 +244,7 @@ class cashbook_model extends CI_Model
return $r;
}
-
- /**
- * To Update Payment Master datas
- * array $updateaccount - Payment Master datas
- * string $id1 - Payment's id
- * return $ar - it return how many rows will affected
- */
- function updatepaymentmaster($updateaccount,$id1)
- {
- $this->db->where('id', $id1);
- $this->db->update('t_income_expense',$updateaccount);
- //$ar = $this->db->affected_rows();
- //return $ar;
- $last_id = $this->db->insert_id();
- return $last_id;
-
- }
-
-
- /**
- * To Get Payment Master for edit
- * string $sid - Payment id
- * return $query->result() - Payment datas based on id return as an array
- */
- function viewpaymentmaster($sid='')
- {
- $sql="SELECT ie.*,ac.name,date_format(ie.date,'%d-%m-%Y')as date
- FROM T_Paymentdetails pd
- JOIN t_income_expense ie ON ie.id = pd.Payment_id
- JOIN t_accountcode ac ON ac.code = pd.account_code
- WHERE ie.id = ?
- group by pd.Payment_id";
- $query = $this->db->query($sql,array($sid));
- return $query->result();
- }
-
- /**
- * To Get Payment lineitem Details for list (list dialog box)
- * string $paymentid - Payment id
- * return $result - Payment lineitem datas based on id return as an array
- */
- function viewpaymentdetails($paymentid)
- {
- $sql="SELECT ac.name,pd.*,ie.*
- FROM T_Paymentdetails pd
- JOIN t_income_expense ie ON ie.id = pd.Payment_id
- JOIN t_accountcode ac ON ac.code = pd.account_code
- WHERE pd.Payment_id = ".$paymentid ;
- $query = $this->db->query($sql);
- $result = $query->result();
- return $result;
- }
-
-
-
- /**
- * To Add and Update Payment Lineitem datas
- * array $PaymentDetails - Payment lineitem datas
- * return $i - To insert Payment datas based on id if new data means
- * return $u - To update Payment datas based on id if already have means
- */
- function addpaymentdetails($addPaymentDetails){
- $this->db->insert('T_Paymentdetails',$addPaymentDetails);
- $r = $this->db->affected_rows();
- return $r;
- // $this->db->set($addPaymentDetails);
- // $this->db->insert($this->db->dbprefix . 'T_Paymentdetails');
- }
-
-
- function updatepaymentdetails($UpdatePaymentsdetails,$hidekey){
-
- $this->db->where('ID', $hidekey);
- $this->db->update('T_Paymentdetails',$UpdatePaymentsdetails);
- $ar = $this->db->affected_rows();
- return $ar;
-
-
- }
-
-
-
- /**
- * To Delete Payment Lineitem datas
- * string $acc - Payment's accountcode
- * string $id - Payment's id
- * return $ar - It returns how many rows will affetected
- */
- function deletepaymentdetails($id){
- $sql = "DELETE FROM T_Paymentdetails WHERE ID =".$id;
- $query = $this->db->query($sql);
- $ar = $this->db->affected_rows();
- return $ar;
- }
-
- /**
- * To get bank details
- * @return array $result : result of the query (returns bank details)
- **/
- function getBankDetails()
- {
- $this->db->select('*');
- $this->db->from('T_Bank_Details');
- $query = $this->db->get();
- $result = $query->result();
- return $result;
- }
-
- /**
- * To get bank details
- * @return array $result : result of the query (returns bank details)
- **/
- function getbalancedetails()
- {
-
-
- $subquery="SELECT openingbalance,closingbalance FROM T_bankbalance WHERE balance_keyid in (SELECT MAX(balance_keyid) FROM T_bankbalance)";
- $query = $this->db->query($subquery);
- return $query->result();
-
- }
-
- function cleareddebitbalance()
- {
-
- $sql = "SELECT SUM(Balancetocleared) as debit FROM T_bankreport where Clearbalance >'0'";
-
- $query = $this->db->query($sql);
- return $query->result();
-
- }
- function clearedcreditbalance()
- {
-
- $sql = "SELECT SUM(cbalancetocleared) as credit FROM T_bankreport where cclearbalance >'0'";
-
- $query = $this->db->query($sql);
- return $query->result();
-
-
- }
-
- function bankfile($FileDetails)
+ function bankfile($FileDetails)
{
$this->db->insert('T_bankingfile',$FileDetails);
$r = $this->db->affected_rows();
@@ -394,48 +261,137 @@ class cashbook_model extends CI_Model
$this->db->where('Balance',$filedataupload['Balance']);
$query = $this->db->get();
- if ($query->num_rows() > 0)
- {
- return true;
-
- }
- else{
- $this->db->insert('T_bankreport', $filedataupload);
- $r = $this->db->affected_rows();
- // print_r($this->db->insert_id());
- // die();
- return $r;
- }
+ if ($query->num_rows() > 0){
+ return true;
+
}
+ else{
+ $this->db->insert('T_bankreport', $filedataupload);
+ $r = $this->db->affected_rows();
+ //print_r($this->db->last_query());
+ return $r;
+ }
+}
- function balance($balance)
- {
+function balance($balance){
$this ->db->insert('T_bankbalance',$balance);
- }
+}
- function report_finyear()
- {
- $sql="SELECT
- CASE WHEN MONTH(reportdate)>=4 THEN
- concat(YEAR(reportdate), '-',YEAR(reportdate)+1)
- ELSE concat(YEAR(reportdate)-1,'-', YEAR(reportdate)) END AS financial_year
- FROM T_bankreport
- GROUP BY financial_year";
- $query = $this->db->query($sql);
- return $query->result();
- }
-
-function bankstatement($fdate,$tdate,$fa,$aa)
+function getbalancedetails()
{
- $sql="SELECT *,date_format(reportdate,'%d-%m-%Y')as date,tie.total,date_format(valuedate,'%d-%m-%Y')as valuedate from T_bankreport as br left join t_income_expense as tie on tie.bankid=br.ID where br.reportdate !=0 ";
- if ($fa and $aa != '')
- {
+
+$subquery="SELECT openingbalance,closingbalance FROM T_bankbalance WHERE balance_keyid in (SELECT MAX(balance_keyid) FROM T_bankbalance)";
+$query = $this->db->query($subquery);
+return $query->result();
+
+}
+
+
+
+function report_finyear(){
+
+
+ $sql="SELECT
+CASE WHEN MONTH(reportdate)>=4 THEN
+ concat(YEAR(reportdate), '-',YEAR(reportdate)+1)
+ELSE concat(YEAR(reportdate)-1,'-', YEAR(reportdate)) END AS financial_year
+FROM T_bankreport
+GROUP BY financial_year";
+ $query = $this->db->query($sql);
+ return $query->result();
+
+
+
+}
+function report_amountpaid(){
+
+
+ $sql="SELECT
+CASE WHEN MONTH(reportdate)>=4 THEN
+ concat(YEAR(reportdate), '-',YEAR(reportdate)+1)
+ELSE concat(YEAR(reportdate)-1,'-', YEAR(reportdate)) END AS financial_year
+FROM T_bankreport
+GROUP BY financial_year";
+ $query = $this->db->query($sql);
+ return $query->result();
+
+
+
+}
+function report_cashbook(){
+
+
+ $sql="SELECT
+CASE WHEN MONTH(date)>=4 THEN
+ concat(YEAR(date), '-',YEAR(date)+1)
+ELSE concat(YEAR(date)-1,'-', YEAR(date)) END AS financial_year
+FROM t_income_expense
+GROUP BY financial_year";
+ $query = $this->db->query($sql);
+ return $query->result();
+
+
+
+}
+function report_finyearunpaid(){
+
+
+ $sql="SELECT
+CASE WHEN MONTH(MaterialRcvdDate)>=4 THEN
+ concat(YEAR(MaterialRcvdDate), '-',YEAR(MaterialRcvdDate)+1)
+ELSE concat(YEAR(MaterialRcvdDate)-1,'-', YEAR(MaterialRcvdDate)) END AS financial_year
+FROM T_IGR_Master
+GROUP BY financial_year";
+ $query = $this->db->query($sql);
+ return $query->result();
+
+
+
+}
+function report_finyearamountreceived(){
+
+
+ $sql="SELECT
+CASE WHEN MONTH(reportdate)>=4 THEN
+ concat(YEAR(reportdate), '-',YEAR(reportdate)+1)
+ELSE concat(YEAR(reportdate)-1,'-', YEAR(reportdate)) END AS financial_year
+FROM T_bankreport
+GROUP BY financial_year";
+ $query = $this->db->query($sql);
+ return $query->result();
+
+
+
+}
+
+function report_finyearamountunreceived(){
+
+
+ $sql="SELECT
+CASE WHEN MONTH(invoice_date_created)>=4 THEN
+ concat(YEAR(invoice_date_created), '-',YEAR(invoice_date_created)+1)
+ELSE concat(YEAR(invoice_date_created)-1,'-', YEAR(invoice_date_created)) END AS financial_year
+FROM ip_invoices
+GROUP BY financial_year";
+ $query = $this->db->query($sql);
+ return $query->result();
+
+
+
+}
+
+function bankstatement($fdate,$tdate,$fa,$aa){
+
+ $sql="SELECT *,date_format(reportdate,'%d-%m-%Y')as date,tie.total,date_format(valuedate,'%d-%m-%Y')as valuedate from T_bankreport as br left join t_income_expense as tie on tie.bankid=br.ID where br.reportdate !=0 ";
+
+
+ if ($fa and $aa != ''){
$sql.=" and (reportdate >= '".$fa."-04-01' and reportdate<= '".$aa."-03-31')";
- }
+ }
if ($fdate and $tdate != '')
{
@@ -444,10 +400,7 @@ function bankstatement($fdate,$tdate,$fa,$aa)
$sql.= " and date(reportdate) >= '".$fdate."'
and date(reportdate) <= '".$tdate."'";
- }
-
-
-
+ }
$sql.=" group by(br.ID) ";
$sql.=" ORDER BY br.ID+0 DESC ";
@@ -458,48 +411,157 @@ function bankstatement($fdate,$tdate,$fa,$aa)
-}
-function debitbankstatemet($Supplierid,$fdate,$tdate)
-{
- $status='ST057';
-
- $this->db->distinct();
- $this->db->select('igr.PONO,igrli.IGRItemNo,igr.IGRNO,supp.SupplierName,igrli.CreatedDate,BR.Balancetopay,BR.Amountpaid,pom.Status,igrli.QuantityAsPerInvoice ,poli.Rate,(igrli.QuantityAsPerInvoice * poli.Rate) as total');
- $this->db->from ('T_IGR_Details igrli');
- $this->db->join('T_IGR_Master igr','igrli.IGRNO = igr.IGRNO','left');
- $this->db->join('T_PurchaseOrder_LineItem poli','igr.PONO= poli.PONO and igrli.MaterialCode=poli.MaterialCode');
- $this->db->join('T_PurchaseOrder_Master pom','poli.PONO =pom.PONO');
- $this->db->join('T_SupplierDetailsN supp','pom.SupplierID =supp.SupplierID');
- $this->db->join ('T_Bankporeport BR','igrli.IGRItemNo = BR.IGRLineItemNo','left');
- if ($fdate and $tdate != ''){
- $fromdate= date("Y-m-d",strtotime($fdate));
- $todate=date("Y-m-d",strtotime($tdate));
- $date = "date(igr.CreatedDate) >= '".$fromdate."'
- and date(igr.CreatedDate) <= '".$todate."'";
- $this->db->where($date);
- }
- if ($Supplierid != ''){
- $this->db->where('supp.SupplierID',$Supplierid);
- }
- $this->db->where_in('igr.IGRStatus','ST027');
- //$this->db->where_in('pom.Status',[ST044,ST056]);
- $this->db->where('igrli.BankStatus !=','ST070');
- $query = $this->db->get();
- return $query->result();
-
- }
+}
+function cleareddebitbalance(){
+
+ $sql = "SELECT SUM(Balancetocleared) as debit FROM T_bankreport where Clearbalance >'0'";
+
+ $query = $this->db->query($sql);
+ return $query->result();
+
+
+}
+function clearedcreditbalance(){
+
+ $sql = "SELECT SUM(cbalancetocleared) as credit FROM T_bankreport where cclearbalance >'0'";
+
+ $query = $this->db->query($sql);
+ return $query->result();
+
+}
+
+
+
+
+ function suppliertotalfilter($fa,$aa,$m,$fdate,$tdate)
+ {
+
+
+ $sql="select pono,igrn,potype,date_format(created_date,'%d-%m-%Y') as created_date,date_format(materialrcvddate,'%d-%m-%Y') as materialrcvddate,supplier_name,sid,
+ sum(total) as total,file,ifile
+ from igr
+ where status != 'ST030' and PaymentStatus ='ST072'";
+
+
+
+ if ($fa and $aa != ''){
+
+ //$sql.=" and (im.CreatedDate >= '".$fa."-04-01' and im.CreatedDate <= '".$aa."-03-31')";
+ $sql.=" and (MaterialRcvdDate >= '".$fa."-04-01' and MaterialRcvdDate <= '".$aa."-03-31')";
+
+ }
+ if ($m!= ''){
+
+ //$sql.="and monthname(im.CreatedDate) = '".$m."'";
+ $sql.="and monthname(MaterialRcvdDate) = '".$m."'";
+
+ }
+
+
+ if ($fdate and $tdate != ''){
+ $fromd= date("Y-m-d",strtotime($fdate));
+ $tod=date("Y-m-d",strtotime($tdate));
+
+ $sql.="and date(MaterialRcvdDate) >= '".$fromd."'
+ and date(MaterialRcvdDate) <= '".$tod."'";
+
+ }
+
+
+ $sql.="group by sid";
+ $query = $this->db->query($sql);
+ return $query->result();
+
+ }
+
+
+function amountunpaid($supplierid1,$fa,$aa,$m,$fdate,$tdate)
+ {
+
+ $sql="select pono,igrn,potype,date_format(created_date,'%d-%m-%Y') as created_date,date_format(materialrcvddate,'%d-%m-%Y') as materialrcvddate,supplier_name,sid,
+ sum(total) as total,file,ifile
+ from igr
+ where status != 'ST030' and PaymentStatus = 'ST072' and sid='".$supplierid1."'";
+
+
+
+ if ($fa and $aa != ''){
+
+ //$sql.=" and (im.CreatedDate >= '".$fa."-04-01' and im.CreatedDate <= '".$aa."-03-31')";
+ $sql.=" and (MaterialRcvdDate >= '".$fa."-04-01' and MaterialRcvdDate <= '".$aa."-03-31')";
+
+ }
+ if ($m!= ''){
+
+ //$sql.="and monthname(im.CreatedDate) = '".$m."'";
+ $sql.="and monthname(MaterialRcvdDate) = '".$m."'";
+
+ }
+
+
+ if ($fdate and $tdate != ''){
+ $fromd= date("Y-m-d",strtotime($fdate));
+ $tod=date("Y-m-d",strtotime($tdate));
+
+ $sql.="and date(MaterialRcvdDate) >= '".$fromd."'
+ and date(MaterialRcvdDate) <= '".$tod."'";
+
+ }
+
+ $sql.="group by pono,igrn";
+ $query = $this->db->query($sql);
+ return $query->result();
+ }
+ function amountunpaidfilter($sd,$fa,$aa,$m,$fdate,$tdate)
+ {
+
+ $sql="select pono,igrn,potype,date_format(created_date,'%d-%m-%Y') as created_date,date_format(materialrcvddate,'%d-%m-%Y') as materialrcvddate,supplier_name,sid,
+ sum(total) as total,file,ifile
+ from igr
+ where status != 'ST030' and PaymentStatus ='ST072' and sid='".$sd."'";
+
+
+
+ if ($fa and $aa != ''){
+
+ //$sql.=" and (im.CreatedDate >= '".$fa."-04-01' and im.CreatedDate <= '".$aa."-03-31')";
+ $sql.=" and (MaterialRcvdDate >= '".$fa."-04-01' and MaterialRcvdDate <= '".$aa."-03-31')";
+
+ }
+ if ($m!= ''){
+
+ //$sql.="and monthname(im.CreatedDate) = '".$m."'";
+ $sql.="and monthname(MaterialRcvdDate) = '".$m."'";
+
+ }
+
+
+ if ($fdate and $tdate != ''){
+ $fromd= date("Y-m-d",strtotime($fdate));
+ $tod=date("Y-m-d",strtotime($tdate));
+
+ $sql.="and date(MaterialRcvdDate) >= '".$fromd."'
+ and date(MaterialRcvdDate) <= '".$tod."'";
+
+ }
+
+
+ $sql.="group by pono,igrn";
+ $query = $this->db->query($sql);
+ return $query->result();
+ }
+
+
function bankinvoice($Customer,$fdate,$tdate)
{
- // $status='ST065';
- $this->db->distinct();
- $this->db->select('iva.invoice_id,iva.invoice_total,iv.invoice_date_created,iv.invoice_number,iva.invoice_paid,ic.client_name,BI.balancetoreceived,BI.amountreceived');
+ $this->db->select('iva.invoice_id,iva.invoice_total,iv.invoice_date_created,iv.invoice_number,iva.invoice_paid,ic.client_name,ic.client_id,BI.balancetoreceived,BI.amountreceived');
$this->db->from ('ip_invoice_amounts iva');
$this->db->join ('ip_invoices iv','iva.invoice_id = iv.invoice_id');
$this->db->join ('ip_clients ic','iv.client_id = ic.client_id','left');
- $this->db->join ('T_Bankinvoicereport BI',' iv.invoice_number =BI.invoiceno','left');
- //$this->db->where('iva.receivedstatus !=','ST065');
+ $this->db->join ('T_Bankinvoicereport BI','iv.invoice_number = BI.invoiceno and BI.IsActive= 1','left');
$this->db->where('iv.invoice_status_id','2');
$this->db->where('iv.receivedstatus !=','ST065');
+ // $this->db->where('BI.IsActive',1);
if ($fdate and $tdate != ''){
$fromdate= date("Y-m-d",strtotime($fdate));
$todate=date("Y-m-d",strtotime($tdate));
@@ -511,13 +573,255 @@ function debitbankstatemet($Supplierid,$fdate,$tdate)
$this->db->where('ic.client_id',$Customer);
}
$this->db->group_by('iva.invoice_id');
+ $query = $this->db->get();
+
+ return $query->result();
+
+ }
+ function debitbankstatemet($SupplierName,$fdate,$tdate)
+ {
+
+
+ $sql="select pono,igrn,potype,date_format(created_date,'%d-%m-%Y') as created_date,date_format(materialrcvddate,'%d-%m-%Y') as materialrcvddate,supplier_name,sid,Balancetopay,Amountpaid,
+ sum(total) as total,file,ifile
+ from bankdebit
+ where status != 'ST030' and PaymentStatus != 'ST070'";
+
+
+
+ if ($SupplierName!= ''){
+
+ $sql.="and supplier_name = '".$SupplierName."'";
+
+ }
+
+
+ if ($fdate and $tdate != ''){
+ $fromd= date("Y-m-d",strtotime($fdate));
+ $tod=date("Y-m-d",strtotime($tdate));
+
+ $sql.="and date(MaterialRcvdDate) >= '".$fromd."'
+ and date(MaterialRcvdDate) <= '".$tod."'";
+
+ }
+
+ $sql.="group by igrn";
+ $query = $this->db->query($sql);
+ return $query->result();
+
+
+ }
+ function supplierledger($suppliername,$fdate,$tdate,$fa,$aa,$m)
+ {
+
+
+ $sql="select date,igrn,ID,narration,sid,supplier_name,amountpaid,
+ sum(total) as total
+ from ledgersupplier
+ where ID != 'null' and Status != 'ST030'";
+
+
+
+ if ($suppliername!= ''){
+
+ $sql.="and sid = '".$suppliername."'";
+
+ }
+
+
+ if ($fa and $aa != ''){
+
+ //$sql.=" and (im.CreatedDate >= '".$fa."-04-01' and im.CreatedDate <= '".$aa."-03-31')";
+ $sql.=" and (date >= '".$fa."-04-01' and date <= '".$aa."-03-31')";
+
+ }
+ if ($m!= ''){
+
+ //$sql.="and monthname(im.CreatedDate) = '".$m."'";
+ $sql.="and monthname(date) = '".$m."'";
+
+ }
+
+
+ if ($fdate and $tdate != ''){
+ $fromd= date("Y-m-d",strtotime($fdate));
+ $tod=date("Y-m-d",strtotime($tdate));
+
+ $sql.="and date(date) >= '".$fromd."'
+ and date(date) <= '".$tod."'";
+
+
+ }
+
+ $sql.="group by igrn";
+ $query = $this->db->query($sql);
+ return $query->result();
+
+
+ }
+ function customerledger($customer,$fdate,$tdate,$fa,$aa,$m)
+ {
+
+
+ $sql="select date,id,amount,invoice_number,invoice_status_id,customername,customerid,payment,id
+ from ledgercustomer
+ where invoice_number != 'null' ";
+
+
+
+ if ($customer!= ''){
+
+ $sql.="and customerid = '".$customer."'";
+
+ }
+
+ if ($fa and $aa != ''){
+
+ //$sql.=" and (im.CreatedDate >= '".$fa."-04-01' and im.CreatedDate <= '".$aa."-03-31')";
+ $sql.=" and (date >= '".$fa."-04-01' and date <= '".$aa."-03-31')";
+
+ }
+ if ($m!= ''){
+
+ //$sql.="and monthname(im.CreatedDate) = '".$m."'";
+ $sql.="and monthname(date) = '".$m."'";
+
+ }
+
+
+ if ($fdate and $tdate != ''){
+ $fromd= date("Y-m-d",strtotime($fdate));
+ $tod=date("Y-m-d",strtotime($tdate));
+
+ $sql.="and date(date) >= '".$fromd."'
+ and date(date) <= '".$tod."'";
+
+
+ }
+
+
+
+
+
+ $query = $this->db->query($sql);
+ return $query->result();
+
+
+ }
+ function openingbalance($customer,$fdate,$tdate,$fa,$aa,$m)
+ {
+
+ $sql="select date as date,sum(payment) as payment
+ from ledgercustomer
+ where invoice_number != 'null' ";
+
+
+ if ($customer!= ''){
+
+ $sql.="and customerid = '".$customer."'";
+
+ }
+
+ if ($fa and $aa != ''){
+
+ //$sql.=" and (im.CreatedDate >= '".$fa."-04-01' and im.CreatedDate <= '".$aa."-03-31')";
+ $sql.=" and (date >= '".$fa."-04-01' and date <= '".$aa."-03-31')";
+
+ }
+ if ($m!= ''){
+
+ //$sql.="and monthname(im.CreatedDate) = '".$m."'";
+ $sql.="and monthname(date) >= '".$m."'";
+
+ }
+
+ if ($fdate and $tdate != ''){
+ $fromd= date("Y-m-d",strtotime($fdate));
+ $tod=date("Y-m-d",strtotime('01-04-2018'));
+
+ $sql.="and date(date) >= '".$tod."'
+ and date(date) <= '".$fromd."'";
+ //$sql.="and date('2018-04-01') <= '".$fromd."'";
+
+
+ }
+ $query = $this->db->query($sql);
+ // print_r($this->db->last_query());
+ // die();
+
+ return $query->result();
+ }
+ function openingbalancesupplier($customer,$fdate,$tdate,$fa,$aa,$m)
+ {
+
+ $sql="select date as date,sum(amountpaid) as amountpaid
+ from ledgersupplier
+ where ID != 'null' ";
+
+
+ if ($customer!= ''){
+
+ $sql.="and customerid = '".$customer."'";
+
+ }
+
+ if ($fa and $aa != ''){
+
+ //$sql.=" and (im.CreatedDate >= '".$fa."-04-01' and im.CreatedDate <= '".$aa."-03-31')";
+ $sql.=" and (date >= '".$fa."-04-01' and date <= '".$aa."-03-31')";
+
+ }
+ if ($m!= ''){
+
+ //$sql.="and monthname(im.CreatedDate) = '".$m."'";
+ $sql.="and monthname(date) >= '".$m."'";
+
+ }
+
+ if ($fdate and $tdate != ''){
+ $fromd= date("Y-m-d",strtotime($fdate));
+ $tod=date("Y-m-d",strtotime('01-04-2018'));
+
+ $sql.="and date(date) >= '".$tod."'
+ and date(date) <= '".$fromd."'";
+ //$sql.="and date('2018-04-01') <= '".$fromd."'";
+
+
+ }
+ $query = $this->db->query($sql);
+ // print_r($this->db->last_query());
+ // die();
+
+ return $query->result();
+ }
+ function receivedamount($Customer,$fdate,$tdate)
+ {
+ // $status='ST065';
+ // $this->db->distinct();
+ $this->db->select('BI.balancetoreceived,BI.amountreceived');
+ $this->db->from ('T_Bankinvoicereport BI');
+ //$this->db->where('BI.IsActive',1);
+ if ($fdate and $tdate != ''){
+ $fromdate= date("Y-m-d",strtotime($fdate));
+ $todate=date("Y-m-d",strtotime($tdate));
+ $date = "date(BI.BankDate) >= '".$fromdate."'
+ and date(BI.BankDate) <= '".$todate."'";
+ $this->db->where($date);
+ }
+ if ($Customer != ''){
+ $this->db->where('BI.client_id',$Customer);
+ }
+ $this->db->group_by('BI.invoiceno');
//$this->db->where('inc.type','PAYMENT');
+ //print_r($this->db->last_query());
+ //die();
$query = $this->db->get();
+
return $query->result();
}
- function receiptdata()
+function receiptdata()
{
$this->db->distinct();
@@ -528,7 +832,7 @@ function debitbankstatemet($Supplierid,$fdate,$tdate)
return $query->result();
}
- function paymentdata()
+ function paymentdata()
{
$this->db->distinct();
@@ -541,7 +845,6 @@ function debitbankstatemet($Supplierid,$fdate,$tdate)
}
- //function for image
function debitimage($igrno,$pono)
@@ -561,33 +864,48 @@ function debitbankstatemet($Supplierid,$fdate,$tdate)
- function debitpolistfilter($SupplierName,$fdate,$tdate)
+ function debitpolistfilter($supplierID,$fa,$aa,$m,$fdate,$tdate)
{
- $this->db->select('bm.id,bm.mid,igrm.MaterialRcvdDate,bm.PONO,bm.Suppliername,bm.Totalpoamount,
- bm.Balancetopay,bm.Amountpaid,bm.IGRNO,igrm.file,bm.IGRLineItemNo,br.Clearbalance,br.Balancetocleared,bu.FilePath,bu.BillNo,inward.FilePath as Fpath');
+ $this->db->select('bm.id,bm.mid,bm.PONO,bm.Suppliername,bm.Totalpoamount,bm.Podate,bm.BankDate,
+ bm.Balancetopay,bm.Amountpaid,bm.IGRNO,bm.IGRLineItemNo,br.Balancetocleared,br.Clearbalance,
+ inward.FilePath as igrfile,bu.FilePath as pofile');
$this->db->from ('T_Bankmappingpo bm');
- $this->db->join ('T_IGR_Master igrm','igrm.IGRNO = bm.IGRNO');
- //$this->db->join ('T_IGR_Details igrde','igrde.IGRNO=igrm.IGRNO');
- $this->db->join ('T_SupplierDetailsN sd','sd.SupplierName = bm.Suppliername');
- $this->db->join ('T_bankreport br','br.ID=bm.mid');
- $this->db->join('T_Inwardgateregister_fileupload inward','inward.IGRNO =igrm.IGRNO','left');
- $this->db->join ('T_PurchaseOrder_BillUpload bu','bm.PONO=bu.PONO','left');
- if($fdate!='' && $tdate!='')
- {
- $this->db->where('bm.Podate BETWEEN "'. date('Y-m-d', strtotime($fdate)). '" and "'. date('Y-m-d', strtotime($tdate)).'"');
- }
- if($SupplierName!='')
- {
- $this->db->where('sd.SupplierID',$SupplierName);
- }
-
- $this->db->where('bm.IsActive',1);
+ // $this->db->join('T_IGR_Details igr','igr.IGRItemNo=bm.IGRLineItemNo');
+ $this->db->join('T_Inwardgateregister_fileupload inward','inward.IGRNO =bm.IGRNO','left');
+ $this->db->join('T_PurchaseOrder_BillUpload bu','bm.PONO=bu.PONO','left');
+ $this->db->join('T_bankreport br','br.ID=bm.mid','left');
+ $this->db->where('bm.SupplierID',$supplierID);
+ $this->db->where('bm.IsActive',1);
+ // $this->db->where('igr.BankStatus !=',ST072);
+ //$this->db->group_by('bm.mid');
+ if ($fa and $aa != ''){
+
+ //$sql.=" and (im.CreatedDate >= '".$fa."-04-01' and im.CreatedDate <= '".$aa."-03-31')";
+ $year="(bm.BankDate >= '".$fa."-04-01' and bm.BankDate <= '".$aa."-03-31')";
+ $this->db->where($year);
+ }
+ if ($m!= ''){
+ //$this->db->where('MONTH(pel.tgl_pembelian)',$bulan);
+ $month="monthname(bm.BankDate) = '".$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.BankDate) >= '".$fromdate."'
+ and date(bm.BankDate) <= '".$todate."'";
+ $this->db->where($date);
+ }
$this->db->group_by('bm.id');
$query = $this->db->get();
return $query->result();
-
+
}
- function igrmastersingle($igrno,$pono)
+
+
+ function igrmastersingle($igrno,$pono)
{
$this->db->distinct();
$this->db->select('IGRNO,file,PONO as pono');
@@ -623,65 +941,143 @@ function debitbankstatemet($Supplierid,$fdate,$tdate)
return $query->result();
}
- function debitpolist($bankid)
+ function igrmastermultiple1($igrno,$pono)
+ {
+
+
+ $this->db->select('BillNo,IGRNO,FilePath,PONO');
+ $this->db->from('T_Inwardgateregister_fileupload');
+ // if(!empty($igrno) && !empty($pono)){
+ // $this->db->where('PONO',$pono);
+ $this->db->where('IGRNO',$igrno);
+ // }else if(!empty($pono)){
+ // $this->db->where('PONO',$pono);
+ // $this->db->where('IGRNO != ""');
+ // }else{
+ //$this->db->where('IGRNO',$IGRNO);
+ // }
+ $query = $this->db->get();
+ return $query->result();
+
+ }
+ function debitpolist($bankid)
{
- $this->db->select('bp.id,bp.mid,igrm.MaterialRcvdDate,bp.PONO,bp.Suppliername,bp.Totalpoamount,br.Debit,bp.Balancetopay,bp.Amountpaid,bp.IGRNO,bp.IGRLineItemNo,igrm.file,bu.FilePath,inward.FilePath as Fpath');
- $this->db->from ('T_Bankmappingpo bp');
- $this->db->join ('T_IGR_Master igrm','bp.IGRNO = igrm.IGRNO','left');
- $this->db->join ('T_PurchaseOrder_BillUpload bu','bu.PONO = bp.PONO','left');
- $this->db->join('T_Inwardgateregister_fileupload inward','inward.IGRNO =igrm.IGRNO','left');
- $this->db->join ('T_bankreport br','br.ID=bp.mid');
- $this->db->where('bp.IsActive',1);
- $this->db->where('bp.mid',$bankid);
- // $this->db->where('igrde.BankStatus !=','ST072');
- $this->db->group_by('bp.id');
- $query = $this->db->get();
- return $query->result();
-
- }
+ $this->db->select('bp.id,bp.mid,igrm.MaterialRcvdDate,bp.PONO,bp.Suppliername,bp.Totalpoamount,br.Debit,bp.Balancetopay,bp.Amountpaid,bp.IGRNO,bp.IGRLineItemNo,igrm.file,bu.FilePath,inward.FilePath as Fpath');
+ $this->db->from ('T_Bankmappingpo bp');
+ $this->db->join ('T_IGR_Master igrm','bp.IGRNO = igrm.IGRNO','left');
+ $this->db->join ('T_PurchaseOrder_BillUpload bu','bu.PONO = bp.PONO','left');
+ $this->db->join('T_Inwardgateregister_fileupload inward','inward.IGRNO =igrm.IGRNO','left');
+ $this->db->join ('T_bankreport br','br.ID=bp.mid');
+ $this->db->where('bp.IsActive',1);
+ $this->db->where('bp.mid',(int)$bankid);
+ // $this->db->where('igrde.BankStatus !=','ST072');
+ $this->db->group_by('bp.id');
+ $query = $this->db->get();
+
+ return $query->result();
+
+ }
+
+
function creditinvoicelist($bankid)
{
+
$this->db->select('bm.indate,bm.invoiceno,bm.customername,bm.totinvoiceamount,bm.bankid,
- bm.balancetoreceived,bm.amountreceived,bm.ID,br.Credit');
+ bm.balancetoreceived,bm.amountreceived,bm.ID,br.Credit,br.cclearbalance,br.cbalancetocleared');
$this->db->from ('T_Bankmappingiv bm');
$this->db->join('T_bankreport br','br.ID=bm.bankid');
- $this->db->where('bm.bankid',$bankid);
+ $this->db->where('bm.bankid',(int)$bankid);
$this->db->where('bm.IsActive',1);
+ $this->db->group_by('bm.ID');
//$this->db->group_by('invoiceno');
$query = $this->db->get();
+ // $str = $this->db->last_query();
+ // print_r($str);
+
+ //print_r($query);
return $query->result();
}
- function creditinvoicelistfilter($Customer,$fdate,$tdate)
+ function creditinvoicelistfilter($clientid,$fdate,$tdate,$fa,$aa,$m)
+
{
+
$this->db->select('bm.ID,bm.indate,bm.invoiceno,bm.customername,bm.totinvoiceamount,bm.bankid,
- bm.balancetoreceived,bm.amountreceived,br.cclearbalance,br.cbalancetocleared');
+ bm.balancetoreceived,bm.amountreceived,br.cclearbalance,br.cbalancetocleared,bm.BankDate');
$this->db->from ('T_Bankmappingiv bm');
- $this->db->where('bm.IsActive',1);
+ $this->db->join('ip_invoices iv','iv.invoice_number=bm.invoiceno');
$this->db->join ('ip_clients ic','ic.client_name = bm.customername','left');
$this->db->join('T_bankreport br','br.ID = bm.bankid');
+ $this->db->where('bm.IsActive',1);
+ $this->db->where('bm.customerid',$clientid);
+ $this->db->where('iv.receivedstatus !=',ST066);
+ if ($fa and $aa != ''){
+
+ //$sql.=" and (im.CreatedDate >= '".$fa."-04-01' and im.CreatedDate <= '".$aa."-03-31')";
+ $year="(bm.BankDate >= '".$fa."-04-01' and bm.BankDate <= '".$aa."-03-31')";
+ $this->db->where($year);
+ }
+ if ($m!= ''){
+
+ //$sql.="and monthname(im.CreatedDate) = '".$m."'";
+ $month="monthname(bm.BankDate) = '".$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->where('bm.BankDate BETWEEN "'. date('Y-m-d', strtotime($fdate)). '" and "'. date('Y-m-d', strtotime($tdate)).'"');
}
- if($Customer!='')
- {
- $this->db->where('ic.client_id',$Customer);
- }
+
//$this->db->group_by('invoiceno');
$query = $this->db->get();
return $query->result();
+ }
+ function uncreditinvoicelistfilter($client,$fdate,$tdate,$fa,$aa,$m)
+
+ {
+ $this->db->select('iva.invoice_id,iva.invoice_total,iv.invoice_date_created,iv.invoice_number,iva.invoice_paid,ic.client_id,ic.client_name,BI.balancetoreceived,BI.amountreceived');
+ $this->db->from ('ip_invoice_amounts iva');
+ $this->db->join ('ip_invoices iv','iva.invoice_id = iv.invoice_id');
+ $this->db->join ('ip_clients ic','iv.client_id = ic.client_id','left');
+ $this->db->join ('T_Bankinvoicereport BI',' iv.invoice_number =BI.invoiceno','left');
+ $this->db->where('iv.invoice_status_id','2');
+ $this->db->where('iv.receivedstatus',ST066);
+ $this->db->where('ic.client_id',$client);
+ 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->group_by('iva.invoice_id');
+ //$this->db->where('inc.type','PAYMENT');
+ $query = $this->db->get();
+ return $query->result();
+
+
}
//for cashbook edit screen and update bankreport//
function invoiceamonut($bankid)
{
- $this->db->select('sum(amountreceived)as amountreceived');
- $this->db->from ('T_Bankmappingiv');
- $this->db->where('bankid',$bankid);
- $this->db->where('IsActive',1);
- //$this->db->group_by('invoiceno');
+ $this->db->select('sum(bm.amountreceived)as amountreceived');
+ $this->db->from ('T_Bankmappingiv bm');
+ $this->db->where('bm.bankid',(int)$bankid);
+ $this->db->where('bm.IsActive',1);
+ //$this->db->group_by('bm.ID');
$query = $this->db->get();
return $query->result();
@@ -710,18 +1106,167 @@ function debitbankstatemet($Supplierid,$fdate,$tdate)
}
- function mappingcash($SupplierName,$fdate,$tdate,$bankid)
+ function mappingcash($accountcode,$fa,$aa,$m,$fdate,$tdate)
{
- $this->db->select('ie.id,ie.date,ie.bankid,ie.cashtype,ie.amounttype,ie.total,ac.name,totalbankamount,ie.id');
+ $this->db->select('ie.date,ie.bankid,ie.cashtype,ie.amounttype,ie.total,ac.name,totalbankamount,ie.id,sd.SupplierName');
$this->db->from ('t_income_expense as ie');
$this->db->join ('t_accountcode ac ','ac.code = ie.account_code','left');
- $this->db->where('bankid',$bankid);
+ $this->db->join ('T_SupplierDetailsN sd ','sd.SupplierID = ie.Supplier_id','left');
+ $this->db->where('ie.account_code',$accountcode);
+ $this->db->where('ie.amounttype','DEBIT');
+ $this->db->where('ie.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);
+ }
+
+ $query = $this->db->get();
+ return $query->result();
+
+ }
+ function mappingcashbankid($bankid)
+ {
+ $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');
+ $this->db->join ('t_accountcode ac ','ac.code = ie.account_code','left');
+ $this->db->where('ie.bankid',(int)$bankid);
+ $this->db->where('ie.amounttype','DEBIT');
$this->db->where('IsActive',1);
//$this->db->group_by('mid');
$query = $this->db->get();
return $query->result();
}
+ function mappingcashcreditbankid($bankid)
+ {
+ $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');
+ $this->db->join ('t_accountcode ac ','ac.code = ie.account_code','left');
+ $this->db->where('ie.bankid',(int)$bankid);
+ $this->db->where('ie.amounttype','CREDIT');
+ $this->db->where('ie.IsActive',1);
+ //$this->db->group_by('mid');
+ $query = $this->db->get();
+ return $query->result();
+
+ }
+ function mappingcashreceived($accountcode,$fa,$aa,$m,$fdate,$tdate)
+ {
+
+ $this->db->select('ie.date,ie.bankid,ie.cashtype,ie.amounttype,ie.total,ac.name,totalbankamount,ie.id,sd.SupplierName');
+ $this->db->from ('t_income_expense as ie');
+ $this->db->join ('t_accountcode ac ','ac.code = ie.account_code','left');
+ $this->db->join ('T_SupplierDetailsN sd ','sd.SupplierID = ie.Supplier_id','left');
+ $this->db->where('ie.account_code',$accountcode);
+ $this->db->where('ie.amounttype','CREDIT');
+ $this->db->where('ie.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();
+
+ }
+ function mappingcashfilter($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');
+ $this->db->join ('t_accountcode ac ','ac.code = ie.account_code','left');
+ $this->db->where('ie.account_code',$accountcode);
+ $this->db->where('ie.amounttype','DEBIT');
+ $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);
+ }
+
+ $query = $this->db->get();
+ return $query->result();
+
+ }
+ function mappingcashreceivedfilter($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');
+ $this->db->join ('t_accountcode ac ','ac.code = ie.account_code','left');
+ $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);
+ }
+
+ $query = $this->db->get();
+ return $query->result();
+
+ }
function newcashbook()
{
$this->db->select('cdate,mid,btype,amount,boption,mappingamount,totalamount,amounttype,alreadycreditpaid');
@@ -734,19 +1279,16 @@ function debitbankstatemet($Supplierid,$fdate,$tdate)
}
- //function debitlistpo($SupplierName,$fdate,$tdate,$pono)
- function debitlistpo($igrLTno)
- {
+ function debitlistpo($pono)
+ {
$this->db->select('bmp.mid,bmp.PONO,bmp.IGRLineItemNo,bmp.Amountpaid,br.Narration');
$this->db->from ('T_Bankmappingpo as bmp');
$this->db->join('T_bankreport br','br.ID = bmp.mid');
- $this->db->where('IGRLineItemNo',$igrLTno);
- $this->db->where('bmp.IsActive',1);
- //$this->db->group_by('PONO');
+ $this->db->where('bmp.PONO',$pono);
+ $this->db->where('bmp.IsActive',1);
$query = $this->db->get();
return $query->result();
-
- }
+ }
function creditlistinv($invno)
{
@@ -815,17 +1357,23 @@ function debitbankstatemet($Supplierid,$fdate,$tdate)
$r = $this->db->affected_rows();
return $r;
}
- function podata($podata)
+ function bankporeportdata($igrdata)
{
- $this->db->insert('T_Bankporeport',$podata);
+ $this->db->insert('T_Bankporeport',$igrdata);
// $this->db->where('PONO',$pono);
$r = $this->db->affected_rows();
return $r;
}
-
- function mappingpo($podata)
+ // function invicedata($invoicedata)
+ // {
+ // $this->db->insert('T_Bankinvoicereport',$invoicedata);
+ // $r = $this->db->affected_rows();
+ // return $r;
+ // }
+ function mappingpo($igrdata1)
{
- $this->db->insert('T_Bankmappingpo',$podata);
+
+ $this->db->insert('T_Bankmappingpo',$igrdata1);
// $this->db->where('PONO',$pono);
$r = $this->db->affected_rows();
return $r;
@@ -839,11 +1387,11 @@ function debitbankstatemet($Supplierid,$fdate,$tdate)
}
- public function getpono($igrlineitem)
+ public function getigrno($igrno)
{
- $this->db->select('IGRLineItemNo');
+ $this->db->select('igrno');
$this->db->from('T_Bankporeport');
- $this->db->where('IGRLineItemNo ',$igrlineitem);
+ $this->db->where('IGRNO',$igrno);
$query = $this->db->get();
// print_r( $this->db->last_query());
return $query->result();
@@ -886,26 +1434,27 @@ function debitbankstatemet($Supplierid,$fdate,$tdate)
}
public function bankupdate($bankdata,$bankid)
{
- $this->db->where('ID',$bankid);
+ $this->db->where('ID ',$bankid);
$this->db->update('T_bankreport',$bankdata);
return TRUE;
}
public function bankcreditupdate($bankcreditdata,$bankid)
{
-
- $this->db->where('ID',$bankid);
+
+
+ $this->db->where('ID ',$bankid);
$this->db->update('T_bankreport',$bankcreditdata);
- //print_r($this->db->last_query());
+ // print_r( $this->db->last_query());
return TRUE;
}
- public function getearlyamount($igrlineitem)
+ public function getearlyamount($igrno)
{
$this->db->select('Amountpaid');
$this->db->from('T_Bankporeport');
- $this->db->where('IGRLineItemNo ',$igrlineitem);
+ $this->db->where('IGRNO ',$igrno);
$query = $this->db->get();
// print_r( $this->db->last_query());
return $query->result();
@@ -920,6 +1469,17 @@ function debitbankstatemet($Supplierid,$fdate,$tdate)
// print_r( $this->db->last_query());
return $query->result();
+ }
+ public function getearlymappingiv($invid)
+ {
+ $this->db->select('sum(amountreceived) as amountreceived');
+ $this->db->from('T_Bankmappingiv');
+ $this->db->where('invoiceno',$invid);
+ $this->db->where('IsActive',1);
+ $query = $this->db->get();
+ // print_r( $this->db->last_query());
+ return $query->result();
+
}
public function getalreadypaid($bankid)
{
@@ -942,11 +1502,11 @@ function debitbankstatemet($Supplierid,$fdate,$tdate)
}
- public function poupdate($podata,$igrlineitem)
+ public function bankporeportupdate($igrdata,$igrno)
{
- $this->db->where('IGRLineItemNo',$igrlineitem);
- $this->db->update('T_Bankporeport',$podata);
+ $this->db->where('IGRNO',$igrno);
+ $this->db->update('T_Bankporeport',$igrdata);
return TRUE;
}
@@ -959,34 +1519,394 @@ function debitbankstatemet($Supplierid,$fdate,$tdate)
return TRUE;
}
- function paided()
+
+ function paided($supplierid,$fa,$aa,$m,$fdate,$tdate)
{
- $this->db->select('*');
- $this->db->from('T_Bankmappingpo');
- $query = $this->db->get();
- $result = $query->result();
- return $result;
+ $this->db->select('bm.id,bm.mid,bm.PONO,bm.Suppliername,bm.Totalpoamount,bm.Podate,bm.BankDate,
+ bm.Balancetopay,bm.Amountpaid,bm.IGRNO,bm.IGRLineItemNo,br.Balancetocleared,br.Clearbalance,
+ inward.FilePath as igrfile,bu.FilePath pofile');
+ $this->db->from ('T_Bankmappingpo bm');
+ //$this->db->join('T_IGR_Details igr','igr.IGRItemNo=bm.IGRLineItemNo');
+ $this->db->join('T_Inwardgateregister_fileupload inward','inward.IGRNO =bm.IGRNO','left');
+ $this->db->join('T_PurchaseOrder_BillUpload bu','bm.PONO=bu.PONO','left');
+ $this->db->join('T_bankreport br','br.ID=bm.mid','left');
+ $this->db->where('bm.SupplierID',$supplierid);
+ $this->db->where('bm.IsActive',1);
+ // $this->db->where('igr.BankStatus !=',ST072);
+ //$this->db->group_by('bm.mid');
+ if ($fa and $aa != ''){
+
+ //$sql.=" and (im.CreatedDate >= '".$fa."-04-01' and im.CreatedDate <= '".$aa."-03-31')";
+ $year="(bm.BankDate >= '".$fa."-04-01' and bm.BankDate <= '".$aa."-03-31')";
+ $this->db->where($year);
+ }
+ if ($m!= ''){
+ //$this->db->where('MONTH(pel.tgl_pembelian)',$bulan);
+ $month="monthname(bm.BankDate) = '".$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.BankDate) >= '".$fromdate."'
+ and date(bm.BankDate) <= '".$todate."'";
+ $this->db->where($date);
+ }
+ $this->db->group_by('bm.id');
+ $query = $this->db->get();
+ return $query->result();
}
- function received()
+ function amountpaidsupplierwise()
+ {
+ $this->db->select('bm.id,bm.mid,bm.PONO,bm.Suppliername,bm.SupplierID,bm.Totalpoamount,bm.Podate,
+ bm.Balancetopay,sum(bm.Amountpaid) as Amountpaid,bm.IGRNO,bm.IGRLineItemNo');
+ $this->db->from ('T_Bankmappingpo bm');
+ //$this->db->join('T_IGR_Details igr','igr.IGRItemNo=bm.IGRLineItemNo');
+ $this->db->where('bm.IsActive',1);
+ // $this->db->where('igr.BankStatus !=',ST072);
+ $this->db->group_by('bm.SupplierID');
+ $query = $this->db->get();
+ return $query->result();
+
+ }
+ function amountpaidcashbook()
+ {
+ $this->db->select('tac.name,sum(tie.total) as total,tie.account_code');
+ $this->db->from ('t_income_expense tie');
+ $this->db->join('t_accountcode tac','tac.code=tie.account_code');
+ $this->db->where('tie.amounttype','DEBIT');
+ $this->db->where('tie.cashtype','Bank');
+ $this->db->where('tie.IsActive',1);
+ //$this->db->where('t_income_expense.account_code !=','ADV001');
+ $this->db->group_by('tie.account_code');
+ $query = $this->db->get();
+ return $query->result();
+
+ }
+ function amountreceivedcashbook()
+ {
+ $this->db->select('tac.name,sum(tie.total)as total,tie.account_code');
+ $this->db->from ('t_income_expense tie');
+ $this->db->join('t_accountcode tac','tac.code=tie.account_code');
+ $this->db->where('tie.amounttype','CREDIT');
+ $this->db->where('tie.IsActive',1);
+ //$this->db->where('t_income_expense.account_code !=','ADV001');
+ $this->db->group_by('tie.account_code');
+ $query = $this->db->get();
+ return $query->result();
+
+ }
+ function amountpaidcashbookfilter($fa,$aa,$m,$fdate,$tdate)
+ {
+ //echo $m;
+ //die();
+ $this->db->select('tac.name,sum(tie.total)as total,tie.account_code');
+ $this->db->from ('t_income_expense tie');
+ $this->db->join('t_accountcode tac','tac.code=tie.account_code');
+ $this->db->where('tie.amounttype','DEBIT');
+ $this->db->where('tie.cashtype','BANK');
+ $this->db->where('tie.IsActive',1);
+ //$this->db->where('t_income_expense.account_code !=','ADV001');
+ if ($fa and $aa != ''){
+
+ //$sql.=" and (im.CreatedDate >= '".$fa."-04-01' and im.CreatedDate <= '".$aa."-03-31')";
+ $year="(tie.date >= '".$fa."-04-01' and tie.date <= '".$aa."-03-31')";
+ $this->db->where($year);
+ }
+ if ($m!= ''){
+ //$this->db->where('MONTH(pel.tgl_pembelian)',$bulan);
+ $month="monthname(tie.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(tie.date) >= '".$fromdate."'
+ and date(tie.date) <= '".$todate."'";
+ $this->db->where($date);
+ }
+
+ $this->db->group_by('tie.account_code');
+ $query = $this->db->get();
+ return $query->result();
+
+ }
+ function amountreceivedcashbookfilter($fa,$aa,$m,$fdate,$tdate)
+ {
+ $this->db->select('tac.name,sum(tie.total)as total,tie.account_code');
+ $this->db->from ('t_income_expense tie');
+ $this->db->join('t_accountcode tac','tac.code=tie.account_code');
+ $this->db->where('tie.amounttype','CREDIT');
+ $this->db->where('tie.IsActive',1);
+ //$this->db->where('t_income_expense.account_code !=','ADV001');
+ if ($fa and $aa != ''){
+
+ //$sql.=" and (im.CreatedDate >= '".$fa."-04-01' and im.CreatedDate <= '".$aa."-03-31')";
+ $year="(tie.date >= '".$fa."-04-01' and tie.date <= '".$aa."-03-31')";
+ $this->db->where($year);
+ }
+ if ($m!= ''){
+ //$this->db->where('MONTH(pel.tgl_pembelian)',$bulan);
+ $month="monthname(tie.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(tie.date) >= '".$fromdate."'
+ and date(tie.date) <= '".$todate."'";
+ $this->db->where($date);
+ }
+
+ $this->db->group_by('tie.account_code');
+ $query = $this->db->get();
+ return $query->result();
+
+ }
+
+ function amountpaidsupplierwisefilter($fa,$aa,$m,$fdate,$tdate)
+ {
+
+ $this->db->select('bm.id,bm.mid,bm.PONO,bm.Suppliername,bm.SupplierID,sum(bm.Totalpoamount)as Totalpoamount,
+ bm.Balancetopay,sum(bm.Amountpaid) as Amountpaid,bm.Podate,bm.IGRLineItemNo,bm.BankDate');
+ $this->db->from ('T_Bankmappingpo bm');
+ $this->db->where('bm.IsActive',1);
+
+
+ if ($fa and $aa != ''){
+
+ $year="(bm.BankDate >= '".$fa."-04-01' and bm.BankDate <= '".$aa."-03-31')";
+ $this->db->where($year);
+ }
+ if ($m!= ''){
+ //$this->db->where('MONTH(pel.tgl_pembelian)',$bulan);
+ $month="monthname(bm.BankDate) = '".$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.BankDate) >= '".$fromdate."'
+ and date(bm.BankDate) <= '".$todate."'";
+ $this->db->where($date);
+ }
+
+
+ $this->db->group_by('bm.SupplierID');
+ $query = $this->db->get();
+ return $query->result();
+
+ }
+ // function unpaided()
+ // {
+ // // $this->db->select('igd.IGRNO,igd.IGRItemNo,pom.PONO,sm.SupplierName');
+ // // $this->db->from('T_IGR_Details igd');
+ // // $this->db->join('T_IGR_Master igm','igm.IGRNO=igd.IGRNO');
+ // // $this->db->join('T_PurchaseOrder_LineItem poli','igm.PONO= poli.PONO and igd.MaterialCode=poli.MaterialCode');
+ // // $this->db->join('T_PurchaseOrder_Master pom','pom.PONO=poli.PONO');
+ // // $this->db->join('T_SupplierDetailsN sm','sm.SupplierID=pom.SupplierID');
+ // // $this->db->where('igd.BankStatus','ST072');
+ // // $query = $this->db->get();
+ // // $result = $query->result();
+ // // return $result;
+
+ // }
+ function received($clientid,$fdate,$tdate,$fa,$aa,$m)
{
- $this->db->select('*');
- $this->db->from('T_Bankmappingiv');
- $query = $this->db->get();
- $result = $query->result();
- return $result;
+ $this->db->select('bm.indate,bm.BankDate,bm.invoiceno,bm.customername,bm.totinvoiceamount,bm.bankid,bm.customerid,
+ bm.balancetoreceived,bm.amountreceived,bm.ID,br.Credit,br.cclearbalance,br.cbalancetocleared');
+ $this->db->from ('T_Bankmappingiv bm');
+ $this->db->join('ip_invoices iv','iv.invoice_number=bm.invoiceno');
+ $this->db->join('T_bankreport br','br.ID=bm.bankid');
+ $this->db->where('bm.IsActive',1);
+ $this->db->where('bm.customerid',$clientid);
+ $this->db->where('iv.receivedstatus !=',ST066);
+ if ($fa and $aa != ''){
+
+ //$sql.=" and (im.CreatedDate >= '".$fa."-04-01' and im.CreatedDate <= '".$aa."-03-31')";
+ $year="(bm.BankDate >= '".$fa."-04-01' and bm.BankDate <= '".$aa."-03-31')";
+ $this->db->where($year);
+ }
+ if ($m!= ''){
+
+ //$sql.="and monthname(im.CreatedDate) = '".$m."'";
+ $month="monthname(bm.BankDate) = '".$m."'";
+ $this->db->where($month);
+
+ }
+ if($fdate!='' && $tdate!='')
+ {
+ $this->db->where('bm.BankDate 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();
}
-
- function igrdetailstatus($igrdetails,$igrlineitem)
+ function creditinvoicesupplierwise()
{
- $this->db->where('IGRItemNo',$igrlineitem);
- $this->db->update('T_IGR_Details',$igrdetails);
- $r = $this->db->affected_rows();
- return $r;
-
+ $this->db->select('bm.indate,bm.invoiceno,bm.customername,bm.totinvoiceamount,bm.bankid,ic.client_id,bm.customerid as customerid,
+ bm.balancetoreceived,sum(bm.amountreceived)as amountreceived,bm.ID,br.Credit,br.cclearbalance,br.cbalancetocleared');
+ $this->db->from ('T_Bankmappingiv bm');
+ $this->db->join('T_bankreport br','br.ID=bm.bankid');
+ $this->db->join('ip_invoices iv','iv.invoice_number=bm.invoiceno');
+ $this->db->join('ip_clients ic','ic.client_name=bm.customername','left');
+ $this->db->where('bm.IsActive',1);
+ $this->db->group_by('bm.customerid');
+ $this->db->where('iv.receivedstatus !=',ST066);
+ $query = $this->db->get();
+ return $query->result();
}
+ function creditinvoicewisefilter($fdate,$tdate,$fa,$aa,$m)
+ {
+ $this->db->select('bm.indate,bm.BankDate,bm.invoiceno,bm.customername,bm.customerid as customerid,bm.totinvoiceamount,bm.bankid,ic.client_id,
+ bm.balancetoreceived,sum(bm.amountreceived)as amountreceived,bm.ID,br.Credit,br.cclearbalance,br.cbalancetocleared');
+ $this->db->from ('T_Bankmappingiv bm');
+ $this->db->join('ip_invoices iv','iv.invoice_number=bm.invoiceno');
+ $this->db->join('T_bankreport br','br.ID=bm.bankid');
+ $this->db->join('ip_clients ic','ic.client_name=bm.customername','left');
+ $this->db->where('bm.IsActive',1);
+ $this->db->where('iv.receivedstatus !=',ST066);
+
+ // $this->db->where('bm.customername',$Customer);
+ if ($fa and $aa != ''){
+
+ //$sql.=" and (im.CreatedDate >= '".$fa."-04-01' and im.CreatedDate <= '".$aa."-03-31')";
+ $year="(bm.BankDate >= '".$fa."-04-01' and bm.BankDate <= '".$aa."-03-31')";
+ $this->db->where($year);
+
+ }
+ if ($m!= ''){
+ //$this->db->where('MONTH(pel.tgl_pembelian)',$bulan);
+ $month="monthname(bm.BankDate) = '".$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.BankDate) >= '".$fromdate."'
+ and date(bm.BankDate) <= '".$todate."'";
+ $this->db->where($date);
+ }
+
+ $this->db->group_by('bm.customerid');
+ $query = $this->db->get();
+ return $query->result();
+ }
+ 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');
+ $this->db->from ('ip_invoice_amounts iva');
+ $this->db->join ('ip_invoices iv','iva.invoice_id = iv.invoice_id','left');
+ $this->db->join ('ip_clients ic','iv.client_id = ic.client_id','left');
+ $this->db->join ('T_Bankinvoicereport BI',' iv.invoice_number =BI.invoiceno','left');
+ $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');
+ //$this->db->where('inc.type','PAYMENT');
+ $query = $this->db->get();
+ return $query->result();
+ }
+ function unreceivedsupplier()
+ {
+
+ $this->db->select('iva.invoice_id,sum(iva.invoice_total)as invoice_total,iv.invoice_date_created,iv.invoice_number,iva.invoice_paid,ic.client_id,ic.client_name,BI.balancetoreceived,sum(BI.amountreceived)as amountreceived');
+ $this->db->from ('ip_invoice_amounts iva');
+ $this->db->join ('ip_invoices iv','iva.invoice_id = iv.invoice_id','left');
+ $this->db->join ('ip_clients ic','iv.client_id = ic.client_id','left');
+ $this->db->join ('T_Bankinvoicereport BI',' iv.invoice_number =BI.invoiceno','left');
+ $this->db->where('iv.receivedstatus',ST066);
+ $this->db->where('iv.invoice_status_id','2');
+
+
+ $this->db->group_by('ic.client_name');
+ //$this->db->where('inc.type','PAYMENT');
+ $query = $this->db->get();
+ return $query->result();
+ }
+ function uncreditinvoicewisefilter($fdate,$tdate,$fa,$aa,$m)
+ {
+
+ $this->db->select('iva.invoice_id,sum(iva.invoice_total)as invoice_total,iv.invoice_date_created,iv.invoice_number,iva.invoice_paid,ic.client_id,ic.client_name,BI.balancetoreceived,sum(BI.amountreceived)as amountreceived');
+ $this->db->from ('ip_invoice_amounts iva');
+ $this->db->join ('ip_invoices iv','iva.invoice_id = iv.invoice_id','left');
+ $this->db->join ('ip_clients ic','iv.client_id = ic.client_id','left');
+ $this->db->join ('T_Bankinvoicereport BI',' iv.invoice_number =BI.invoiceno','left');
+ $this->db->where('iv.receivedstatus',ST066);
+ $this->db->where('iv.invoice_status_id','2');
+
+ // $this->db->where('bm.customername',$Customer);
+ 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!= ''){
+ //$this->db->where('MONTH(pel.tgl_pembelian)',$bulan);
+ $month="monthname(iv.invoice_date_created) = '".$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(iv.invoice_date_created) >= '".$fromdate."'
+ and date(iv.invoice_date_created) <= '".$todate."'";
+ $this->db->where($date);
+ }
+
+
+ $this->db->group_by('ic.client_name');
+ //$this->db->where('inc.type','PAYMENT');
+ $query = $this->db->get();
+ return $query->result();
+ }
+
+ // function podetailstatus($podetails,$pono)
+ // {
+ // echo $igrdetails;
+ // $this->db->where('PONO',$pono);
+ // $this->db->update('T_PurchaseOrder_Master',$podetails);
+ // $r = $this->db->affected_rows();
+ // return $r;
+
+ // }
function invoiceamountstatus($invoicemaster,$invid)
{
@@ -996,6 +1916,15 @@ function debitbankstatemet($Supplierid,$fdate,$tdate)
return $r;
}
+ function igrstatus($igrmaster,$igrno)
+ {
+ $this->db->where('IGRNO',$igrno);
+ $this->db->update('T_IGR_Master',$igrmaster);
+ $r = $this->db->affected_rows();
+ return $r;
+
+ }
+
function Cashbook($cashbookdatas)
{
$code=$cashbookdatas['code'];
@@ -1031,24 +1960,11 @@ function debitbankstatemet($Supplierid,$fdate,$tdate)
}
}
- function getAccountpay()
- {
- $this->db->where('type',PAYMENT);
- $r = $this->db->get('t_accountcode');
- return $r->result();
-
- }
- function getAccounTypes1()
- {
- $this->db->select('name,type');
- $r = $this->db->get('t_accountcode');
- return $r->result();
-
- }
- function deletemapping($Bankid,$updateamount,$updatebalancetoclear)
+ function deletemapping($Bankid,$updateamount,$updatebalancetoclear,$Status)
{
$this->db->set('Clearbalance',$updateamount);
$this->db->set('Balancetocleared',$updatebalancetoclear);
+ $this->db->set('Status',$Status);
$this->db->where('ID',$Bankid);
$this->db->update('T_bankreport');
$r = $this->db->affected_rows();
@@ -1062,12 +1978,12 @@ function debitbankstatemet($Supplierid,$fdate,$tdate)
return $r;
}
- function IgrDetailsStatusUpdate($igrno,$BankStatus)
+ function IGRStatusUpdate($igrno,$PaymentStatus)
{
- $this->db->set('BankStatus',$BankStatus);
- $this->db->where('IGRItemNo',$igrno);
- $this->db->update('T_IGR_Details');
+ $this->db->set('Paymentstatus',$PaymentStatus);
+ $this->db->where('IGRNO',$igrno);
+ $this->db->update('T_IGR_Master');
$r = $this->db->affected_rows();
return $r;
}
@@ -1079,6 +1995,22 @@ function debitbankstatemet($Supplierid,$fdate,$tdate)
$r = $this->db->affected_rows();
return $r;
}
+ // function updatemappingamount($igrno,$amountpaid)
+ // {
+
+ // $sql="update T_Bankmappingpo set Balancetopay=$amountpaid+Balancetopay where IGRLineItemNo='$igrno' and
+ // IsActive='1'";
+ // $query = $this->db->query($sql);
+ // return $query->result();
+
+ // // $this->db->set('Balancetopay',$amountpaid+'Balancetopay');
+ // // //$this->db->set('Balancetopay',$amountpaid);
+ // // $this->db->where('IGRLineItemNo',$igrno);
+ // // $this->db->where('IsActive',1);
+ // // $this->db->update('T_Bankmappingpo');
+ // // $r = $this->db->affected_rows();
+ // // return $r;
+ // }
function UpdateIpinvoiceStatus($invoiceno,$receivedstatus)
{
$this->db->set('receivedstatus',$receivedstatus);
@@ -1096,34 +2028,99 @@ function debitbankstatemet($Supplierid,$fdate,$tdate)
$r = $this->db->affected_rows();
return $r;
}
- function updateBankporeportpo($igrno,$totalbalancetopay,$updatebankpoamount,$Bankid)
+ // function updatemappinginvoice($invoiceno,$amountreceived)
+ // {
+ // $this->db->set('balancetoreceived',$amountreceived+'balancetoreceived');
+ // $this->db->where('invoiceno',$invoiceno);
+ // $this->db->where('IsActive',1);
+ // $this->db->update('T_Bankmappingiv');
+ // $query = $this->db->get();
+ // print_r(this->db->last_query());
+ // $r = $this->db->affected_rows();
+ // return $r;
+ // }
+
+ function updateBankporeport($igrno,$balancetopayupdate,$amountpaidupdate,$IsAct)
{
- $this->db->set('Balancetopay',$totalbalancetopay);
- $this->db->set('Amountpaid',$updatebankpoamount);
- $this->db->where('IGRLineItemNo',$igrno);
- $this->db->where('mid',$Bankid);
+ $this->db->set('Balancetopay',$balancetopayupdate);
+ $this->db->set('Amountpaid',$amountpaidupdate);
+ $this->db->set('IsActive',$IsAct);
+ $this->db->where('IGRNO',$igrno);
+ //$this->db->where('mid',$Bankid);
$this->db->update('T_Bankporeport');
$r = $this->db->affected_rows();
return $r;
}
- function updatebankinvoicereport($invoiceno,$bankid,$updatebalancetoreceived,$updateamountreceived)
+
+ function updatebankinvoicereport($invoiceno,$balancetoreceivedupdate,$amountreceivedupdate,$IsAct)
{
- $this->db->set('balancetoreceived',$updatebalancetoreceived);
- $this->db->set('amountreceived',$updateamountreceived);
+ $this->db->set('balancetoreceived',$balancetoreceivedupdate);
+ $this->db->set('amountreceived',$amountreceivedupdate);
+ $this->db->set('IsActive',$IsAct);
$this->db->where('invoiceno',$invoiceno);
- $this->db->where('bankid',$bankid);
+ //$this->db->where('bankid',$bankid);
$this->db->update('T_Bankinvoicereport');
$r = $this->db->affected_rows();
return $r;
}
- function gettotalbankmappingpo($igrno)
+ function gettotalbankmappingpo($id)
{
$this->db->select('sum(Amountpaid)as Amountpaid');
$this->db->from ('T_Bankmappingpo');
+ $this->db->where('id',$id);
+ $this->db->where('IsActive',1);
+ //$this->db->group_by('T_Bankmappingpo.IGRLineItemNo');
+ $query = $this->db->get();
+ return $query->result();
+ }
+ function gettotalbankmappingpocount($igrno)
+ {
+ $this->db->select('count(Amountpaid)as countAmountpaid');
+ $this->db->from ('T_Bankmappingpo');
+ $this->db->where('IGRNO',$igrno);
+ $this->db->where('IsActive',1);
+ //$this->db->group_by('T_Bankmappingpo.IGRLineItemNo');
+ $query = $this->db->get();
+ return $query->result();
+ }
+ function gettotalbankmappinginvoicecount($invoiceno)
+ {
+ $this->db->select('count(amountreceived)as countamountreceived');
+ $this->db->from ('T_Bankmappingiv');
+ $this->db->where('invoiceno',$invoiceno);
+ $this->db->where('IsActive',1);
+ //$this->db->group_by('T_Bankmappingpo.IGRLineItemNo');
+ $query = $this->db->get();
+ return $query->result();
+ }
+ function gettotalbankpoamount($igrno)
+ {
+ $this->db->select('Amountpaid,Balancetopay');
+ $this->db->from ('T_Bankporeport');
+ $this->db->where('IGRNO',$igrno);
+ $this->db->where('IsActive',1);
+ //$this->db->group_by('T_Bankmappingpo.IGRLineItemNo');
+ $query = $this->db->get();
+ return $query->result();
+ }
+ function gettotalbankreceivedamount($invoiceno)
+ {
+ $this->db->select('amountreceived,balancetoreceived');
+ $this->db->from ('T_Bankinvoicereport');
+ $this->db->where('invoiceno',$invoiceno);
+ $this->db->where('IsActive',1);
+ //$this->db->group_by('T_Bankmappingpo.IGRLineItemNo');
+ $query = $this->db->get();
+ return $query->result();
+ }
+ function gettotalbankporeport($igrno)
+ {
+ $this->db->select('Amountpaid');
+ $this->db->from ('T_Bankporeport');
$this->db->where('IGRLineItemNo',$igrno);
$this->db->where('IsActive',1);
- $this->db->group_by('T_Bankmappingpo.IGRLineItemNo');
+ //$this->db->group_by('T_Bankmappingpo.IGRLineItemNo');
$query = $this->db->get();
return $query->result();
}
@@ -1179,6 +2176,7 @@ function debitbankstatemet($Supplierid,$fdate,$tdate)
$r = $this->db->affected_rows();
return $r;
}
+
}
?>
\ No newline at end of file
diff --git a/application/views/bankamountpaid.php b/application/views/bankamountpaid.php
index 902310b4..f35b083a 100644
--- a/application/views/bankamountpaid.php
+++ b/application/views/bankamountpaid.php
@@ -2,7 +2,7 @@
-->
-
-
+
+
-
+
+
+
+
diff --git a/application/views/bankcashreceipt.php b/application/views/bankcashreceipt.php
index a72cd61c..ed2607a2 100644
--- a/application/views/bankcashreceipt.php
+++ b/application/views/bankcashreceipt.php
@@ -24,7 +24,7 @@
} ?>
-
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/application/views/bankdebit.php b/application/views/bankdebit.php
index 0470cd0c..e540b6d5 100644
--- a/application/views/bankdebit.php
+++ b/application/views/bankdebit.php
@@ -24,8 +24,6 @@ foreach($financialyear as $item)
float: right;
}
- .btn-success {
- border: 2px solid #5d0411 !important;}
@@ -35,24 +33,24 @@ foreach($financialyear as $item)
-
+